diff -Nru libreoffice-5.3.3~rc1/configure.ac libreoffice-5.3.3~rc2/configure.ac --- libreoffice-5.3.3~rc1/configure.ac 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/configure.ac 2017-05-03 16:46:29.000000000 +0000 @@ -9,7 +9,7 @@ # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[5.3.3.1],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[5.3.3.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) diff -Nru libreoffice-5.3.3~rc1/debian/changelog libreoffice-5.3.3~rc2/debian/changelog --- libreoffice-5.3.3~rc1/debian/changelog 2017-04-20 06:03:59.000000000 +0000 +++ libreoffice-5.3.3~rc2/debian/changelog 2017-05-03 17:40:08.000000000 +0000 @@ -1,4 +1,4 @@ -libreoffice (1:5.3.3~rc1-0ubuntu1~trusty0) trusty; urgency=medium +libreoffice (1:5.3.3~rc2-0ubuntu0.14.04.1~lo0) trusty; urgency=medium * Backport from zesty - Keep libreoffice-gtk/gtk2 as default @@ -7,7 +7,13 @@ - Revert move from glew to epoxy - Revert to unversioned Provides for lang/help packages - -- Rico Tzschichholz Thu, 20 Apr 2017 08:03:59 +0200 + -- Rico Tzschichholz Wed, 03 May 2017 19:40:08 +0200 + +libreoffice (1:5.3.3~rc2-0ubuntu0.17.10.1~lo0) artful; urgency=medium + + * new upstream rc + + -- Rico Tzschichholz Wed, 03 May 2017 19:40:08 +0200 libreoffice (1:5.3.3~rc1-0ubuntu1~zesty0) zesty; urgency=medium diff -Nru libreoffice-5.3.3~rc1/debian/rules libreoffice-5.3.3~rc2/debian/rules --- libreoffice-5.3.3~rc1/debian/rules 2017-04-20 06:03:59.000000000 +0000 +++ libreoffice-5.3.3~rc2/debian/rules 2017-05-03 17:40:08.000000000 +0000 @@ -70,7 +70,7 @@ GIT_BASEURL:=git://anongit.freedesktop.org/libreoffice # bootstraping this from the source tree is breaking get-orig-source #lo_sources_ver=$(shell grep AC_INIT $(SOURCE_TREE)/configure.ac | grep documentfoundation | cut -d, -f2 | sed -e 's,\[,,' -e 's,\],,') -lo_sources_ver=5.3.3.1 +lo_sources_ver=5.3.3.2 # NOT in proper libreoffice-3-6 branch # use ./g checkout -b tag-libreoffice-3.6.2.1 libreoffice-3.6.2.1 GIT_TAG=libreoffice-$(lo_sources_ver) diff -Nru libreoffice-5.3.3~rc1/download.lst libreoffice-5.3.3~rc2/download.lst --- libreoffice-5.3.3~rc1/download.lst 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/download.lst 2017-05-03 16:46:29.000000000 +0000 @@ -111,7 +111,8 @@ export MYSQLCPPCONN_TARBALL := 7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz export NEON_TARBALL := 231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz -export NSS_TARBALL := 0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz +export NSS_MD5SUM := e55ee06b22687df68fafc6a30c0554b2 +export NSS_TARBALL := nss-3.29.5-with-nspr-4.13.1.tar.gz export ODFGEN_MD5SUM := 32572ea48d9021bbd6fa317ddb697abc export ODFGEN_VERSION_MICRO := 6 export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.bz2 diff -Nru libreoffice-5.3.3~rc1/external/icu/icu4c-changeset-39671.patch.1 libreoffice-5.3.3~rc2/external/icu/icu4c-changeset-39671.patch.1 --- libreoffice-5.3.3~rc1/external/icu/icu4c-changeset-39671.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/icu/icu4c-changeset-39671.patch.1 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,189 @@ +diff -ur icu.org/source/common/utext.cpp icu/source/common/utext.cpp +--- icu.org/source/common/utext.cpp 2016-06-15 20:58:17.000000000 +0200 ++++ icu/source/common/utext.cpp 2017-04-21 16:38:15.993398034 +0200 +@@ -847,9 +847,15 @@ + //------------------------------------------------------------------------------ + + // Chunk size. +-// Must be less than 85, because of byte mapping from UChar indexes to native indexes. +-// Worst case is three native bytes to one UChar. (Supplemenaries are 4 native bytes +-// to two UChars.) ++// Must be less than 42 (256/6), because of byte mapping from UChar indexes to native indexes. ++// Worst case there are six UTF-8 bytes per UChar. ++// obsolete 6 byte form fd + 5 trails maps to fffd ++// obsolete 5 byte form fc + 4 trails maps to fffd ++// non-shortest 4 byte forms maps to fffd ++// normal supplementaries map to a pair of utf-16, two utf8 bytes per utf-16 unit ++// mapToUChars array size must allow for the worst case, 6. ++// This could be brought down to 4, by treating fd and fc as pure illegal, ++// rather than obsolete lead bytes. But that is not compatible with the utf-8 access macros. + // + enum { UTF8_TEXT_CHUNK_SIZE=32 }; + +@@ -867,6 +873,15 @@ + // pair. Doing this is simpler than checking for the edge case. + // + ++// erAck: older MSVC used on libreoffice-5-3 and 5-2 bails out with ++// error C2070: 'unknown': illegal sizeof operand ++// for sizeof(UTF8Buf::mapToUChars) ++// so have an ugly workaround: ++// First define a macro of the original size expression, so a follow-up patch ++// on the original code would fail.. ++#define UGLY_MAPTOUCHARS_SIZE (UTF8_TEXT_CHUNK_SIZE*6+6) ++#define UGLY_SIZEOF_MAPTOUCHARS (sizeof(uint8_t)*(UGLY_MAPTOUCHARS_SIZE)) ++ + struct UTF8Buf { + int32_t bufNativeStart; // Native index of first char in UChar buf + int32_t bufNativeLimit; // Native index following last char in buf. +@@ -889,7 +904,7 @@ + // Requires two extra slots, + // one for a supplementary starting in the last normal position, + // and one for an entry for the buffer limit position. +- uint8_t mapToUChars[UTF8_TEXT_CHUNK_SIZE*3+6]; // Map native offset from bufNativeStart to ++ uint8_t mapToUChars[UGLY_MAPTOUCHARS_SIZE]; // Map native offset from bufNativeStart to + // correspoding offset in filled part of buf. + int32_t align; + }; +@@ -1032,6 +1047,7 @@ + // Requested index is in this buffer. + u8b = (UTF8Buf *)ut->p; // the current buffer + mapIndex = ix - u8b->toUCharsMapStart; ++ U_ASSERT(mapIndex < (int32_t)UGLY_SIZEOF_MAPTOUCHARS); + ut->chunkOffset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; + return TRUE; + +@@ -1298,6 +1314,10 @@ + // Can only do this if the incoming index is somewhere in the interior of the string. + // If index is at the end, there is no character there to look at. + if (ix != ut->b) { ++ // Note: this function will only move the index back if it is on a trail byte ++ // and there is a preceding lead byte and the sequence from the lead ++ // through this trail could be part of a valid UTF-8 sequence ++ // Otherwise the index remains unchanged. + U8_SET_CP_START(s8, 0, ix); + } + +@@ -1311,7 +1331,10 @@ + UChar *buf = u8b->buf; + uint8_t *mapToNative = u8b->mapToNative; + uint8_t *mapToUChars = u8b->mapToUChars; +- int32_t toUCharsMapStart = ix - (UTF8_TEXT_CHUNK_SIZE*3 + 1); ++ int32_t toUCharsMapStart = ix - UGLY_SIZEOF_MAPTOUCHARS + 1; ++ // Note that toUCharsMapStart can be negative. Happens when the remaining ++ // text from current position to the beginning is less than the buffer size. ++ // + 1 because mapToUChars must have a slot at the end for the bufNativeLimit entry. + int32_t destIx = UTF8_TEXT_CHUNK_SIZE+2; // Start in the overflow region + // at end of buffer to leave room + // for a surrogate pair at the +@@ -1338,6 +1361,7 @@ + if (c<0x80) { + // Special case ASCII range for speed. + buf[destIx] = (UChar)c; ++ U_ASSERT(toUCharsMapStart <= srcIx); + mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx; + mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); + } else { +@@ -1367,6 +1391,7 @@ + do { + mapToUChars[sIx-- - toUCharsMapStart] = (uint8_t)destIx; + } while (sIx >= srcIx); ++ U_ASSERT(toUCharsMapStart <= (srcIx+1)); + + // Set native indexing limit to be the current position. + // We are processing a non-ascii, non-native-indexing char now; +@@ -1541,6 +1566,7 @@ + U_ASSERT(index>=ut->chunkNativeStart+ut->nativeIndexingLimit); + U_ASSERT(index<=ut->chunkNativeLimit); + int32_t mapIndex = index - u8b->toUCharsMapStart; ++ U_ASSERT(mapIndex < (int32_t)UGLY_SIZEOF_MAPTOUCHARS); + int32_t offset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; + U_ASSERT(offset>=0 && offset<=ut->chunkLength); + return offset; +diff -ur icu.org/source/test/intltest/utxttest.cpp icu/source/test/intltest/utxttest.cpp +--- icu.org/source/test/intltest/utxttest.cpp 2016-06-15 20:58:17.000000000 +0200 ++++ icu/source/test/intltest/utxttest.cpp 2017-04-21 16:14:57.383814739 +0200 +@@ -67,6 +67,8 @@ + if (exec) Ticket10983(); break; + case 7: name = "Ticket12130"; + if (exec) Ticket12130(); break; ++ case 8: name = "Ticket12888"; ++ if (exec) Ticket12888(); break; + default: name = ""; break; + } + } +@@ -1583,3 +1585,63 @@ + } + utext_close(&ut); + } ++ ++// Ticket 12888: bad handling of illegal utf-8 containing many instances of the archaic, now illegal, ++// six byte utf-8 forms. Original implementation had an assumption that ++// there would be at most three utf-8 bytes per UTF-16 code unit. ++// The five and six byte sequences map to a single replacement character. ++ ++void UTextTest::Ticket12888() { ++ const char *badString = ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80" ++ "\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80\xfd\x80\x80\x80\x80\x80"; ++ ++ UErrorCode status = U_ZERO_ERROR; ++ LocalUTextPointer ut(utext_openUTF8(NULL, badString, -1, &status)); ++ TEST_SUCCESS(status); ++ for (;;) { ++ UChar32 c = utext_next32(ut.getAlias()); ++ if (c == U_SENTINEL) { ++ break; ++ } ++ } ++ int32_t endIdx = utext_getNativeIndex(ut.getAlias()); ++ if (endIdx != (int32_t)strlen(badString)) { ++ errln("%s:%d expected=%d, actual=%d", __FILE__, __LINE__, strlen(badString), endIdx); ++ return; ++ } ++ ++ for (int32_t prevIndex = endIdx; prevIndex>0;) { ++ UChar32 c = utext_previous32(ut.getAlias()); ++ int32_t currentIndex = utext_getNativeIndex(ut.getAlias()); ++ if (c != 0xfffd) { ++ errln("%s:%d (expected, actual, index) = (%d, %d, %d)\n", ++ __FILE__, __LINE__, 0xfffd, c, currentIndex); ++ break; ++ } ++ if (currentIndex != prevIndex - 6) { ++ errln("%s:%d: wrong index. Expected, actual = %d, %d", ++ __FILE__, __LINE__, prevIndex - 6, currentIndex); ++ break; ++ } ++ prevIndex = currentIndex; ++ } ++} +diff -ur icu.org/source/test/intltest/utxttest.h icu/source/test/intltest/utxttest.h +--- icu.org/source/test/intltest/utxttest.h 2016-06-15 20:58:17.000000000 +0200 ++++ icu/source/test/intltest/utxttest.h 2017-04-21 16:14:57.383814739 +0200 +@@ -38,6 +38,7 @@ + void Ticket10562(); + void Ticket10983(); + void Ticket12130(); ++ void Ticket12888(); + + private: + struct m { // Map between native indices & code points. diff -Nru libreoffice-5.3.3~rc1/external/icu/UnpackedTarball_icu.mk libreoffice-5.3.3~rc2/external/icu/UnpackedTarball_icu.mk --- libreoffice-5.3.3~rc1/external/icu/UnpackedTarball_icu.mk 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/icu/UnpackedTarball_icu.mk 2017-05-03 16:46:29.000000000 +0000 @@ -27,6 +27,7 @@ $(if $(filter-out ANDROID,$(OS)),external/icu/icu4c-icudata-stdlibs.diff) \ $(if $(filter EMSCRIPTEN,$(OS)),external/icu/icu4c-emscripten.patch.1) \ external/icu/khmerbreakengine.patch \ + external/icu/icu4c-changeset-39671.patch.1 \ )) $(eval $(call gb_UnpackedTarball_add_file,icu,source/data/brkitr/khmerdict.dict,external/icu/khmerdict.dict)) diff -Nru libreoffice-5.3.3~rc1/external/nss/ExternalProject_nss.mk libreoffice-5.3.3~rc2/external/nss/ExternalProject_nss.mk --- libreoffice-5.3.3~rc1/external/nss/ExternalProject_nss.mk 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/ExternalProject_nss.mk 2017-05-03 16:46:29.000000000 +0000 @@ -77,6 +77,7 @@ $(MAKE) -j1 AR="$(AR)" \ RANLIB="$(RANLIB)" \ NMEDIT="$(NM)edit" \ + CCC="$(CXX)" \ $(if $(CROSS_COMPILING),NSPR_CONFIGURE_OPTS="--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)") \ nss_build_all \ && rm -f $(call gb_UnpackedTarball_get_dir,nss)/dist/out/lib/*.a \ diff -Nru libreoffice-5.3.3~rc1/external/nss/nss-ios.patch libreoffice-5.3.3~rc2/external/nss/nss-ios.patch --- libreoffice-5.3.3~rc1/external/nss/nss-ios.patch 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/nss-ios.patch 2017-05-03 16:46:29.000000000 +0000 @@ -52,8 +52,8 @@ --- a/a/nss/coreconf/Darwin.mk +++ a/a/nss/coreconf/Darwin.mk @@ -124,7 +124,7 @@ - # May override this with -bundle to create a loadable module. - DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @__________________________________________________OOO/$(notdir $@) -headerpad_max_install_names + DSO_LDOPTS += --coverage + endif -MKSHLIB = $(CC) $(DSO_LDOPTS) $(DARWIN_SDK_SHLIBFLAGS) +MKSHLIB = touch $@; echo diff -Nru libreoffice-5.3.3~rc1/external/nss/nss_macosx.patch libreoffice-5.3.3~rc2/external/nss/nss_macosx.patch --- libreoffice-5.3.3~rc1/external/nss/nss_macosx.patch 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/nss_macosx.patch 2017-05-03 16:46:29.000000000 +0000 @@ -13,21 +13,6 @@ diff -ru a/nss/coreconf/Darwin.mk b/nss/coreconf/Darwin.mk --- a/a/nss/coreconf/Darwin.mk 2014-09-29 16:50:22.992304799 +0100 +++ b/b/nss/coreconf/Darwin.mk 2014-09-29 16:51:59.214931953 +0100 -@@ -8,8 +8,12 @@ - - DEFAULT_COMPILER = gcc - --CC = gcc --CCC = g++ -+# CC is taken from environment automatically. -+#CC = cc -+# Use CCC from environment. -+#CCC = c++ -+CCC = $(CXX) -+ - RANLIB = ranlib - - ifndef CPU_ARCH @@ -20,13 +24,17 @@ ifeq (,$(filter-out i%86,$(CPU_ARCH))) @@ -71,8 +56,8 @@ -DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @executable_path/$(notdir $@) -headerpad_max_install_names +DSO_LDOPTS = -dynamiclib $(DARWIN_DYLIB_VERSIONS) -install_name @__________________________________________________OOO/$(notdir $@) -headerpad_max_install_names - MKSHLIB = $(CC) $(DSO_LDOPTS) $(DARWIN_SDK_SHLIBFLAGS) - DLL_SUFFIX = dylib + ifdef USE_GCOV + OS_CFLAGS += --coverage diff -ru a/nss/Makefile b/nss/Makefile --- a/a/nss/Makefile 2014-09-29 16:50:22.990304789 +0100 +++ b/b/nss/Makefile 2014-09-29 16:51:59.207931908 +0100 diff -Nru libreoffice-5.3.3~rc1/external/nss/nss-more-static.patch libreoffice-5.3.3~rc2/external/nss/nss-more-static.patch --- libreoffice-5.3.3~rc1/external/nss/nss-more-static.patch 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/nss-more-static.patch 2017-05-03 16:46:29.000000000 +0000 @@ -9,30 +9,30 @@ /* determine if hybrid platform, then actually load the DSO. */ static PRStatus @@ -136,9 +136,9 @@ - return PR_FAILURE; - } + return PR_FAILURE; + } -- handle = loader_LoadLibrary(name); -- if (handle) { -- PRFuncPtr address = PR_FindFunctionSymbol(handle, "FREEBL_GetVector"); -+ handle = 0; -+ { -+ PRFuncPtr address = FREEBL_GetVector; - PRStatus status; - if (address) { - FREEBLGetVectorFn * getVector = (FREEBLGetVectorFn *)address; +- handle = loader_LoadLibrary(name); +- if (handle) { +- PRFuncPtr address = PR_FindFunctionSymbol(handle, "FREEBL_GetVector"); ++ handle = 0; ++ { ++ PRFuncPtr address = FREEBL_GetVector; + if (address) { + FREEBLGetVectorFn *getVector = (FREEBLGetVectorFn *)address; + const FREEBLVector *dsoVector = getVector(); @@ -887,6 +887,7 @@ void BL_Unload(void) { +#if 0 - /* This function is not thread-safe, but doesn't need to be, because it is - * only called from functions that are also defined as not thread-safe, - * namely C_Finalize in softoken, and the SSL bypass shutdown callback called + /* This function is not thread-safe, but doesn't need to be, because it is + * only called from functions that are also defined as not thread-safe, + * namely C_Finalize in softoken, and the SSL bypass shutdown callback called @@ -905,6 +905,7 @@ - blLib = NULL; - } - loadFreeBLOnce = pristineCallOnce; + } + blLib = NULL; + loadFreeBLOnce = pristineCallOnce; +#endif } diff -Nru libreoffice-5.3.3~rc1/external/nss/nss.patch libreoffice-5.3.3~rc2/external/nss/nss.patch --- libreoffice-5.3.3~rc1/external/nss/nss.patch 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/nss.patch 2017-05-03 16:46:29.000000000 +0000 @@ -54,24 +54,16 @@ diff -ru nss.orig/nss/coreconf/arch.mk nss/nss/coreconf/arch.mk --- a/nss.orig/nss/coreconf/arch.mk 2016-02-12 15:36:18.000000000 +0100 +++ b/nss/nss/coreconf/arch.mk 2016-02-23 20:48:31.595941079 +0100 -@@ -280,15 +280,21 @@ - # IMPL_STRATEGY may be defined too. - # - --ifdef CROSS_COMPILE --OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ --else --OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(COMPILER_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ --endif +@@ -280,11 +280,17 @@ + OBJDIR_NAME_COMPILER = $(COMPILER_TAG) + endif + OBJDIR_NAME_BASE = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(OBJDIR_NAME_COMPILER)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG) +-OBJDIR_NAME = $(OBJDIR_NAME_BASE).OBJ +# OBJDIR_NAME is used to build the directory containing the built objects, for +# example mozilla/dist/Linux2.6_x86_glibc_PTH_DBG.OBJ +# We need to deliver the contents of that folder into instdir. To make that +# easier in the makefile we rename this directory to "out". -+#ifdef CROSS_COMPILE -+#OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ -+#else -+#OBJDIR_NAME = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(COMPILER_TAG)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG).OBJ -+#endif ++#OBJDIR_NAME = $(OBJDIR_NAME_BASE).OBJ +OBJDIR_NAME = out @@ -96,20 +88,6 @@ diff -ru a/nss/coreconf/Linux.mk b/nss/coreconf/Linux.mk --- a/a/nss/coreconf/Linux.mk 2014-09-29 16:46:38.189421588 +0100 +++ b/b/nss/coreconf/Linux.mk 2014-09-29 16:47:42.985012235 +0100 -@@ -16,8 +16,11 @@ - IMPL_STRATEGY = _PTH - endif - --CC = gcc --CCC = g++ -+# CC is taken from environment automatically. -+#CC = gcc -+# Use CCC from environment. -+#CCC = g++ -+CCC = $(CXX) - RANLIB = ranlib - - DEFAULT_COMPILER = gcc @@ -157,7 +160,7 @@ # against the libsanitizer runtime built into the main executable. ZDEFS_FLAG = -Wl,-z,defs @@ -172,6 +150,19 @@ #! gmake # # This Source Code Form is subject to the terms of the Mozilla Public +@@ -91,10 +91,10 @@ + NSPR_CONFIGURE_ENV = CC=gcc CXX=g++ + endif + ifdef CC +-NSPR_CONFIGURE_ENV = CC=$(CC) ++NSPR_CONFIGURE_ENV = CC="$(CC) " + endif + ifdef CCC +-NSPR_CONFIGURE_ENV += CXX=$(CCC) ++NSPR_CONFIGURE_ENV += CXX="$(CCC) " + endif + # Remove -arch definitions. NSPR can't handle that. + NSPR_CONFIGURE_ENV := $(filter-out -arch x86_64,$(NSPR_CONFIGURE_ENV)) diff -ru nss.orig/nss/coreconf/Werror.mk nss/nss/coreconf/Werror.mk --- a/nss.orig/nss/coreconf/Werror.mk 2016-02-12 15:36:18.000000000 +0100 +++ b/nss/nss/coreconf/Werror.mk 2016-02-23 23:58:15.119584046 +0100 diff -Nru libreoffice-5.3.3~rc1/external/nss/nss.utf8bom.patch.1 libreoffice-5.3.3~rc2/external/nss/nss.utf8bom.patch.1 --- libreoffice-5.3.3~rc1/external/nss/nss.utf8bom.patch.1 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/nss.utf8bom.patch.1 2017-05-03 16:46:29.000000000 +0000 @@ -1,12 +1,3 @@ -diff -ur nss.org/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h nss/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h ---- nss.org/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h 2016-03-31 18:26:06.763009800 +0800 -+++ nss/nss/external_tests/google_test/gtest/include/gtest/internal/gtest-internal.h 2016-03-31 19:17:11.724452000 +0800 -@@ -1,4 +1,4 @@ --// Copyright 2005, Google Inc. -+// Copyright 2005, Google Inc. - // All rights reserved. - // - // Redistribution and use in source and binary forms, with or without diff -ur nss.org/nss/lib/ckfw/builtins/certdata.perl nss/nss/lib/ckfw/builtins/certdata.perl --- nss.org/nss/lib/ckfw/builtins/certdata.perl 2016-03-31 18:26:07.890190900 +0800 +++ nss/nss/lib/ckfw/builtins/certdata.perl 2016-03-31 19:16:16.727269600 +0800 diff -Nru libreoffice-5.3.3~rc1/external/nss/nss.windowbuild.patch.0 libreoffice-5.3.3~rc2/external/nss/nss.windowbuild.patch.0 --- libreoffice-5.3.3~rc1/external/nss/nss.windowbuild.patch.0 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/nss.windowbuild.patch.0 2017-05-03 16:46:29.000000000 +0000 @@ -1,5 +1,5 @@ ---- ./nss/external_tests/ssl_gtest/tls_connect.cc -+++ ./nss/external_tests/ssl_gtest/tls_connect.cc +--- ./nss/gtests/ssl_gtest/tls_connect.cc ++++ ./nss/gtests/ssl_gtest/tls_connect.cc @@ -375,6 +375,12 @@ } } @@ -13,8 +13,8 @@ void TlsConnectTestBase::EnableAlpn() { client_->EnableAlpn(alpn_dummy_val_, sizeof(alpn_dummy_val_)); server_->EnableAlpn(alpn_dummy_val_, sizeof(alpn_dummy_val_)); ---- ./nss/external_tests/ssl_gtest/tls_connect.h -+++ ./nss/external_tests/ssl_gtest/tls_connect.h +--- ./nss/gtests/ssl_gtest/tls_connect.h ++++ ./nss/gtests/ssl_gtest/tls_connect.h @@ -113,12 +113,6 @@ SessionResumptionMode expected_resumption_mode_; std::vector> session_ids_; @@ -26,10 +26,10 @@ - const uint8_t alpn_dummy_val_[4] = {0x01, 0x62, 0x01, 0x61}; - private: - void CheckResumption(SessionResumptionMode expected); - void CheckExtendedMasterSecret(); ---- ./nss/external_tests/ssl_gtest/ssl_loopback_unittest.cc -+++ ./nss/external_tests/ssl_gtest/ssl_loopback_unittest.cc + static inline Mode ToMode(const std::string& str) { + return str == "TLS" ? STREAM : DGRAM; +--- ./nss/gtests/ssl_gtest/ssl_loopback_unittest.cc ++++ ./nss/gtests/ssl_gtest/ssl_loopback_unittest.cc @@ -51,6 +51,12 @@ CheckAlpn("a"); } @@ -43,8 +43,8 @@ TEST_P(TlsConnectGeneric, ConnectAlpnClone) { EnsureModelSockets(); client_model_->EnableAlpn(alpn_dummy_val_, sizeof(alpn_dummy_val_)); ---- ./nss/external_tests/ssl_gtest/databuffer.h -+++ ./nss/external_tests/ssl_gtest/databuffer.h +--- ./nss/gtests/ssl_gtest/databuffer.h ++++ ./nss/gtests/ssl_gtest/databuffer.h @@ -10,6 +10,7 @@ #include #include diff -Nru libreoffice-5.3.3~rc1/external/nss/ubsan-alignment.patch.0 libreoffice-5.3.3~rc2/external/nss/ubsan-alignment.patch.0 --- libreoffice-5.3.3~rc1/external/nss/ubsan-alignment.patch.0 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/ubsan-alignment.patch.0 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ ---- nss/lib/freebl/md5.c -+++ nss/lib/freebl/md5.c -@@ -445,7 +445,7 @@ - /* Iterate over 64-byte chunks of the message. */ - while (inputLen >= MD5_BUFFER_SIZE) { - #ifdef IS_LITTLE_ENDIAN --#ifdef NSS_X86_OR_X64 -+#if 0 - /* x86 can handle arithmetic on non-word-aligned buffers */ - wBuf = (PRUint32 *)input; - #else ---- nss/lib/freebl/sha_fast.c -+++ nss/lib/freebl/sha_fast.c -@@ -16,7 +16,7 @@ - #include "ssltrace.h" - #endif - --static void shaCompress(volatile SHA_HW_t *X, const PRUint32 *datain); -+static void shaCompress(volatile SHA_HW_t *X, const unsigned char *datain); - - #define W u.w - #define B u.b -@@ -241,7 +241,7 @@ - * code on AMD64. - */ - static void --shaCompress(volatile SHA_HW_t *X, const PRUint32 *inbuf) -+shaCompress(volatile SHA_HW_t *X, const unsigned char *inbuf) - { - register SHA_HW_t A, B, C, D, E; - -@@ -277,7 +277,7 @@ - a = SHA_ROTL(b, 5) + SHA_F4(c, d, e) + a + XW(n) + K3; \ - c = SHA_ROTL(c, 30) - --#define LOAD(n) XW(n) = SHA_HTONL(inbuf[n]) -+#define LOAD(n) XW(n) = (((PRUint32)inbuf[4*n])<<24)|(((PRUint32)inbuf[4*n+1])<<16)|(((PRUint32)inbuf[4*n+2])<<8)|((PRUint32)inbuf[4*n+3]) - - A = XH(0); - B = XH(1); diff -Nru libreoffice-5.3.3~rc1/external/nss/ubsan.patch.0 libreoffice-5.3.3~rc2/external/nss/ubsan.patch.0 --- libreoffice-5.3.3~rc1/external/nss/ubsan.patch.0 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/ubsan.patch.0 2017-05-03 16:46:29.000000000 +0000 @@ -1,14 +1,3 @@ ---- nss/lib/certdb/crl.c -+++ nss/lib/certdb/crl.c -@@ -1982,7 +1982,7 @@ - return SECSuccess; - } - /* all CRLs are good, sort them by thisUpdate */ -- qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), SortCRLsByThisUpdate); -+ if (cache->ncrls != 0) qsort(cache->crls, cache->ncrls, sizeof(CachedCrl*), SortCRLsByThisUpdate); - - if (cache->ncrls) { - /* pick the newest CRL */ --- nss/lib/softoken/legacydb/pk11db.c +++ nss/lib/softoken/legacydb/pk11db.c @@ -65,7 +65,7 @@ diff -Nru libreoffice-5.3.3~rc1/external/nss/UnpackedTarball_nss.mk libreoffice-5.3.3~rc2/external/nss/UnpackedTarball_nss.mk --- libreoffice-5.3.3~rc1/external/nss/UnpackedTarball_nss.mk 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/nss/UnpackedTarball_nss.mk 2017-05-03 16:46:29.000000000 +0000 @@ -44,7 +44,6 @@ ifneq ($(filter -fsanitize=%,$(CC)),) $(eval $(call gb_UnpackedTarball_add_patches,nss,\ external/nss/asan.patch.1 \ - external/nss/ubsan-alignment.patch.0 \ )) endif endif diff -Nru libreoffice-5.3.3~rc1/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 libreoffice-5.3.3~rc2/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 --- libreoffice-5.3.3~rc1/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 2017-05-03 16:46:29.000000000 +0000 @@ -0,0 +1,43 @@ +From 590681e546cd9aa18d57dc2ea1858cb734a3863f Mon Sep 17 00:00:00 2001 +From: Dave Beckett +Date: Sun, 16 Apr 2017 23:15:12 +0100 +Subject: [PATCH] Calcualte max nspace declarations correctly for XML writer + +(raptor_xml_writer_start_element_common): Calculate max including for +each attribute a potential name and value. + +Fixes Issues #0000617 http://bugs.librdf.org/mantis/view.php?id=617 +and #0000618 http://bugs.librdf.org/mantis/view.php?id=618 +--- + src/raptor_xml_writer.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/src/raptor_xml_writer.c b/src/raptor_xml_writer.c +index 693b946..0d3a36a 100644 +--- a/src/raptor_xml_writer.c ++++ b/src/raptor_xml_writer.c +@@ -181,9 +181,10 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + size_t nspace_declarations_count = 0; + unsigned int i; + +- /* max is 1 per element and 1 for each attribute + size of declared */ + if(nstack) { +- int nspace_max_count = element->attribute_count+1; ++ int nspace_max_count = element->attribute_count * 2; /* attr and value */ ++ if(element->name->nspace) ++ nspace_max_count++; + if(element->declared_nspaces) + nspace_max_count += raptor_sequence_size(element->declared_nspaces); + if(element->xml_language) +@@ -237,7 +238,7 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + } + } + +- /* Add the attribute + value */ ++ /* Add the attribute's value */ + nspace_declarations[nspace_declarations_count].declaration= + raptor_qname_format_as_xml(element->attributes[i], + &nspace_declarations[nspace_declarations_count].length); +-- +2.9.3 + diff -Nru libreoffice-5.3.3~rc1/external/redland/UnpackedTarball_raptor.mk libreoffice-5.3.3~rc2/external/redland/UnpackedTarball_raptor.mk --- libreoffice-5.3.3~rc1/external/redland/UnpackedTarball_raptor.mk 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/external/redland/UnpackedTarball_raptor.mk 2017-05-03 16:46:29.000000000 +0000 @@ -26,6 +26,7 @@ external/redland/raptor/ubsan.patch \ $(if $(SYSTEM_LIBXML),,external/redland/raptor/rpath.patch) \ external/redland/raptor/xml2-config.patch \ + external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-5.3.3~rc1/filter/source/graphicfilter/icgm/class2.cxx libreoffice-5.3.3~rc2/filter/source/graphicfilter/icgm/class2.cxx --- libreoffice-5.3.3~rc1/filter/source/graphicfilter/icgm/class2.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/filter/source/graphicfilter/icgm/class2.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -147,7 +147,10 @@ aTempLineBundle.eLineType = (LineType)ImplGetI( pElement->nIndexPrecision ); aTempLineBundle.nLineWidth = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempLineBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateLineBundle = aTempLineBundle.GetIndex() == pElement->pLineBundle->GetIndex(); CGMElements::InsertBundle( pElement->aLineList, aTempLineBundle ); + if (bUpdateLineBundle) + pElement->pLineBundle = static_cast(CGMElements::GetBundleIndex(aTempLineBundle.GetIndex(), pElement->aLineList, pElement->aLineBundle)); } break; case 0x0c : /*Marker Representation*/ @@ -157,7 +160,10 @@ aTempMarkerBundle.eMarkerType = (MarkerType)ImplGetI( pElement->nIndexPrecision ); aTempMarkerBundle.nMarkerSize = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempMarkerBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateMarkerBundle = aTempMarkerBundle.GetIndex() == pElement->pMarkerBundle->GetIndex(); CGMElements::InsertBundle( pElement->aMarkerList, aTempMarkerBundle ); + if (bUpdateMarkerBundle) + pElement->pMarkerBundle = static_cast(CGMElements::GetBundleIndex(aTempMarkerBundle.GetIndex(), pElement->aMarkerList, pElement->aMarkerBundle)); } break; case 0x0d : /*Text Representation*/ @@ -169,7 +175,10 @@ aTempTextBundle.nCharacterSpacing = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempTextBundle.nCharacterExpansion = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempTextBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateTextBundle = aTempTextBundle.GetIndex() == pElement->pTextBundle->GetIndex(); CGMElements::InsertBundle( pElement->aTextList, aTempTextBundle ); + if (bUpdateTextBundle) + pElement->pTextBundle = static_cast(CGMElements::GetBundleIndex(aTempTextBundle.GetIndex(), pElement->aTextList, pElement->aTextBundle)); } break; case 0x0e : /*Fill Representation*/ @@ -180,7 +189,10 @@ aTempFillBundle.SetColor( ImplGetBitmapColor() ); aTempFillBundle.nFillPatternIndex = ImplGetI( pElement->nIndexPrecision ); aTempFillBundle.nFillHatchIndex = ImplGetI( pElement->nIndexPrecision ); + const bool bUpdateFillBundle = aTempFillBundle.GetIndex() == pElement->pFillBundle->GetIndex(); CGMElements::InsertBundle( pElement->aFillList, aTempFillBundle ); + if (bUpdateFillBundle) + pElement->pFillBundle = static_cast(CGMElements::GetBundleIndex(aTempFillBundle.GetIndex(), pElement->aFillList, pElement->aFillBundle)); } break; case 0x0f : /*Edge Representation*/ @@ -190,7 +202,10 @@ aTempEdgeBundle.eEdgeType = (EdgeType)ImplGetI( pElement->nIndexPrecision ); aTempEdgeBundle.nEdgeWidth = ImplGetFloat( pElement->eRealPrecision, pElement->nRealSize ); aTempEdgeBundle.SetColor( ImplGetBitmapColor() ); + const bool bUpdateEdgeBundle = aTempEdgeBundle.GetIndex() == pElement->pEdgeBundle->GetIndex(); CGMElements::InsertBundle( pElement->aEdgeList, aTempEdgeBundle ); + if (bUpdateEdgeBundle) + pElement->pEdgeBundle = static_cast(CGMElements::GetBundleIndex(aTempEdgeBundle.GetIndex(), pElement->aEdgeList, pElement->aEdgeBundle)); } break; case 0x10 : /*Interior Style Specification Mode */break; // NS diff -Nru libreoffice-5.3.3~rc1/hwpfilter/source/hbox.cxx libreoffice-5.3.3~rc2/hwpfilter/source/hbox.cxx --- libreoffice-5.3.3~rc1/hwpfilter/source/hbox.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/hwpfilter/source/hbox.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -332,8 +332,6 @@ , pgy(0) , pgno(0) , showpg(0) - , prev(nullptr) - , next(nullptr) { } diff -Nru libreoffice-5.3.3~rc1/hwpfilter/source/hbox.h libreoffice-5.3.3~rc2/hwpfilter/source/hbox.h --- libreoffice-5.3.3~rc1/hwpfilter/source/hbox.h 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/hwpfilter/source/hbox.h 2017-05-03 16:46:29.000000000 +0000 @@ -316,8 +316,6 @@ short pgx, pgy; // physical xpos, ypos short pgno, showpg; // pageno where code is - FBox *prev, *next; - explicit FBox( hchar hch ); virtual ~FBox() override; }; diff -Nru libreoffice-5.3.3~rc1/hwpfilter/source/hwpfile.cxx libreoffice-5.3.3~rc2/hwpfilter/source/hwpfile.cxx --- libreoffice-5.3.3~rc1/hwpfilter/source/hwpfile.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/hwpfilter/source/hwpfile.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -441,18 +441,8 @@ return nullptr; } - void HWPFile::AddBox(FBox * box) { -// LATER if we don't use box->next(), -// AddBox() and GetBoxHead() are useless; - if (!blist.empty()) - { - box->prev = blist.back(); - box->prev->next = box; - } - else - box->prev = nullptr; blist.push_back(box); } diff -Nru libreoffice-5.3.3~rc1/hwpfilter/source/hwpread.cxx libreoffice-5.3.3~rc2/hwpfilter/source/hwpread.cxx --- libreoffice-5.3.3~rc1/hwpfilter/source/hwpread.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/hwpfilter/source/hwpread.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -221,6 +221,7 @@ hwpf.AddBox(this); hwpf.Read2b(&style.cap_len, 1); hwpf.Read2b(&dummy1, 1); + unsigned short next; hwpf.Read2b(&next, 1); hwpf.Read2b(&dummy2, 1); diff -Nru libreoffice-5.3.3~rc1/readlicense_oo/license/CREDITS.fodt libreoffice-5.3.3~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-5.3.3~rc1/readlicense_oo/license/CREDITS.fodt 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/readlicense_oo/license/CREDITS.fodt 2017-05-03 16:46:29.000000000 +0000 @@ -1,12 +1,12 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.3.1.2$Linux_X86_64 LibreOffice_project/e80a0e0fd1875e1696614d24c32df0f95f03deb22012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.3.2.2$Linux_X86_64 LibreOffice_project/6cd4f1ef626f15116896b1d8e1398b56da0d0ee12012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 626 + 542 501 - 41197 + 41965 21698 true true @@ -16,9 +16,9 @@ 3649 3471 501 - 626 - 41697 - 22322 + 542 + 42464 + 22237 0 0 false @@ -70,7 +70,7 @@ false false true - 6513620 + 6611056 false false false @@ -317,40 +317,40 @@ - + - + - + - + - + - + - + - + - + @@ -398,24 +398,21 @@ - + - + - + - - - - + - + @@ -1045,7 +1042,7 @@ Credits - 1270 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2017-03-29 21:12:33. + 1282 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2017-05-03 13:12:26. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1072,10 +1069,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolán McNamaraCommits: 21672Joined: 2000-10-10 + Caolán McNamaraCommits: 21990Joined: 2000-10-10 - Stephan BergmannCommits: 13956Joined: 2000-10-04 + Stephan BergmannCommits: 14171Joined: 2000-10-04 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1083,35 +1080,35 @@ - Tor LillqvistCommits: 7816Joined: 2010-03-23 + Tor LillqvistCommits: 7837Joined: 2010-03-23 - *Noel GrandinCommits: 6479Joined: 2011-12-12 + *Noel GrandinCommits: 6489Joined: 2011-12-12 - Miklos VajnaCommits: 6233Joined: 2010-07-29 + Miklos VajnaCommits: 6291Joined: 2010-07-29 - Michael StahlCommits: 5878Joined: 2008-06-16 + Michael StahlCommits: 5928Joined: 2008-06-16 - Kohei YoshidaCommits: 5482Joined: 2009-06-19 + Kohei YoshidaCommits: 5499Joined: 2009-06-19 Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - *Markus MohrhardCommits: 4650Joined: 2011-03-17 + *Markus MohrhardCommits: 4691Joined: 2011-03-17 - Eike RathkeCommits: 3736Joined: 2000-10-11 + Eike RathkeCommits: 3797Joined: 2000-10-11 - David TardonCommits: 3465Joined: 2009-11-12 + David TardonCommits: 3471Joined: 2009-11-12 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1125,16 +1122,16 @@ - Oliver SpechtCommits: 2546Joined: 2000-09-21 + Oliver SpechtCommits: 2548Joined: 2000-09-21 - Jan HolesovskyCommits: 2417Joined: 2009-06-23 + Jan HolesovskyCommits: 2429Joined: 2009-06-23 - Michael MeeksCommits: 2237Joined: 2004-08-05 + Michael MeeksCommits: 2241Joined: 2004-08-05 - Bjoern MichaelsenCommits: 2211Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2212Joined: 2009-10-14 @@ -1148,7 +1145,7 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Julien NabetCommits: 2041Joined: 2010-11-04 + *Julien NabetCommits: 2051Joined: 2010-11-04 @@ -1156,13 +1153,13 @@ Christian LippkaCommits: 1805Joined: 2000-09-25 - *Andras TimarCommits: 1749Joined: 2010-10-02 + *Andras TimarCommits: 1756Joined: 2010-10-02 *Matúš KukanCommits: 1712Joined: 2011-04-06 - *Tomaž VajngerlCommits: 1618Joined: 2012-06-02 + *Tomaž VajngerlCommits: 1638Joined: 2012-06-02 @@ -1181,13 +1178,13 @@ - *Takeshi AbeCommits: 1274Joined: 2010-11-08 + *Takeshi AbeCommits: 1293Joined: 2010-11-08 - Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 + Thorsten BehrensCommits: 1220Joined: 2001-04-25 - Thorsten BehrensCommits: 1203Joined: 2001-04-25 + Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 Armin Le GrandCommits: 1188Joined: 2000-09-25 @@ -1195,44 +1192,44 @@ - *Matteo CasalinCommits: 1136Joined: 2011-11-13 + *Matteo CasalinCommits: 1161Joined: 2011-11-13 - *Lionel Elie MamaneCommits: 999Joined: 2011-01-15 + *Noel GrandinCommits: 1025Joined: 2016-09-07 - Petr MladekCommits: 958Joined: 2006-10-03 + *Lionel Elie MamaneCommits: 1000Joined: 2011-01-15 - Noel PowerCommits: 950Joined: 2002-09-24 + Petr MladekCommits: 958Joined: 2006-10-03 - Kai AhrensCommits: 909Joined: 2000-09-21 + Noel PowerCommits: 950Joined: 2002-09-24 - Henning BrinkmannCommits: 899Joined: 2002-08-14 + *Chris SherlockCommits: 917Joined: 2013-02-25 - *Chris SherlockCommits: 887Joined: 2013-02-25 + Kai AhrensCommits: 909Joined: 2000-09-21 - Cédric BosdonnatCommits: 882Joined: 2009-11-16 + Henning BrinkmannCommits: 899Joined: 2002-08-14 - *Noel GrandinCommits: 878Joined: 2016-09-07 + Cédric BosdonnatCommits: 882Joined: 2009-11-16 Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 - Sven JacobiCommits: 850Joined: 2000-09-21 + *Tamás ZolnaiCommits: 851Joined: 2012-08-06 - *Tamás ZolnaiCommits: 839Joined: 2012-08-06 + Sven JacobiCommits: 850Joined: 2000-09-21 @@ -1282,18 +1279,18 @@ *Rafael DominguezCommits: 606Joined: 2011-02-13 - *Maxim MonastirskyCommits: 567Joined: 2013-10-27 + *Maxim MonastirskyCommits: 584Joined: 2013-10-27 Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 - Christian LohmaierCommits: 518Joined: 2008-06-01 + Christian LohmaierCommits: 536Joined: 2008-06-01 - *Xisco FauliCommits: 515Joined: 2011-02-06 + *Xisco FauliCommits: 516Joined: 2011-02-06 Jürgen SchmidtCommits: 512Joined: 2000-10-09 @@ -1302,7 +1299,7 @@ *Peter FoleyCommits: 488Joined: 2011-09-04 - *Khaled HosnyCommits: 471Joined: 2011-01-28 + *Khaled HosnyCommits: 475Joined: 2011-01-28 @@ -1310,21 +1307,21 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Samuel MehrbrodtCommits: 424Joined: 2011-06-08 + *Zdeněk CrhonekCommits: 434Joined: 2016-05-19 - *Zdeněk CrhonekCommits: 424Joined: 2016-05-19 + *Yousuf PhilipsCommits: 434Joined: 2014-09-21 - *Yousuf PhilipsCommits: 419Joined: 2014-09-21 + *Samuel MehrbrodtCommits: 427Joined: 2011-06-08 - Rene EngelhardCommits: 411Joined: 2005-03-14 + *Katarina BehrensCommits: 417Joined: 2010-10-13 - *Katarina BehrensCommits: 411Joined: 2010-10-13 + Rene EngelhardCommits: 412Joined: 2005-03-14 Dirk VoelzkeCommits: 392Joined: 2000-11-27 @@ -1344,15 +1341,15 @@ Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Jochen NitschkeCommits: 339Joined: 2016-02-02 + *Jochen NitschkeCommits: 355Joined: 2016-02-02 - *Szymon KłosCommits: 337Joined: 2014-03-22 + *Szymon KłosCommits: 347Joined: 2014-03-22 - *David OstrovskyCommits: 321Joined: 2012-04-01 + *David OstrovskyCommits: 322Joined: 2012-04-01 Radek DoulikCommits: 305Joined: 2010-05-03 @@ -1366,13 +1363,13 @@ *August SodoraCommits: 285Joined: 2011-10-18 - *Siqi LiuCommits: 277Joined: 2013-04-13 + *Adolfo Jayme BarrientosCommits: 281Joined: 2013-06-21 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Siqi LiuCommits: 277Joined: 2013-04-13 - *Adolfo Jayme BarrientosCommits: 274Joined: 2013-06-21 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 @@ -1391,16 +1388,16 @@ - *Jan-Marek GlogowskiCommits: 234Joined: 2013-11-14 + *Jan-Marek GlogowskiCommits: 238Joined: 2013-11-14 - *Andrea GelminiCommits: 230Joined: 2014-10-30 + *Andrea GelminiCommits: 237Joined: 2014-10-30 - Ingo SchmidtCommits: 202Joined: 2004-02-05 + *Laurent Balland-PoirierCommits: 205Joined: 2011-08-31 - *Laurent Balland-PoirierCommits: 201Joined: 2011-08-31 + Ingo SchmidtCommits: 202Joined: 2004-02-05 @@ -1419,20 +1416,23 @@ - *Arnaud VersiniCommits: 182Joined: 2010-10-05 + *Gabor KelemenCommits: 187Joined: 2016-08-25 - *Marco CecchettiCommits: 180Joined: 2011-04-14 + *Marco CecchettiCommits: 185Joined: 2011-04-14 - *François TigeotCommits: 176Joined: 2011-01-31 + *Arnaud VersiniCommits: 182Joined: 2010-10-05 - *Justin LuthCommits: 172Joined: 2014-09-30 + *Justin LuthCommits: 178Joined: 2014-09-30 + *François TigeotCommits: 176Joined: 2011-01-31 + + *Philipp RiemerCommits: 171Joined: 2012-05-25 @@ -1441,9 +1441,6 @@ *Nigel HawkinsCommits: 160Joined: 2010-10-28 - - *Gabor KelemenCommits: 159Joined: 2016-08-25 - @@ -1456,29 +1453,29 @@ *Alexander WilmsCommits: 151Joined: 2012-05-26 - Gregor HartmannCommits: 141Joined: 2000-10-12 + *andreas kainzCommits: 144Joined: 2015-03-18 - Giuseppe CastagnoCommits: 138Joined: 2007-12-09 + Gregor HartmannCommits: 141Joined: 2000-10-12 - *Artur DryomovCommits: 137Joined: 2013-03-14 + Giuseppe CastagnoCommits: 138Joined: 2007-12-09 - *andreas kainzCommits: 133Joined: 2015-03-18 + *Mike KaganskiCommits: 137Joined: 2015-04-26 - *Jesús CorriusCommits: 130Joined: 2010-10-07 + *Artur DryomovCommits: 137Joined: 2013-03-14 - *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 + *Jesús CorriusCommits: 130Joined: 2010-10-07 - *Mike KaganskiCommits: 128Joined: 2015-04-26 + *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 @@ -1498,11 +1495,14 @@ Takashi OnoCommits: 122Joined: 2009-12-10 - *Douglas MenckenCommits: 119Joined: 2013-12-11 + Bartosz KosiorekCommits: 120Joined: 2010-09-17 + *Douglas MenckenCommits: 119Joined: 2013-12-11 + + *Sebastian SpaethCommits: 119Joined: 2010-09-28 @@ -1511,22 +1511,19 @@ *jan IversenCommits: 116Joined: 2015-11-03 - - *Joren De CuyperCommits: 114Joined: 2013-01-07 - - *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + *Joren De CuyperCommits: 114Joined: 2013-01-07 - *Matthias FreundCommits: 107Joined: 2013-02-08 + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - Bartosz KosiorekCommits: 106Joined: 2010-09-17 + *Pranav KantCommits: 107Joined: 2016-01-27 - *Pranav KantCommits: 103Joined: 2016-01-27 + *Matthias FreundCommits: 107Joined: 2013-02-08 @@ -1551,42 +1548,45 @@ *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Mark HungCommits: 91Joined: 2014-11-04 - *Pranav KantCommits: 90Joined: 2015-03-01 + *Krisztian PinterCommits: 90Joined: 2013-02-18 - *Armin Le GrandCommits: 89Joined: 2015-11-09 + *Pranav KantCommits: 90Joined: 2015-03-01 - *Henry CastroCommits: 89Joined: 2015-01-09 + *Henry CastroCommits: 90Joined: 2015-01-09 - *Albert ThuswaldnerCommits: 88Joined: 2011-01-26 + *Jean-Pierre LedureCommits: 89Joined: 2013-10-12 - *Daniel BankstonCommits: 88Joined: 2012-04-03 + *Armin Le GrandCommits: 89Joined: 2015-11-09 - *Tim RetoutCommits: 88Joined: 2012-02-14 + *Albert ThuswaldnerCommits: 88Joined: 2011-01-26 - *Adam CoCommits: 86Joined: 2013-04-28 + *Daniel BankstonCommits: 88Joined: 2012-04-03 - *Jean-Pierre LedureCommits: 85Joined: 2013-10-12 + *Tim RetoutCommits: 88Joined: 2012-02-14 - Mihaela KedikovaCommits: 85Joined: 2009-10-30 + *Adam CoCommits: 86Joined: 2013-04-28 + Mihaela KedikovaCommits: 85Joined: 2009-10-30 + + *Javier FernandezCommits: 84Joined: 2013-03-06 @@ -1595,19 +1595,16 @@ *Minh NgoCommits: 83Joined: 2013-05-02 - - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - - *Korrawit PruegsanusakCommits: 82Joined: 2011-05-28 + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - *Mark HungCommits: 81Joined: 2014-11-04 + *Muhammet KaraCommits: 82Joined: 2016-03-20 - *Muhammet KaraCommits: 80Joined: 2016-03-20 + *Korrawit PruegsanusakCommits: 82Joined: 2011-05-28 *Tobias MadlCommits: 74Joined: 2014-09-15 @@ -1643,6 +1640,9 @@ + *Rohan KumarCommits: 64Joined: 2016-02-23 + + *Michael WeghornCommits: 63Joined: 2014-09-10 @@ -1651,53 +1651,53 @@ Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 + + Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 - - + + *Jens CarlCommits: 59Joined: 2014-05-28 + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 *shiming zhangCommits: 59Joined: 2013-11-04 + + *Simon SteinbeissCommits: 58Joined: 2015-06-01 *Martin HoskenCommits: 58Joined: 2011-02-25 - - *yiming juCommits: 57Joined: 2013-11-01 *Jaskaran SinghCommits: 57Joined: 2016-02-18 + + *matteocamCommits: 56Joined: 2014-02-25 *Juergen FunkCommits: 55Joined: 2014-09-17 - - - - *Rohan KumarCommits: 55Joined: 2016-02-23 - *Matthew J. FrancisCommits: 55Joined: 2014-08-25 Nikolai PretzellCommits: 54Joined: 2001-03-09 + + *Mihály PalenikCommits: 54Joined: 2013-07-11 - - *yangzhangCommits: 54Joined: 2013-11-04 @@ -1707,11 +1707,11 @@ *Martin KepplingerCommits: 53Joined: 2011-02-18 + + *Rob SneldersCommits: 53Joined: 2011-02-08 - - *Rosemary SebastianCommits: 52Joined: 2015-06-23 @@ -1721,11 +1721,11 @@ *Will ThompsonCommits: 51Joined: 2012-03-21 + + *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 - - *Rachit GuptaCommits: 51Joined: 2014-01-18 @@ -1735,11 +1735,11 @@ *Ptyl DragonCommits: 50Joined: 2013-05-09 + + *Urs FässlerCommits: 48Joined: 2013-02-14 - - *Marcel MetzCommits: 48Joined: 2011-12-05 @@ -1749,11 +1749,11 @@ *mingli juCommits: 48Joined: 2013-11-05 + + *J. Graeme LingardCommits: 47Joined: 2010-09-29 - - *Alexandre VicenziCommits: 46Joined: 2014-01-15 @@ -1763,70 +1763,78 @@ *Varun DhallCommits: 46Joined: 2015-03-07 + + *Lior KaplanCommits: 46Joined: 2010-10-05 - - + + *Gabor KelemenCommits: 46Joined: 2013-06-18 + *Mihai VargaCommits: 46Joined: 2014-02-27 *Susobhan GhoshCommits: 45Joined: 2016-01-03 + + mb93783Commits: 45Joined: 2009-07-15 *Eilidh McAdamCommits: 45Joined: 2011-03-10 - - *Ashod NakashianCommits: 45Joined: 2016-01-10 *Daniel RobertsonCommits: 44Joined: 2015-06-27 + + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 *Luc CastermansCommits: 43Joined: 2011-11-13 - - *Philippe JungCommits: 43Joined: 2015-05-01 *Peter JentschCommits: 42Joined: 2011-01-07 + + *Mark WielaardCommits: 42Joined: 2013-05-13 *Sébastien Le RayCommits: 41Joined: 2011-02-10 - - *Christian M. HellerCommits: 41Joined: 2013-02-24 + *Regina HenschelCommits: 41Joined: 2010-11-04 + + + + *Tsutomu UchinoCommits: 41Joined: 2014-01-08 *Francisco SaitoCommits: 40Joined: 2011-03-21 - *Regina HenschelCommits: 40Joined: 2010-11-04 + *Tamás BunthCommits: 39Joined: 2016-03-08 - - *Kayo HamidCommits: 39Joined: 2010-10-09 + + *minwangCommits: 39Joined: 2013-11-04 @@ -1834,28 +1842,28 @@ *Dennis FrancisCommits: 39Joined: 2015-04-15 - *Tamás BunthCommits: 38Joined: 2016-03-08 - - - - *Valentin KettnerCommits: 38Joined: 2014-03-17 *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 + + *Ashod NakashianCommits: 37Joined: 2015-01-07 *Iain BillettCommits: 37Joined: 2012-04-11 - - *Jennifer LiebelCommits: 37Joined: 2014-08-29 + *Olivier HallotCommits: 37Joined: 2016-12-20 + + + + *Vinaya MandkeCommits: 36Joined: 2013-02-08 @@ -1864,11 +1872,11 @@ *Csikós TamásCommits: 36Joined: 2013-07-01 - - *Guillaume PousselCommits: 36Joined: 2010-12-22 + + *Priyanka GaikwadCommits: 36Joined: 2013-11-12 @@ -1878,11 +1886,11 @@ *Santiago MartinezCommits: 35Joined: 2012-01-20 - - *Łukasz HryniukCommits: 35Joined: 2015-01-02 + + *xukai liuCommits: 35Joined: 2013-11-01 @@ -1892,11 +1900,11 @@ *Tobias LippertCommits: 35Joined: 2014-01-02 - - *dechuangCommits: 35Joined: 2013-11-04 + + *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 @@ -1906,11 +1914,11 @@ *Marc-André LaverdièreCommits: 34Joined: 2011-06-21 - - *Mark PageCommits: 34Joined: 2016-04-29 + + *Yogesh BharateCommits: 33Joined: 2013-10-11 @@ -1920,11 +1928,11 @@ *Pranav KantCommits: 32Joined: 2016-02-12 - - *GokulCommits: 32Joined: 2012-07-10 + + *Luke DellerCommits: 32Joined: 2012-11-26 @@ -1932,12 +1940,15 @@ *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 - *Gabor KelemenCommits: 32Joined: 2013-06-18 + *Gulsah KoseCommits: 32Joined: 2015-03-14 + + + *Sushil ShindeCommits: 31Joined: 2013-10-21 - *Sushil ShindeCommits: 31Joined: 2013-10-21 + *jan IversenCommits: 31Joined: 2017-02-10 *fengzengCommits: 31Joined: 2013-11-04 @@ -1968,17 +1979,20 @@ *Manal AlhassounCommits: 30Joined: 2012-09-10 - *Bryan QuigleyCommits: 30Joined: 2012-12-12 + *keremCommits: 30Joined: 2015-10-12 - *Gulsah KoseCommits: 30Joined: 2015-03-14 + *Bryan QuigleyCommits: 30Joined: 2012-12-12 - *Isamu MogiCommits: 30Joined: 2013-04-27 + *Laurent AlonsoCommits: 30Joined: 2011-10-23 + *Isamu MogiCommits: 30Joined: 2013-04-27 + + *Elton ChungCommits: 29Joined: 2012-01-31 @@ -1987,16 +2001,13 @@ *Vasily MelenchukCommits: 29Joined: 2015-01-27 - - *xinjiangCommits: 29Joined: 2013-11-04 - - *Harri PitkänenCommits: 29Joined: 2010-10-04 + *xinjiangCommits: 29Joined: 2013-11-04 - *keremCommits: 29Joined: 2015-10-12 + *Harri PitkänenCommits: 29Joined: 2010-10-04 *Pallavi JadhavCommits: 28Joined: 2013-02-08 @@ -2044,38 +2055,27 @@ *José Guilherme VanzCommits: 27Joined: 2012-09-26 - *Laurent AlonsoCommits: 27Joined: 2011-10-23 + *Akash JainCommits: 26Joined: 2016-03-25 - *Olivier HallotCommits: 27Joined: 2016-12-20 - - - *Akash JainCommits: 26Joined: 2016-03-25 - - *Josh HeidenreichCommits: 26Joined: 2011-07-20 *Nicolas ChristenerCommits: 26Joined: 2011-03-10 - - - - *jan IversenCommits: 26Joined: 2017-02-10 - *Daniel SikelerCommits: 26Joined: 2014-08-28 *Maxime de RoucyCommits: 26Joined: 2012-03-08 + + *VortCommits: 25Joined: 2014-01-21 - - *Prashant PandeyCommits: 25Joined: 2013-02-20 @@ -2085,12 +2085,12 @@ *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 - - *Jens CarlCommits: 24Joined: 2014-05-28 - + *Dennis RoczekCommits: 24Joined: 2015-06-09 + + *Uray M. JánosCommits: 24Joined: 2012-07-17 @@ -2099,11 +2099,11 @@ *Tomofumi YagiCommits: 24Joined: 2011-10-20 + + *Pedro GiffuniCommits: 24Joined: 2011-10-28 - - *Felix ZhangCommits: 23Joined: 2011-10-19 @@ -2113,11 +2113,11 @@ *Lucas BaudinCommits: 23Joined: 2011-01-25 + + *Sören MöllerCommits: 23Joined: 2011-01-03 - - *Robert RothCommits: 23Joined: 2010-10-31 @@ -2127,39 +2127,39 @@ *Mario J. RugieroCommits: 23Joined: 2015-10-11 + + *zhenyu yuanCommits: 22Joined: 2013-11-06 - - + + *Johnny_MCommits: 22Joined: 2016-05-12 + *Jian Fang ZhangCommits: 22Joined: 2012-06-18 *Jacek WolszczakCommits: 22Joined: 2010-10-07 + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 *Frédéric WangCommits: 22Joined: 2013-06-22 - - *Júlio HoffimannCommits: 22Joined: 2010-10-18 - *Dennis RoczekCommits: 21Joined: 2015-06-09 - - *Cor NouwsCommits: 21Joined: 2011-11-19 + + *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - - *Tushar BendeCommits: 20Joined: 2013-09-27 @@ -2169,11 +2169,11 @@ *Andy HolderCommits: 20Joined: 2010-12-06 + + Eric BachardCommits: 20Joined: 2005-10-19 - - *Petr VorelCommits: 20Joined: 2012-02-17 @@ -2183,56 +2183,64 @@ *Lennard WasserthalCommits: 19Joined: 2012-08-11 + + *krishna keshavCommits: 19Joined: 2016-05-05 - - *AndrewCommits: 19Joined: 2014-02-26 + *Arnaud VersiniCommits: 19Joined: 2013-08-10 + + *Sven WehnerCommits: 19Joined: 2014-01-11 + + *Ravindra VidhateCommits: 19Joined: 2014-01-30 Xiaofei ZhangCommits: 19Joined: 2010-06-28 - - *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 *Alex PCommits: 18Joined: 2016-03-03 + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 - - *Federico BassiniCommits: 18Joined: 2016-10-06 *Boris DušekCommits: 18Joined: 2013-07-21 + + *Alfonso EusebioCommits: 17Joined: 2011-01-16 *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 - - + + *Vitaliy AndersonCommits: 17Joined: 2016-12-09 + *Jian Hong ChengCommits: 17Joined: 2012-06-26 + + *Bálint DózsaCommits: 17Joined: 2011-02-10 @@ -2242,11 +2250,11 @@ *Umesh KadamCommits: 17Joined: 2014-01-10 - - *navin patidarCommits: 17Joined: 2013-01-06 + + *Niko RönkköCommits: 16Joined: 2010-10-31 @@ -2256,11 +2264,11 @@ *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - - *tsahi glikCommits: 16Joined: 2013-06-04 + + *Jordan AyersCommits: 16Joined: 2010-11-04 @@ -2270,81 +2278,81 @@ *Chris LaplanteCommits: 16Joined: 2014-04-07 - - - - *Arnaud VersiniCommits: 16Joined: 2013-08-10 - Florian ReuterCommits: 16Joined: 2010-09-14 + + *Adam KasztennyCommits: 16Joined: 2016-03-27 *Maciej RumianowskiCommits: 16Joined: 2011-07-19 - - *Luke DixonCommits: 16Joined: 2010-10-26 *Lei De BinCommits: 16Joined: 2012-07-04 + + *Nikhil WalvekarCommits: 15Joined: 2013-11-01 *Catalin IacobCommits: 15Joined: 2012-02-10 - - *Luke SymesCommits: 15Joined: 2010-10-01 *Heena GuptaCommits: 15Joined: 2014-06-17 + + *Joachim TremourouxCommits: 15Joined: 2010-11-19 Octavio AlvarezCommits: 15Joined: 2010-09-13 - - *Yifan JCommits: 15Joined: 2010-12-16 *Alexander BergmannCommits: 15Joined: 2012-01-13 + + *melikeyurtogluCommits: 15Joined: 2015-10-09 *Povilas KanapickasCommits: 15Joined: 2010-10-18 - - *Cosimo CecchiCommits: 15Joined: 2011-11-02 *Aron BudeaCommits: 14Joined: 2014-12-22 + + + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 + *Zhe WangCommits: 14Joined: 2012-06-20 *Sun YingCommits: 14Joined: 2012-08-16 - - *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 + + *Juan PiccaCommits: 14Joined: 2014-07-23 @@ -2354,23 +2362,15 @@ *Zsolt BölönyCommits: 14Joined: 2015-01-10 - - - - *Johnny_MCommits: 13Joined: 2016-05-12 - *gerhard oettlCommits: 13Joined: 2012-08-27 + + *Prashant ShahCommits: 13Joined: 2010-10-10 - *LeMoyne CastleCommits: 13Joined: 2010-10-25 - - - - *Mathias HasselmannCommits: 13Joined: 2013-01-14 @@ -2379,11 +2379,11 @@ *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Abhilash SinghCommits: 12Joined: 2016-07-22 @@ -2393,11 +2393,11 @@ *Gábor StefanikCommits: 12Joined: 2012-04-07 + + *Jani MonosesCommits: 12Joined: 2010-10-30 - - *Mirek MazelCommits: 12Joined: 2012-06-05 @@ -2407,11 +2407,11 @@ *tymyjanCommits: 12Joined: 2016-04-03 + + *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 - - *Tomas HlavatyCommits: 12Joined: 2011-12-06 @@ -2421,11 +2421,11 @@ *Jean-Baptiste FaureCommits: 12Joined: 2011-02-20 + + *nadithCommits: 11Joined: 2016-07-14 - - *kadertarlanCommits: 11Joined: 2015-12-14 @@ -2433,30 +2433,38 @@ *Jung-uk KimCommits: 11Joined: 2012-08-13 + *brainbreakerCommits: 11Joined: 2017-02-06 + + + + *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - - *Phillip SzCommits: 11Joined: 2015-03-16 *Maarten BosmansCommits: 11Joined: 2016-08-24 + + *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 + *Marco A.G.PintoCommits: 11Joined: 2016-02-02 + + *David BolenCommits: 11Joined: 2012-03-07 - - *Peter RabiCommits: 11Joined: 2011-07-14 + + *Sean YoungCommits: 11Joined: 2013-05-16 @@ -2466,11 +2474,11 @@ *Michael JaumannCommits: 11Joined: 2014-09-02 - - *Charu TyagiCommits: 11Joined: 2014-06-25 + + *René KjellerupCommits: 11Joined: 2010-10-14 @@ -2480,36 +2488,28 @@ *Benjamin NiCommits: 10Joined: 2015-04-02 - - *Kristian RietveldCommits: 10Joined: 2011-10-15 + + *Chirag ManwaniCommits: 10Joined: 2016-02-16 - *Vitaliy AndersonCommits: 10Joined: 2016-12-09 - - *Theo van KlaverenCommits: 10Joined: 2011-03-10 - - - - *Marco A.G.PintoCommits: 10Joined: 2016-02-02 - *Luke PetrolekasCommits: 10Joined: 2011-02-12 *Stefan WeibergCommits: 10Joined: 2014-08-28 + + *Mert TumerCommits: 10Joined: 2016-04-30 - - *Timo HeinoCommits: 10Joined: 2010-11-22 @@ -2517,20 +2517,31 @@ *Dinesh PatilCommits: 9Joined: 2014-03-12 + *Ximeng ZuCommits: 9Joined: 2017-03-17 + + + + + *heiko tietzeCommits: 9Joined: 2016-10-06 + + *Steven ButlerCommits: 9Joined: 2011-01-07 *skswalesCommits: 9Joined: 2016-05-06 - - *Robinson TryonCommits: 9Joined: 2012-06-21 + + *Michael DunphyCommits: 9Joined: 2013-04-18 + *Ryan McCoskrieCommits: 9Joined: 2014-09-14 + + *Matthew PottageCommits: 9Joined: 2014-07-26 @@ -2539,9 +2550,6 @@ - *Ryan McCoskrieCommits: 9Joined: 2014-09-14 - - *Gökhan GurbetoğluCommits: 9Joined: 2016-06-06 @@ -2550,67 +2558,67 @@ *Mattias JohnssonCommits: 9Joined: 2010-10-18 - - *David VogtCommits: 9Joined: 2012-02-05 + + *Sean DavisCommits: 8Joined: 2015-06-01 - *heiko tietzeCommits: 8Joined: 2016-10-06 - - *Norah A. AbanumayCommits: 8Joined: 2012-07-30 - - *Matus UzakCommits: 8Joined: 2016-02-22 *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 + + *Michael CallahanCommits: 8Joined: 2010-12-06 - *Fakabbir AminCommits: 8Joined: 2017-01-29 + *Troy RolloCommits: 8Joined: 2011-07-11 - - - *Troy RolloCommits: 8Joined: 2011-07-11 + *Fakabbir AminCommits: 8Joined: 2017-01-29 *Jenei GáborCommits: 8Joined: 2011-07-29 + + *Robert DargaudCommits: 8Joined: 2011-04-12 *Ursache VladimirCommits: 8Joined: 2015-02-10 - - *Tomcsik BenceCommits: 8Joined: 2012-01-14 Fong LinCommits: 8Joined: 2010-09-14 + + + + *Dilek UzulmezCommits: 8Joined: 2016-10-15 + *RajashriCommits: 8Joined: 2013-12-06 *SouravCommits: 8Joined: 2014-03-15 - - *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 + + *HeiherCommits: 8Joined: 2015-07-07 @@ -2620,11 +2628,11 @@ *Daisuke NishinoCommits: 8Joined: 2011-11-06 - - *karthCommits: 8Joined: 2013-01-07 + + *Nathan YeeCommits: 8Joined: 2015-01-01 @@ -2634,11 +2642,11 @@ Jody GoldbergCommits: 8Joined: 2010-09-15 - - *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + + *IanCommits: 8Joined: 2015-08-06 @@ -2648,11 +2656,11 @@ *Martin SrebotnjakCommits: 7Joined: 2010-12-19 - - - *brainbreakerCommits: 7Joined: 2017-02-06 + *Krunoslav ŠebetićCommits: 7Joined: 2016-04-03 + + *David DelmaCommits: 7Joined: 2014-05-13 @@ -2660,6 +2668,9 @@ *Roi IllouzCommits: 7Joined: 2013-10-20 + *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 + + *Thies PierdolaCommits: 7Joined: 2011-01-28 @@ -2668,16 +2679,19 @@ *Mathias MichelCommits: 7Joined: 2012-11-19 + *Szymon KłosCommits: 7Joined: 2017-04-14 + + *Giuseppe BilottaCommits: 7Joined: 2014-09-09 *iremCommits: 7Joined: 2015-10-11 + + *apurvapriyadarshiCommits: 7Joined: 2016-05-27 - - *Terrence EngerCommits: 7Joined: 2011-10-27 @@ -2687,11 +2701,11 @@ *Christopher CopitsCommits: 7Joined: 2012-09-19 + + *Deena FrancisCommits: 7Joined: 2014-07-29 - - *Keith CurtisCommits: 7Joined: 2013-12-20 @@ -2701,11 +2715,11 @@ *Keith McRaeCommits: 7Joined: 2012-01-18 + + *Wang LeiCommits: 7Joined: 2012-06-14 - - *Rosemary SebastianCommits: 7Joined: 2017-01-03 @@ -2715,11 +2729,11 @@ *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + *Sergey DavidoffCommits: 7Joined: 2011-04-11 - - *Christoph LutzCommits: 7Joined: 2011-09-06 @@ -2727,9 +2741,6 @@ *V Stuart FooteCommits: 7Joined: 2014-12-04 - *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 - - *Eric SeynaeveCommits: 7Joined: 2013-02-04 @@ -2780,10 +2791,10 @@ *abdulwdCommits: 6Joined: 2016-12-22 - *Krunoslav ŠebetićCommits: 6Joined: 2016-04-03 + *Phil BordelonCommits: 6Joined: 2010-09-30 - *Phil BordelonCommits: 6Joined: 2010-09-30 + *Bjoern MichaelsenCommits: 6Joined: 2017-04-19 *Ricardo MorenoCommits: 6Joined: 2010-11-03 @@ -2797,14 +2808,17 @@ *Kay SchenkCommits: 6Joined: 2014-09-19 - *David VerrierCommits: 6Joined: 2013-02-26 + *Bernhard WidlCommits: 6Joined: 2017-03-27 - *tianyaoCommits: 6Joined: 2013-11-09 + *David VerrierCommits: 6Joined: 2013-02-26 + *tianyaoCommits: 6Joined: 2013-11-09 + + *Anurag KanungoCommits: 6Joined: 2013-04-19 @@ -2813,11 +2827,11 @@ *Fabio BusoCommits: 6Joined: 2015-11-01 + + *Daniel Di MarcoCommits: 6Joined: 2010-11-15 - - *shiraharaCommits: 6Joined: 2011-01-28 @@ -2827,11 +2841,11 @@ *Sedat AkCommits: 6Joined: 2015-11-08 + + *Steven GuoCommits: 6Joined: 2016-03-02 - - *ChamalCommits: 6Joined: 2016-08-01 @@ -2841,11 +2855,11 @@ *Werner KoernerCommits: 5Joined: 2012-12-11 + + *Antoine ProulxCommits: 5Joined: 2011-01-30 - - *Timothy MarkleCommits: 5Joined: 2014-01-31 @@ -2855,11 +2869,11 @@ *Ciorba EdmondCommits: 5Joined: 2013-06-11 + + *Wei Ming KhooCommits: 5Joined: 2012-02-17 - - *Jan KantertCommits: 5Joined: 2014-06-12 @@ -2869,11 +2883,11 @@ *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 + + *Miguel GomezCommits: 5Joined: 2013-04-02 - - *Berk GurekenCommits: 5Joined: 2015-10-01 @@ -2883,14 +2897,22 @@ *Pavel JaníkCommits: 5Joined: 2012-11-29 + + + + *Aron BudeaCommits: 5Joined: 2017-01-23 + *Guillaume SmahaCommits: 5Joined: 2015-11-25 - - + + *Thomas BeckCommits: 5Joined: 2017-03-27 + *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 + + *Marc-Andre LaverdiereCommits: 5Joined: 2011-07-19 @@ -2900,11 +2922,11 @@ *Pasi LallinahoCommits: 5Joined: 2015-06-02 - - *Huzaifa IftikharCommits: 5Joined: 2016-12-19 + + *tamsil1amani3Commits: 5Joined: 2016-12-22 @@ -2912,111 +2934,111 @@ *Kohei YoshidaCommits: 5Joined: 2013-09-07 - *Dilek UzulmezCommits: 5Joined: 2016-10-15 - - - - *Gian Domenico CeccariniCommits: 5Joined: 2017-01-13 *Bence BabatiCommits: 5Joined: 2012-08-13 + + *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 *pv2kCommits: 5Joined: 2016-11-28 - - *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 *David HobleyCommits: 5Joined: 2010-10-04 + + *Gil ForcadaCommits: 5Joined: 2010-09-28 *Lionel DricotCommits: 5Joined: 2012-06-04 - - *Jeffrey ChangCommits: 5Joined: 2011-06-01 *Pavel KysilkaCommits: 5Joined: 2012-06-25 + + *Tom TromeyCommits: 4Joined: 2011-08-11 *Santiago AlessandriCommits: 4Joined: 2010-11-11 - - *Ken BiondiCommits: 4Joined: 2014-03-05 *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + + *Kate GossCommits: 4Joined: 2012-02-11 *ClioCommits: 4Joined: 2011-01-30 - - *Elie RouxCommits: 4Joined: 2013-05-29 *Simon DannerCommits: 4Joined: 2014-08-02 + + *Thomas ViehmannCommits: 4Joined: 2014-08-15 *pasqual milvaquesCommits: 4Joined: 2015-12-02 - - *Alex HenrieCommits: 4Joined: 2014-03-05 *Derrick RochaCommits: 4Joined: 2015-08-26 + + *Maja DjordjevicCommits: 4Joined: 2011-01-06 *Michael MuenchCommits: 4Joined: 2011-02-13 - - *Andrea PescettiCommits: 4Joined: 2013-10-07 *Ulrich KitzingerCommits: 4Joined: 2013-11-30 + + *Kevin SuoCommits: 4Joined: 2014-11-06 *Sameer DeshmukhCommits: 4Joined: 2013-04-20 - - + + *Patrick JaapCommits: 4Joined: 2017-01-30 + *Burcin AkalinCommits: 4Joined: 2015-12-18 + + *XiaoliCommits: 4Joined: 2013-03-23 @@ -3026,11 +3048,11 @@ *coypuCommits: 4Joined: 2016-02-03 - - *Kumar ThangavelCommits: 4Joined: 2016-01-04 + + *Nicholas ShanksCommits: 4Joined: 2012-09-04 @@ -3040,11 +3062,11 @@ *Sahasranaman M SCommits: 4Joined: 2015-10-04 - - *Yossi ZahnCommits: 4Joined: 2016-11-25 + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 @@ -3054,6 +3076,9 @@ *Tim EvesCommits: 4Joined: 2016-02-23 + + *Arkadiy IllarionovCommits: 4Joined: 2017-01-15 + @@ -3220,39 +3245,28 @@ *Marek DoleželCommits: 3Joined: 2015-07-06 - *Aron BudeaCommits: 3Joined: 2017-01-23 + *Mayank GuptaCommits: 3Joined: 2016-03-11 - *Patrick JaapCommits: 3Joined: 2017-01-30 - - - *Mayank GuptaCommits: 3Joined: 2016-03-11 - - *David NalleyCommits: 3Joined: 2011-03-03 *Golnaz IrannejadCommits: 3Joined: 2013-04-02 - - *Tantai TanakanokCommits: 3Joined: 2011-02-09 *Luboš LuňákCommits: 3Joined: 2014-03-18 + + *Sérgio MarquesCommits: 3Joined: 2011-11-25 - *baltasarqCommits: 3Joined: 2016-02-24 - - - - *Marina LatiniCommits: 3Joined: 2016-11-10 @@ -3261,11 +3275,11 @@ *Tom ThorogoodCommits: 3Joined: 2012-02-28 + + *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 - - *Ulrich GemkowCommits: 3Joined: 2016-10-27 @@ -3275,11 +3289,11 @@ *Alexander ThurgoodCommits: 3Joined: 2011-01-26 + + *Bertrand LorentzCommits: 3Joined: 2012-08-03 - - *Marina PlakalovicCommits: 3Joined: 2012-12-14 @@ -3289,11 +3303,11 @@ *Haidong LianCommits: 3Joined: 2013-07-24 + + *Jacopo NespoloCommits: 3Joined: 2010-10-01 - - *Robert M CampbellCommits: 3Joined: 2013-11-13 @@ -3303,13 +3317,10 @@ *Cheng-Chia TsengCommits: 3Joined: 2012-01-16 - - *Pascal UllrichCommits: 3Joined: 2010-12-28 - - *qarkaiCommits: 3Joined: 2017-01-15 + *Pascal UllrichCommits: 3Joined: 2010-12-28 *Edmund WongCommits: 3Joined: 2016-12-08 @@ -3332,56 +3343,67 @@ Keith StribleyCommits: 3Joined: 2010-06-29 - *Mike EberdtCommits: 3Joined: 2011-07-12 + *Jean-Sebastien BevilacquaCommits: 3Joined: 2017-02-09 + *Mike EberdtCommits: 3Joined: 2011-07-12 + + *Joan MontaneCommits: 3Joined: 2013-02-22 *Stephan van den AkkerCommits: 3Joined: 2012-06-07 + *baltasarqCommits: 3Joined: 2016-02-24 + + + + *Benjamin DrungCommits: 3Joined: 2012-06-08 *Jason HulmeCommits: 3Joined: 2013-06-05 - - *lbenesCommits: 3Joined: 2016-07-30 *Oliver GüntherCommits: 3Joined: 2012-08-09 + + *Thorsten WagnerCommits: 3Joined: 2015-04-24 *Roland BaudinCommits: 3Joined: 2011-05-16 - - *drazilCommits: 3Joined: 2016-08-27 *Guto MaiaCommits: 3Joined: 2011-03-18 + + *Nagy AkosCommits: 3Joined: 2013-06-27 *Anthony DurityCommits: 3Joined: 2011-04-18 - - *Xuacu SaturioCommits: 3Joined: 2010-12-19 + *Manfred BlumeCommits: 3Joined: 2017-03-27 + + + + *Jan DarmochwalCommits: 3Joined: 2011-01-27 @@ -3389,12 +3411,12 @@ *Jeremy BrownCommits: 3Joined: 2012-09-19 - - - + *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 + + *sllCommits: 2Joined: 2016-09-06 @@ -3404,11 +3426,11 @@ *Sean McNamaraCommits: 2Joined: 2010-09-29 - - *Christoph NoackCommits: 2Joined: 2010-12-13 + + *Kenneth KoskiCommits: 2Joined: 2016-02-20 @@ -3418,11 +3440,11 @@ *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 - - *Gary HoustonCommits: 2Joined: 2014-12-15 + + *UrmasCommits: 2Joined: 2012-02-13 @@ -3432,11 +3454,11 @@ *Valter MuraCommits: 2Joined: 2015-06-07 - - *Andrew HigginsonCommits: 2Joined: 2012-04-10 + + *Vinicius VendraminiCommits: 2Joined: 2014-10-22 @@ -3446,15 +3468,18 @@ *Matthias KloseCommits: 2Joined: 2011-03-01 - - *Donizete WaterkemperCommits: 2Joined: 2013-05-23 + + *Yuri DarioCommits: 2Joined: 2012-07-18 + *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 + + *Tibor MógerCommits: 2Joined: 2016-12-06 @@ -3491,6 +3516,9 @@ + *Ilmari LauhakangasCommits: 2Joined: 2017-04-15 + + *Ed DeanCommits: 2Joined: 2011-01-14 @@ -3499,11 +3527,11 @@ *Jean Charles PapinCommits: 2Joined: 2011-02-11 + + *Tobias KranzCommits: 2Joined: 2011-02-17 - - *Kishor BhatCommits: 2Joined: 2015-01-28 @@ -3513,11 +3541,11 @@ *Akash DeshpandeCommits: 2Joined: 2016-08-13 + + *Dwayne BaileyCommits: 2Joined: 2010-11-03 - - Loiseleur MichelCommits: 2Joined: 2010-09-14 @@ -3527,13 +3555,10 @@ *Sergey FarbotkaCommits: 2Joined: 2012-09-21 - - *Daniel StoneCommits: 2Joined: 2014-10-29 - - *Thomas BeckCommits: 2Joined: 2017-03-27 + *Daniel StoneCommits: 2Joined: 2014-10-29 *JeevanCommits: 2Joined: 2017-03-04 @@ -3679,142 +3704,139 @@ *Arne de BruijnCommits: 2Joined: 2012-12-11 - *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 - - *Martin HollmichelCommits: 2Joined: 2015-06-29 - - *Flex LiuCommits: 2Joined: 2012-09-04 + + *Jingtao YanCommits: 2Joined: 2015-03-23 - *Jean-Sebastien BevilacquaCommits: 2Joined: 2017-02-09 - - *Janos FaragoCommits: 2Joined: 2013-09-03 - - *Hussian AlamriCommits: 2Joined: 2014-05-14 *Christos StrubulisCommits: 2Joined: 2012-12-09 + + *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 *Jing XianCommits: 2Joined: 2013-06-26 - - *Michael NattererCommits: 2Joined: 2011-04-08 *Neil MooreCommits: 2Joined: 2013-08-09 + + *Jagan LokanathaCommits: 2Joined: 2013-11-19 *Arno TeigsethCommits: 2Joined: 2011-09-14 - - *Pierre LepageCommits: 2Joined: 2016-11-05 *Karsten GerloffCommits: 2Joined: 2011-02-06 + + *Sophie GautierCommits: 2Joined: 2010-12-19 *Markus WernigCommits: 2Joined: 2015-03-18 - - *Maxim IorshCommits: 2Joined: 2011-10-05 *dbeurleCommits: 2Joined: 2015-01-12 + + *Carlos LuqueCommits: 2Joined: 2015-07-16 *Robert SedakCommits: 2Joined: 2010-10-05 - - *Emanuele FiaCommits: 2Joined: 2011-11-02 *Janit AnjariaCommits: 2Joined: 2013-04-19 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 *Moritz KuettCommits: 2Joined: 2013-03-23 - - *Abeer SethiCommits: 2Joined: 2012-04-12 *Jan HubickaCommits: 2Joined: 2011-09-12 + + *ackepenekCommits: 2Joined: 2016-02-21 *Cyril RoelandtCommits: 2Joined: 2011-04-26 - - *Jacek FraczekCommits: 2Joined: 2016-10-05 *Yury TarasievichCommits: 2Joined: 2011-11-23 + + *John Paul Adrian GlaubitzCommits: 2Joined: 2016-11-27 *Hideki IkedaCommits: 2Joined: 2014-06-25 - - *Takashi NakamotoCommits: 2Joined: 2011-08-28 *Daniel HerdeCommits: 2Joined: 2012-08-09 + + *Edmund WongCommits: 2Joined: 2017-01-16 + *Alexey VlasovCommits: 2Joined: 2017-04-12 + + *Johann MessnerCommits: 2Joined: 2012-08-28 - - *Nadav VinikCommits: 2Joined: 2010-10-21 + + *Bisal NayalCommits: 2Joined: 2014-05-07 @@ -3824,13 +3846,13 @@ *Nurhak ALTINCommits: 1Joined: 2016-05-01 - - *Goran RakicCommits: 1Joined: 2013-03-30 + + - *Atef haresCommits: 1Joined: 2017-03-12 + *Olivier RCommits: 1Joined: 2017-05-02 *Ross BurtonCommits: 1Joined: 2012-04-18 @@ -3838,11 +3860,11 @@ *bansan85Commits: 1Joined: 2016-12-21 - - *Martin BrownCommits: 1Joined: 2013-02-23 + + *Philipp KaluzaCommits: 1Joined: 2012-10-21 @@ -3852,11 +3874,11 @@ *Rich WarehamCommits: 1Joined: 2012-01-12 - - *Christina AccioneCommits: 1Joined: 2016-11-22 + + *Swachhand LokhandeCommits: 1Joined: 2015-03-07 @@ -3866,15 +3888,18 @@ *Ruggero CyrilleCommits: 1Joined: 2014-10-18 - - *Pádraig BradyCommits: 1Joined: 2011-10-21 + + *Foo Lai ChooCommits: 1Joined: 2014-11-26 + *Atef haresCommits: 1Joined: 2017-03-12 + + *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 @@ -3928,16 +3953,19 @@ *thvalloisCommits: 1Joined: 2017-01-03 + *Gabriel HerreraCommits: 1Joined: 2017-04-05 + + *Robin KumarCommits: 1Joined: 2014-06-17 *Neven ĆosićCommits: 1Joined: 2012-10-08 + + *Lennart PoetteringCommits: 1Joined: 2014-10-09 - - *Zhengqiang WangCommits: 1Joined: 2016-06-02 @@ -3947,11 +3975,11 @@ *Krunoslav ŠebetićCommits: 1Joined: 2016-03-10 + + *Benjamin OtteCommits: 1Joined: 2013-06-15 - - *Nathan WellsCommits: 1Joined: 2015-09-03 @@ -3961,11 +3989,11 @@ *Dobra GaborCommits: 1Joined: 2015-04-02 + + *Naser SharifiCommits: 1Joined: 2012-11-26 - - *Shreyansh GandhiCommits: 1Joined: 2014-06-10 @@ -3975,11 +4003,11 @@ *Mathias SuppCommits: 1Joined: 2014-02-25 + + *Eric S. RaymondCommits: 1Joined: 2013-06-07 - - *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 @@ -3989,11 +4017,11 @@ *Rafael CabralCommits: 1Joined: 2011-03-31 + + *tinderboxCommits: 1Joined: 2013-04-11 - - *pgajdosCommits: 1Joined: 2011-01-31 @@ -4003,11 +4031,11 @@ *Saurav SachidanandCommits: 1Joined: 2017-01-17 + + *Simon WilperCommits: 1Joined: 2015-01-24 - - *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 @@ -4017,11 +4045,11 @@ *Javier CatalaCommits: 1Joined: 2012-04-26 + + *Apachev IvanCommits: 1Joined: 2016-03-08 - - *n5xgdhCommits: 1Joined: 2016-12-04 @@ -4031,11 +4059,11 @@ *yjw9012Commits: 1Joined: 2013-12-30 + + *armijnCommits: 1Joined: 2010-12-30 - - *Ondřej SmržCommits: 1Joined: 2013-03-10 @@ -4045,13 +4073,10 @@ *massinissaHamidiCommits: 1Joined: 2015-05-07 - - *James ClarkeCommits: 1Joined: 2016-08-05 - - *Andor ErtseyCommits: 1Joined: 2011-09-04 + *James ClarkeCommits: 1Joined: 2016-08-05 *Patrick LubyCommits: 1Joined: 2015-10-04 @@ -4295,16 +4320,13 @@ *rpmbuildCommits: 1Joined: 2016-08-15 - *Bernhard WidlCommits: 1Joined: 2017-03-27 - - *ZirkCommits: 1Joined: 2015-01-07 - - *Kevin PengCommits: 1Joined: 2012-07-20 + + *Paolo PozzanCommits: 1Joined: 2010-12-19 @@ -4314,11 +4336,11 @@ *Ward van WanrooijCommits: 1Joined: 2012-06-25 - - *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 + + *Pierre SauterCommits: 1Joined: 2015-12-01 @@ -4328,11 +4350,11 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 - - *Gábor NyersCommits: 1Joined: 2013-03-02 + + *Fabio BioccettiCommits: 1Joined: 2016-10-21 @@ -4342,11 +4364,11 @@ *Tadele AssefaCommits: 1Joined: 2013-01-15 - - *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 + + *Martin LiškaCommits: 1Joined: 2014-03-26 @@ -4356,11 +4378,11 @@ *Шиповський РоманCommits: 1Joined: 2016-10-28 - - *Jose ManuelCommits: 1Joined: 2012-04-25 + + *Fernando PiraniCommits: 1Joined: 2015-08-04 @@ -4370,11 +4392,11 @@ *Vojta KoukalCommits: 1Joined: 2013-03-03 - - *PrashantCommits: 1Joined: 2016-05-17 + + *Chris CheneyCommits: 1Joined: 2011-04-27 @@ -4384,11 +4406,11 @@ *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 - - *liongoldCommits: 1Joined: 2016-11-21 + + *Mike GorseCommits: 1Joined: 2017-03-11 @@ -4398,11 +4420,11 @@ *ricardobottoCommits: 1Joined: 2013-05-18 - - *Guillaume SmahaCommits: 1Joined: 2016-04-14 + + *Gabriele PonzoCommits: 1Joined: 2016-01-29 @@ -4412,11 +4434,11 @@ *Danny BrownCommits: 1Joined: 2013-09-18 - - *David PenzesCommits: 1Joined: 2011-06-14 + + *Manas JoshiCommits: 1Joined: 2014-03-17 @@ -4426,11 +4448,11 @@ *sagarCommits: 1Joined: 2012-09-15 - - *Karan DesaiCommits: 1Joined: 2012-04-01 + + *Steven MeyerCommits: 1Joined: 2013-03-13 @@ -4440,10 +4462,13 @@ *ccshellerCommits: 1Joined: 2015-10-08 + + *Dona HertelCommits: 1Joined: 2011-04-14 + - *Dona HertelCommits: 1Joined: 2011-04-14 + *blendergeekCommits: 1Joined: 2017-04-08 *Lukas RöllinCommits: 1Joined: 2017-02-06 @@ -4499,6 +4524,9 @@ + *Werner TietzCommits: 1Joined: 2017-04-11 + + *Gleb MishchenkoCommits: 1Joined: 2016-03-22 @@ -4507,11 +4535,11 @@ *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 + + *Ayantha RandikaCommits: 1Joined: 2014-01-23 - - *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 @@ -4521,11 +4549,11 @@ *Dan CorneanuCommits: 1Joined: 2010-12-29 + + *PeterCommits: 1Joined: 2016-05-03 - - *Joseph BrownCommits: 1Joined: 2012-08-14 @@ -4535,11 +4563,11 @@ *Pavel KacerCommits: 1Joined: 2013-04-11 + + *Fernando GovernatoreCommits: 1Joined: 2012-02-25 - - *Christophe StrobbeCommits: 1Joined: 2011-08-09 @@ -4549,11 +4577,11 @@ *Dag WieersCommits: 1Joined: 2016-03-13 + + *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 - - *Olivier PlotonCommits: 1Joined: 2012-12-12 @@ -4563,11 +4591,11 @@ *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 + + *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 - - *Justn LavoieCommits: 1Joined: 2016-12-30 @@ -4577,11 +4605,11 @@ *James Michael DuPontCommits: 1Joined: 2013-08-30 + + *Reem.ALotaibiCommits: 1Joined: 2013-07-25 - - *dbarisakkurtCommits: 1Joined: 2012-02-02 @@ -4591,11 +4619,11 @@ *DaveCommits: 1Joined: 2012-08-23 + + *xjclCommits: 1Joined: 2014-08-04 - - *Serge KrotCommits: 1Joined: 2015-10-25 @@ -4605,11 +4633,11 @@ *Daniel MihalyiCommits: 1Joined: 2012-02-06 + + *Quentin PradetCommits: 1Joined: 2012-12-21 - - *Adrià Cereto MassaguéCommits: 1Joined: 2010-10-26 @@ -4619,11 +4647,11 @@ *Christopher HotchkissCommits: 1Joined: 2013-02-15 + + *Slávek BankoCommits: 1Joined: 2015-10-10 - - *HaidongWuCommits: 1Joined: 2016-03-09 @@ -4633,32 +4661,43 @@ *Chen ZuoJunCommits: 1Joined: 2012-10-08 + + + + *Catherine VanceCommits: 1Joined: 2017-04-17 + *Louis PossozCommits: 1Joined: 2012-10-26 - - *sunwebCommits: 1Joined: 2016-04-08 *Joan ParaisoCommits: 1Joined: 2015-09-25 + + *Jiri BlechaCommits: 1Joined: 2013-03-02 + *Andor ErtseyCommits: 1Joined: 2011-09-04 + + *Serg BormantCommits: 1Joined: 2011-11-28 - - *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 + + *Sujith SudhakaranCommits: 1Joined: 2015-04-07 + *James RaykowskiCommits: 1Joined: 2017-04-16 + + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 @@ -5033,7 +5072,7 @@ *galbarnissanCommits: 1Joined: 2014-12-03 - + @@ -5076,6 +5115,9 @@ + *Laurent Balland-PoirierCommits: 2Joined: 2015-11-19 + + *David TardonCommits: 2Joined: 2012-08-20 @@ -5084,11 +5126,11 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 + + *Edmund LaugassonCommits: 1Joined: 2015-01-07 - - *Michael MuenchCommits: 1Joined: 2011-06-09 @@ -5098,9 +5140,6 @@ *Michael KovarikCommits: 1Joined: 2015-01-07 - - *Laurent Balland-PoirierCommits: 1Joined: 2015-11-19 - @@ -5654,7 +5693,7 @@ 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 @@ -5664,29 +5703,29 @@ 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 - 2537 individuals contributed: + 2547 individuals contributed: - + - K-j (7138) + K-j (7266) - Roczek, Dennis (7043) + Roczek, Dennis (7091) - Goncharuk, Lera (5350) + Goncharuk, Lera (5354) - Pierre-yves samyn (4226) + Pierre-yves samyn (4248) - Uroveits (4199) + Uroveits (4232) Tagezibot (3924) @@ -5695,7 +5734,7 @@ Tryon, Robinson (3712) - Gautier, Sophie (3084) + Gautier, Sophie (3086) @@ -5703,24 +5742,24 @@ (2915) - Balland-Poirier, Laurent (2242) + Hrbrgr (2391) - Jeanweber (2192) + Balland-Poirier, Laurent (2253) - Bielefeld, Rainer (2075) + Jeanweber (2196) - Hrbrgr (2053) + Bielefeld, Rainer (2075) Effenberger, Florian (1613) - Michaelsen, Björn (1514) + Michaelsen, Björn (1519) João Mac-Cormick (1505) @@ -5728,30 +5767,30 @@ - Marcpare (1383) + Marcpare (1388) Adailton (1203) - Mirek2 (1162) + Filmsi (1173) - Buzzatti Pacheco, Gustavo (1137) + Mirek2 (1162) - Filmsi (1133) + Buzzatti Pacheco, Gustavo (1137) - Haas, Uwe (1095) + GerryT (1099) - GerryT (1093) + Haas, Uwe (1095) - Kompilainenn (1004) + Kompilainenn (1010) @@ -5759,7 +5798,7 @@ Novak, Nino (976) - Ostrovsky, David (965) + Ostrovsky, David (968) Tom (926) @@ -5773,21 +5812,21 @@ Clement21.philippe (896) - Meeks, Michael (887) + Jayme Barrientos, Adolfo (892) - Hallot, Olivier (871) + Meeks, Michael (887) - Jayme Barrientos, Adolfo (870) + Hallot, Olivier (876) - Nouws, Cor (832) + Enoki (838) - Enoki (832) + Nouws, Cor (833) Teo91 (733) @@ -5812,24 +5851,24 @@ - Hibagonsan (575) + Hibagonsan (584) Hazel (559) - ChristophNoack (549) + LibreOfficiant (551) - Paulo (546) + ChristophNoack (549) - Jmpierre (529) + Paulo (546) - LibreOfficiant (524) + Jmpierre (544) Knorr, Stefan (521) @@ -5846,7 +5885,7 @@ Reisinger, Florian (490) - Rathke, Eike (474) + Rathke, Eike (481) Mladek, Petr (450) @@ -5860,24 +5899,24 @@ Eskroni (437) - Rmfaile (436) + Lohmaier, Christian (436) - RobertG (435) + Raulpacheco (436) - Lohmaier, Christian (430) + Rmfaile (436) - Holešovský, Jan (425) + RobertG (435) - Foote, V Stuart (425) + Holešovský, Jan (426) - Raulpacheco (420) + Foote, V Stuart (425) @@ -5891,25 +5930,28 @@ Luz Coelho, Rogério (409) - Sefran (394) + Sefran (405) - Philips, Yousuf (393) + Philips, Yousuf (394) - Alexander Wilms (392) + X1sc0 (393) - Yoshida, Kohei (389) + Alexander Wilms (392) - McNamara, Caolán (386) + Yoshida, Kohei (389) + McNamara, Caolán (387) + + Foral (384) @@ -5918,11 +5960,11 @@ Emanuel Marcatinco (374) + + AndrasTimar (362) - - SteenRønnow (360) @@ -5930,46 +5972,43 @@ Tardon, David (359) - X1sc0 (356) - - Thiebaud, Norbert (341) - Mohrhard, Markus (338) + Mohrhard, Markus (339) - Pruegsanusak, Korrawit (330) + Beluga (337) - Stahl, Michael (330) + Stahl, Michael (334) - Volkerme (329) + Pruegsanusak, Korrawit (330) - Arranna (322) + Volkerme (329) - Sam m (315) + Henschel, Regina (328) - Beluga (313) + Arranna (322) - Veracape (310) + Sam m (317) - Heinzws (292) + Veracape (310) - Henschel, Regina (291) + Heinzws (292) Emanuel A. Marcatinco B. (290) @@ -5980,21 +6019,21 @@ - Mike.saunders (281) + Mike.saunders (285) - Thackert (276) + Thackert (277) Tseng, Cheng-Chia (272) - Epix (268) + Elcico (269) - Elcico (266) + Epix (268) Helen russian (266) @@ -6011,13 +6050,13 @@ Adrianoafonso (246) - Loic (240) + Lillqvist, Tor (243) - Steve (237) + Loic (240) - Lillqvist, Tor (234) + Steve (237) @@ -6045,7 +6084,7 @@ Jbfaure (211) - Kerwyn (206) + Kerwyn (211) @@ -6078,10 +6117,10 @@ - Vignoli, Italo (182) + Bergmann, Stephan (183) - Bergmann, Stephan (181) + Vignoli, Italo (182) Méixome, Antón (179) @@ -6154,14 +6193,17 @@ Óvári (140) - De Cuyper, Joren (138) + Tietze, Heiko (139) - Weissenbacher, Philipp (138) + De Cuyper, Joren (138) + Weissenbacher, Philipp (138) + + Heliojsf (137) @@ -6170,11 +6212,11 @@ Mamane, Lionel Elie (135) + + Norah (135) - - Filhocf (132) @@ -6182,9 +6224,6 @@ Lodahl (132) - Tietze, Heiko (131) - - Richteruwe (131) @@ -6196,32 +6235,32 @@ Nik (127) - Ikuya (125) + Ikuya (126) - Krackedpress (123) + Xystina (125) - RGB.ES (123) + Krackedpress (123) - Abe, Takeshi (123) + RGB.ES (123) - Trapezus (122) + Abe, Takeshi (123) - Jucasaca (121) + Shunesburg69 (122) - Shunesburg69 (121) + Trapezus (122) - Xystina (121) + Jucasaca (121) JohnSmith (120) @@ -6291,18 +6330,18 @@ Mantke, Andreas (103) - JZA (101) + Kevin, Suo (锁琨珑) (102) - Nemeth (101) + Pechlaner, Wolfgang (102) - Kevin, Suo (锁琨珑) (101) + JZA (101) - Pechlaner, Wolfgang (100) + Nemeth (101) Android272 (99) @@ -6339,28 +6378,39 @@ Frombenny (90) - Zeki (89) + Kosiorek, Bartosz (90) + Kara, Muhammet (89) + + + Zeki (89) + + Dan (88) Hertel, Jesper (88) + + Milos (87) Paulojose (87) - - Omori (86) + Nabet, Julien (85) + + + + KorrawitBot (84) @@ -6369,41 +6419,44 @@ Evy (83) + + Steve- - (83) + - Nabet, Julien (83) + Nogajun (82) - Steve- - (83) + JamesWalker (81) - Nogajun (82) + Gathoye, William (80) - JamesWalker (81) + 80686 (79) - 80686 (79) + KeithCu (79) - KeithCu (79) + Kitaygrad (79) MDDN (79) - Gathoye, William (79) + Xosé (78) - Xosé (78) + Fišeras, Aurimas (77) - Fišeras, Aurimas (77) + Chris-hoh (77) Albino (75) @@ -6420,18 +6473,18 @@ Emoreno (74) - Lbalbalba (74) + Jlv (74) - Chris-hoh (73) + Lbalbalba (74) - Kosiorek, Bartosz (73) + Castermans, Luc (72) - Castermans, Luc (72) + Franklin (72) Aury88 (71) @@ -6456,20 +6509,9 @@ - Kitaygrad (70) - - Horáček, Stanislav (70) - Jlv (69) - - - Kara, Muhammet (69) - - - - Malhassoun (69) @@ -6478,11 +6520,11 @@ Fábio Farias (68) + + Gghh (68) - - Donaldo (67) @@ -6492,27 +6534,24 @@ Karbasion, Bersam (65) - - StanG (65) - - Oipila (64) + StanG (65) - Kees538 (63) + Kees538 (64) - Kudelis, Rimas (63) + Oipila (64) - Sikeler (63) + Kudelis, Rimas (63) - Franklin (62) + Sikeler (63) Popa, Adrian Marius (62) @@ -6532,14 +6571,17 @@ Jlgrenar (60) - Neel, Daniel (58) + Monthoflibreoffice bot (59) - Loflex (58) + Neel, Daniel (58) + Loflex (58) + + Kukan, Matúš (58) @@ -6548,16 +6590,13 @@ Camillem (57) - - Davefilms (56) - - Glen.reesor (56) + Davefilms (56) - Monthoflibreoffice bot (56) + Glen.reesor (56) Ramones (56) @@ -6571,31 +6610,34 @@ Hunt, Andrzej (55) - Jrahemipour (55) + Köse, Gülşah (55) - Slacka (55) + Jrahemipour (55) - Cornell, Clayton (54) + Slacka (55) - Fanthomas (54) + Timur LOL (55) - Mahfiaz (54) + Cornell, Clayton (54) - Timur LOL (54) + Fanthomas (54) - Heben2 (53) + Mahfiaz (54) + Heben2 (53) + + Sunny2038 (53) @@ -6604,13 +6646,10 @@ ArnoldSchiller (51) - - Enio.gemmo (51) - - Köse, Gülşah (51) + Enio.gemmo (51) Helmar (51) @@ -6652,6 +6691,9 @@ + Bubli (47) + + Dagobert 78 (47) @@ -6660,9 +6702,6 @@ Buj Gelonch, Robert Antoni (47) - - Bubli (46) - @@ -6770,14 +6809,17 @@ RaducuG (37) - Danishka (36) + Teseu (37) - Patheticcockroach (36) + Danishka (36) + Patheticcockroach (36) + + Sci citation (36) @@ -6786,11 +6828,11 @@ Yan Pashkovsky (36) + + Liongold (35) - - Nora (35) @@ -6800,16 +6842,13 @@ Stalker08 (35) - - Subramanian, Muthu (35) - - Caco13 (34) + Subramanian, Muthu (35) - Teseu (34) + Caco13 (34) Corrius, Jesús (33) @@ -6879,16 +6918,19 @@ Jingtao, Yan (30) + Lendo (30) + + Njsg (30) Ptoye (30) + + Speck (30) - - Sherlock, Chris (30) @@ -6898,11 +6940,11 @@ Thardeck (30) + + Cida.Coltro (29) - - Darbe (29) @@ -6912,11 +6954,11 @@ Haaninjo (29) + + RodolfoRG (29) - - Серж (29) @@ -6926,25 +6968,25 @@ Arnaud versini (28) + + Bormant (28) - - Riemer, Philipp (28) - Jihui choi (28) + H (28) - Lendo (28) + Jihui choi (28) + + Sveinki (28) - - المسيكين (28) @@ -6954,11 +6996,11 @@ Marcos Paulo de Souza (27) + + Micm (27) - - Thuswaldner, Albert (27) @@ -6968,82 +7010,82 @@ Eresus (26) + + Ezeperez26 (26) - - Fanch (26) + Gurbetoğlu, Gökhan (26) + + Grandin, Noel (26) + + Linuxman (26) Hawkins, Nigel (26) - - PeppinoLib (26) Pirat Michi (26) + + Vaslav (26) Aidsoid (25) - - Roßmanith, Christina (25) Freddyrh (25) + + Sullivan, Gatlin (25) Lboccia (25) - - Manuel De Franceschi (25) Noelson (25) + + Freund, Matthias (25) Valdirbarbosa (25) - - Winniemiel05 (25) Elpapki (24) + + Gaianer (24) - Gurbetoğlu, Gökhan (24) - - - - Gérard24 (24) @@ -7052,11 +7094,11 @@ Nik vr (24) + + Olivier (24) - - PaoloPelloni (24) @@ -7066,11 +7108,11 @@ Hamurcu (23) + + Montané, Joan (23) - - Jstnlth (23) @@ -7080,11 +7122,11 @@ Schiavinatto (23) + + TaeWong (23) - - Team One (23) @@ -7094,11 +7136,11 @@ Youngman, Anthony W. (23) + + AnXh3L0 (22) - - Aphaia (22) @@ -7108,11 +7150,11 @@ Bjoern (22) + + Ponzo, Gabriele (22) - - HenryGR (22) @@ -7122,11 +7164,11 @@ Toxitom (22) + + Elmau (21) - - Jeppebundsgaard (21) @@ -7136,11 +7178,11 @@ Liusiqi43 (21) + + Lutch (21) - - Necdetyucel (21) @@ -7150,11 +7192,11 @@ WalterPape (21) + + Wayra (21) - - Bugmenot (20) @@ -7164,11 +7206,11 @@ HeinF (20) + + Icobgr (20) - - LLyaudet (20) @@ -7178,11 +7220,11 @@ Vdragon (20) + + Vmalep (20) - - XMatence (20) @@ -7192,16 +7234,13 @@ Zapata (20) - - Clarice Vigliazzi (19) - - Guateconexion (19) + Clarice Vigliazzi (19) - H (19) + Guateconexion (19) JaronBaron (19) @@ -7215,58 +7254,61 @@ Juergenfenn (19) + Kelemeng (19) + + Kentarch (19) Thumperward (19) + + + + Magee, Timothy (18) + Kłos, Szymon (18) - - Jstaerk (18) Narayan (18) + + Power, Noel (18) Richard (18) - - Sooth (18) UriHerrera (18) + + Vuhung (18) 林漢昌 (18) - - Akerbeltz (17) - Magee, Timothy (17) - - Chd (17) + + Craigo (17) - - Dlmoretz (17) @@ -7276,11 +7318,11 @@ Guilherme.vanz (17) + + Gulmorais (17) - - Monastirsky, Maxim (17) @@ -7290,11 +7332,11 @@ Taken (17) + + Yumakino (17) - - Беломир (17) @@ -7304,11 +7346,11 @@ Alexpikptz (16) + + Dhersh (16) - - Houbsi (16) @@ -7318,11 +7360,11 @@ Oweng (16) + + P.Guimberteau (16) - - PauGNU (16) @@ -7330,28 +7372,28 @@ Ristoi (16) + SophiaS (16) + + + + APerson (15) Akki95 (15) - - Andy98 (15) Bertob (15) + + Irmhild (15) - Kelemeng (15) - - - - Khlood Elsayed (15) @@ -7360,11 +7402,11 @@ Luctur (15) + + Miko (15) - - Naudy (15) @@ -7374,165 +7416,165 @@ Patriciasc (15) + + Raul.malea (15) - - + + Smrabelo (15) + Thorogood, Tom (15) Ulf hamburg (15) + + 暗影遺言 (15) Elrath (14) - - Fina (14) Guuml (14) + + Halencarjunior (14) Lfernandocarvalho (14) - - Librosaurus (14) Mderoucy (14) + + Rania (14) Reinsle (14) - - Royerjy (14) Smarquespt (14) + + Susobhang70 (14) Tamiliam (14) - - Testnoda (14) Thangamani-arun (14) + + Vipin121 (14) Akoscomp (13) - - Alrt84 (13) Alyssonware (13) + + Beuss (13) Cedric31 (13) - - Gallaecio (13) Glogowski, Jan-Marek (13) + + Funk, Juergen (13) Kadekilo (13) - - Leomota (13) Ljelly (13) + + Luc (13) Luked (13) - - Mabbb (13) Mihkel (13) + + Mortense (13) Odd123 (13) - - Pete Boyd (13) Kant, Pranav (13) + + S.Gecko (13) Samtuke (13) - - Sanyii (13) Simplicity Instinct (13) - - SophiaS (13) - + + ThierryM (13) - - Tnishiki (13) @@ -7542,138 +7584,138 @@ Vkkodali (13) + + Webmink (13) - - + + Alfabech (12) + AliIsingor (12) And471 (12) + + AustinW (12) Bhaskar (12) - - Cralin (12) Al-Otaibi, Faisal M. (12) + + Halan (12) Immanuelg (12) - - Godard, Laurent (12) Pcapeluto (12) + + Gupta, Rachit (12) Möller, Sören — spelled Soeren Moeller in some patches (12) - - Staticsafe (12) Veerh01 (12) + + 翼之靈歌 (12) Bryanquigley (11) - - Cdan (11) ChristopheS (11) + + Dajare (11) Ebraminio (11) - - Eduaraujo (11) Gokul, S (11) + + Kallecarl (11) Krabina (11) - - Luiz Henrique Natalino (11) MNeto (11) + + Marcuskgosi (11) NON (11) - - Johansson, Niklas (11) Nuernbergerj (11) + + PeeWee (11) Priyanka singh (11) - - Rogeniobelem (11) Salmaan (11) + + Raruenrom, Samphan (11) - Smrabelo (11) - - - - Sunk8 (11) @@ -7682,11 +7724,11 @@ Vrlivre (11) + + Zero0w (11) - - Admasonscottisha (10) @@ -7696,11 +7738,11 @@ Algotruneman (10) + + Bearon (10) - - Castagno, Giuseppe (10) @@ -7710,11 +7752,11 @@ Crolidge (10) + + Diginin (10) - - Eagles051387 (10) @@ -7724,277 +7766,277 @@ El7r (10) + + J.baer (10) - - + + Jdittrich (10) + Kadertarlan (10) Kirill NN (10) + + Linuxuser330250 (10) Lionlinux (10) - - Pearson, Timothy (10) Pinto, Marco A.G. (10) + + Chung, Elton (10) Mikalai (10) - - Mikeyy (10) Morvan (10) + + Nateyee (10) Otto (10) - - Revol (10) Ronja (10) + + Tatat (10) Tomg (10) - - Twstdude0to1 (10) User8192 (10) + + Wlenon (10) Al-Abdulrazzaq, Abdulmajeed (9) - - Agger (9) AtkinsSJ (9) + + Calisgarge (9) Camargo (9) - - Cnuss (9) Crazyskeggy (9) + + Dupreyb (9) Fatdf (9) - - Geeta (9) Gibi (9) + + GisbertFriege (9) Goranrakic (9) - - Ledure, Jean-Pierre (9) Jim-BobHarris (9) + + Jopsen (9) Jowyta (9) - - Kscanne (9) Lapetec (9) + + Lexeii (9) Mapper (9) - - Marco (9) Markharry08 (9) + + Meo (9) Msaffron (9) - - Ohnemax (9) Onting (9) + + Oprea.luci (9) Foley, Peter (9) - - Pixpray (9) Dricot, Lionel (9) + + Rogawa (9) Rpr (9) - - Spacebat (9) Therabi (9) + + Ttocsmij (9) Urdulizer (9) - - Woman99 (9) Zhangxiaofei (9) + + ميدو (9) Acbaird (8) - - Alexxed (8) AndreasL (8) + + Ausserirdischegesund (8) Cocofan (8) - - Cusiri (8) Dashohoxha (8) + + Dennisfrancis (8) DrDub (8) - - Ed Eyles (8) Elacheche (8) + + Horst (8) Israel Chaves (8) - - JR (8) - Jdittrich (8) - - Jrsiqueira (8) + + Jslozier (8) - - Hoffimann Mendes, Júlio (8) @@ -8004,11 +8046,11 @@ Kednar (8) + + Rietveld, Kristian (8) - - Lee (8) @@ -8018,11 +8060,11 @@ Leo.h.hildebrandt (8) + + Manj k (8) - - Mrmox2 (8) @@ -8030,100 +8072,108 @@ NightMonkey (8) + Osnola (8) + + + + Paulo.tavares (8) Peterpall (8) - - Ricardolau (8) Robwestein (8) + + Seomarketing221 (8) Thejack (8) - - Tibbylickle (8) Troumad (8) + + Vbkaisetsu (8) VlhOwn (8) - - Yakusha (8) Yostane (8) + + Kabatsayev, Ruslan (7) Alberthuddle1 (7) - - Andrea.soragna (7) Ashishku9888 (7) + + Bastik (7) Bjherbison (7) - - Bookman900 (7) Borim7 (7) + + Capiscuas (7) Chin Zee Yuen (7) - - Ciaran (7) Dado (7) + + Drose (7) Esbardu (7) - - + + GerhardW (7) + GuKK-Devel (7) + + Hunter, Kevin (7) @@ -8131,6 +8181,9 @@ Ingotian (7) + Johnny M (7) + + Johnrudelee (7) @@ -8181,19 +8234,16 @@ Opensas (7) - Osnola (7) - - Polte (7) RMCampos (7) - - Rantaro (7) + + Rodo (7) @@ -8203,11 +8253,11 @@ Simosx (7) - - Tonnysmile (7) + + Toxicbits (7) @@ -8217,11 +8267,11 @@ Wabuo (7) - - Woordje (7) + + صفا الفليج (7) @@ -8231,11 +8281,11 @@ Andreas ka (6) - - Armin Dänzer (6) + + Asian flower (6) @@ -8245,11 +8295,11 @@ Barend (6) - - Bobe (6) + + Bruno (6) @@ -8259,11 +8309,11 @@ ClausKofoed (6) - - Coypu (6) + + Wieërs, Dag (6) @@ -8273,11 +8323,11 @@ Ddxavier (6) - - Dfriedman (6) + + DotnetCarpenter (6) @@ -8287,11 +8337,11 @@ Dr.Faust (6) - - Druzhshchienschkyj (6) + + Edmond ciorba (6) @@ -8301,11 +8351,11 @@ Equis (6) - - FPhoenix (6) + + Fdekruijf (6) @@ -8315,11 +8365,11 @@ Fisiu (6) - - Florian heckl (6) + + Ghune (6) @@ -8329,11 +8379,11 @@ HdV (6) - - Hmoi (6) + + Hramrach (6) @@ -8343,11 +8393,11 @@ Iplaw67 (6) - - Timofeev, Ivan (6) + + James 00cat (6) @@ -8357,11 +8407,11 @@ Jonatoni (6) - - Jonyjony (6) + + Kawichi (6) @@ -8371,11 +8421,11 @@ Link Mauve (6) - - MaggieT (6) + + Manas (6) @@ -8385,11 +8435,11 @@ Mas (6) - - Mgommel (6) + + Mmetz (6) @@ -8399,11 +8449,11 @@ Öttl, Gerhard (6) - - Only you (6) + + Os cib (6) @@ -8413,11 +8463,11 @@ Pescetti (6) - - Peter Chastain (6) + + Peterhuang1kimo (6) @@ -8427,11 +8477,11 @@ Rotaj (6) - - Sn!py (6) + + Sukit (6) @@ -8441,11 +8491,11 @@ Thorwil (6) - - TiagoSantos (6) + + Tyree (6) @@ -8455,11 +8505,11 @@ Vgezer (6) - - Virthus (6) + + Wagner Augusto Silva Rodrigo (6) @@ -8469,11 +8519,11 @@ Tamás, Bunth (6) - - Wigglejimmy (6) + + Wiseacre (6) @@ -8483,11 +8533,11 @@ Adam Co (5) - - Alberthuddle (5) + + Albucasis (5) @@ -8497,11 +8547,11 @@ Alfalb (5) - - Alvarez, Octavio (5) + + Andrea Gelmini (5) @@ -8511,11 +8561,11 @@ Liwen, Fan (5) - - Art.Gilvanov (5) + + Sodora, August (5) @@ -8525,11 +8575,11 @@ Baumgarp (5) - - Belkacem77 (5) + + Bitigchi (5) @@ -8539,11 +8589,11 @@ Cray85 (5) - - Dejourdain (5) + + DickStomp (5) @@ -8553,11 +8603,11 @@ Elly15 (5) - - Fazbdillah (5) + + Florian.haftmann (5) @@ -8565,34 +8615,37 @@ GaboXandre (5) - GerhardW (5) - - - - Ggurley (5) Gpoussel (5) + + H.Sparks (5) Habib (5) - - HubPfalz (5) Hummer5354 (5) + + + + HwangTW (5) + Icyitscold (5) + Jaysponsored (5) + + JoeP (5) @@ -8604,16 +8657,13 @@ John.pratt (5) - Johnny M (5) - - KadlecOn (5) - - Kamataki (5) + + Kirti35 (5) @@ -8623,11 +8673,11 @@ Koji Annoura (5) - - LibreOfficeUser1 (5) + + Mak (5) @@ -8637,11 +8687,11 @@ Mgaster (5) - - Midimarcus (5) + + Laplante, Chris (5) @@ -8651,11 +8701,11 @@ Namikawa (5) - - OSVALDO LINS VIANA (5) + + Orcmid (5) @@ -8665,11 +8715,11 @@ Pepe (5) - - Pkoroau (5) + + Poeml (5) @@ -8679,15 +8729,18 @@ Rajesh (5) - - Raknor (5) + + Raulpaes (5) + RegisPerdreau (5) + + ReneEngelhard (5) @@ -8909,19 +8962,16 @@ Hossein (4) - HwangTW (4) - - ImperfectlyInformed (4) Jamesleader (4) - - Jiehong (4) + + Jjmeric (4) @@ -8931,11 +8981,11 @@ Jonata (4) - - Jones (4) + + Jooste (4) @@ -8945,11 +8995,11 @@ Le Bigot, Jean-Tiare (4) - - Lethargilistic (4) + + Loren.rogers (4) @@ -8959,11 +9009,11 @@ MPascual (4) - - Rumianowski, Maciej (4) + + Marco c (4) @@ -8973,11 +9023,11 @@ Mikedoherty ca (4) - - Rimkus, Modestas (4) + + Morgan greywolf (4) @@ -8987,11 +9037,11 @@ NGHLibreOffice (4) - - Offidocs (4) + + Orson69 (4) @@ -9001,15 +9051,18 @@ Paolopoz (4) - - Pegasus (4) + + Pgassmann (4) + Phillip.davis (4) + + Pjacquod (4) @@ -9374,14 +9427,17 @@ Jhbn (3) - Joe312213 (3) + Jo Cab (3) - Johannes Rohr (3) + Joe312213 (3) + Johannes Rohr (3) + + Joseroberto (3) @@ -9390,11 +9446,11 @@ Julianm (3) + + K Karthikeyan (3) - - Kbiondi (3) @@ -9404,11 +9460,11 @@ Kfogel (3) + + Khunshan (3) - - Kisamar7 (3) @@ -9418,11 +9474,11 @@ Kristof (3) + + Šebetić, Krunoslav (3) - - Kumartinkusingh08 (3) @@ -9432,11 +9488,11 @@ Lennoazevedo (3) + + LewisCowles (3) - - Libcub (3) @@ -9446,11 +9502,11 @@ LucaCappelletti (3) + + Hryniuk, Łukasz (3) - - Luuk (3) @@ -9460,11 +9516,11 @@ Marializ (3) + + Matteocam (3) - - Mattias (3) @@ -9474,11 +9530,11 @@ Measure for Measure (3) + + Melike (3) - - Mhoes (3) @@ -9488,11 +9544,11 @@ Michaelwheatland (3) + + Neookano (3) - - Nicolas.abel (3) @@ -9502,11 +9558,11 @@ Ragnarsson, Björgvin (3) + + Nloira (3) - - Noel Power (3) @@ -9516,11 +9572,11 @@ Steinbeiß, Simon (3) + + Ojeremyj (3) - - Oliverguenther (3) @@ -9530,9 +9586,6 @@ Penalvch (3) - - Phillip.davis (3) - @@ -9696,14 +9749,17 @@ Underdog (3) - Vikashkumar (3) + Urhixidur (3) - Vinctor (3) + Vikashkumar (3) + Vinctor (3) + + Vljubovic (3) @@ -9712,11 +9768,11 @@ Khoo, Wei Ming (3) + + WesPeacock (3) - - Williamendorson48 (3) @@ -9726,11 +9782,11 @@ Yukawa (3) + + Kolesnykov, Yurii (3) - - Yury Tarasievich (3) @@ -9740,11 +9796,11 @@ Zaxebo1 (3) + + §chinagl (3) - - ترجمان05 (3) @@ -9754,11 +9810,11 @@ AbbeyI19jfjc (2) + + AdamPrado8 (2) - - AdrianValdez4 (2) @@ -9768,11 +9824,11 @@ Adsha (2) + + Agarciamog (2) - - Aimee (2) @@ -9782,11 +9838,11 @@ Alan (2) + + Alg (2) - - AliceOliver7 (2) @@ -9796,11 +9852,11 @@ Alisha (2) + + AlmedaFrancis (2) - - AlphonsoNava4 (2) @@ -9810,11 +9866,11 @@ Amunizp (2) + + AmyCarney5 (2) - - Anasiic (2) @@ -9824,11 +9880,11 @@ AndrewKuhn7 (2) + + AndrewUlrich (2) - - Anipeter (2) @@ -9838,11 +9894,11 @@ Ankit (2) + + AnnabelMcmullen (2) - - AnnunciationGunn (2) @@ -9852,11 +9908,11 @@ AntoniaMead8 (2) + + Anurag121 (2) - - Anurag123 (2) @@ -9866,11 +9922,11 @@ Aplatypus (2) + + ApostlesSheldon (2) - - Armitadev (2) @@ -9880,11 +9936,11 @@ Ashaneba (2) + + Nakashian, Ashod (2) - - AvaGreer1 (2) @@ -9894,11 +9950,12 @@ BZT42 (2) + + + BernardMeza9 (2) - - Bernardi, Paolo (2) @@ -9908,11 +9965,11 @@ BirdRivas2 (2) + + BlazejJones1 (2) - - BlessedOrozco (2) @@ -9922,11 +9979,11 @@ Blushingorg (2) + + BoD (2) - - Bogcahi (2) @@ -9936,11 +9993,11 @@ Boldizsakawi7 (2) + + BoleslausSaunders (2) - - Bram (2) @@ -9950,11 +10007,11 @@ BridgetJarvis (2) + + Bruceschaller (2) - - BryantMclean6 (2) @@ -9964,11 +10021,11 @@ C0bb3r (2) + + C1pr1an (2) - - CallieMvzap (2) @@ -9978,12 +10035,11 @@ Cameron112 (2) + + CamilleMccarthy (2) - - - CandidoRutherford (2) @@ -9993,11 +10049,11 @@ Capri99 (2) + + CaraDang6 (2) - - Carlosr (2) @@ -10007,11 +10063,11 @@ CarrieDaniels (2) + + CarrollRico2 (2) - - Iacob, Catalin (2) @@ -10021,11 +10077,11 @@ Celsovsm (2) + + Cgrosdemange (2) - - Chabermu (2) @@ -10035,11 +10091,11 @@ ChanieSnow2 (2) + + Cheche (2) - - ChrzcicielCampbell (2) @@ -10049,11 +10105,11 @@ Cl-r (2) + + ClariceThorne (2) - - ClaudiaCramer (2) @@ -10063,11 +10119,11 @@ McDonald, Jason C. (2) + + Codingmicha (2) - - Colabo (2) @@ -10077,11 +10133,11 @@ Cookies01 (2) + + CoralieCarr7 (2) - - Crxssi (2) @@ -10091,11 +10147,11 @@ Cvk (2) + + CyrillicEscobedo (2) - - DaCaPo (2) @@ -10105,11 +10161,11 @@ Dairdev (2) + + DaisieQuigley (2) - - Damascene (2) @@ -10119,11 +10175,11 @@ Danese (2) + + Danthedev (2) - - DarellFarnell (2) @@ -10133,11 +10189,11 @@ David4you (2) + + Davidlamhauge (2) - - Bolen, David (2) @@ -10147,11 +10203,11 @@ Debugercz (2) + + DelinaRomano5 (2) - - DellePoole7 (2) @@ -10161,11 +10217,11 @@ Dennis' Spam test account (2) + + Denytracom (2) - - Devilcynthy (2) @@ -10175,11 +10231,11 @@ Retout, Tim (2) + + Django (2) - - DoctorBaxter7 (2) @@ -10189,11 +10245,11 @@ Domsau2 (2) + + DonaldBryant7 (2) - - DrDrack (2) @@ -10203,11 +10259,11 @@ Röllin, Lukas (2) + + Duiliodias (2) - - DukeDejesus7 (2) @@ -10217,11 +10273,11 @@ Ed (2) + + EdaFreeman3 (2) - - Eduardoarandah (2) @@ -10231,11 +10287,11 @@ Efs710920mex (2) + + Ejep520 (2) - - Sánchez, Bartolomé (2) @@ -10245,11 +10301,11 @@ ElisabethHolcomb (2) + + Elixir (2) - - EllieBowers3 (2) @@ -10259,11 +10315,11 @@ Eloquence (2) + + ElsieMacias7 (2) - - Emily (2) @@ -10273,11 +10329,11 @@ EnosKraus6 (2) + + Erdalronahi (2) - - Eren (2) @@ -10287,11 +10343,11 @@ Erikcht (2) + + Ersteinmal (2) - - ErwinHammond3 (2) @@ -10301,11 +10357,11 @@ EsterEngland7 (2) + + EthylCardenas (2) - - FannyTillman8 (2) @@ -10315,11 +10371,11 @@ Fcojavmc (2) + + Feldo (2) - - Ffinlo (2) @@ -10329,11 +10385,11 @@ FlorenceGrossman (2) + + FlorenceKim1 (2) - - Flyntyuei2 (2) @@ -10343,11 +10399,11 @@ FordRhodes5 (2) + + FranciscoByrne (2) - - FredaDowning7 (2) @@ -10357,11 +10413,11 @@ Garcia.marc (2) + + GayeRossetti (2) - - GeoDowning4 (2) @@ -10371,11 +10427,11 @@ GeorgiannaOchoa (2) + + Gerardgiraud (2) - - Gerpunzel (2) @@ -10385,11 +10441,11 @@ GiertrudaLehman (2) + + Girvinh (2) - - GiuseppOQH (2) @@ -10399,11 +10455,11 @@ Glococo (2) + + Gmealer (2) - - GraciaNorwood (2) @@ -10413,11 +10469,11 @@ Grim (2) + + Gualtiero (2) - - Guillem (2) @@ -10427,11 +10483,11 @@ HannaEspinoza (2) + + HardyBurris1 (2) - - HarleyWatkins (2) @@ -10441,11 +10497,11 @@ Hector (2) + + Hedaja (2) - - Hellpé (2) @@ -10455,11 +10511,11 @@ Hemmerling (2) + + Jensen, Henrik (2) - - HeriberDacomb (2) @@ -10469,11 +10525,11 @@ Herronrobertson (2) + + HershelPeterson (2) - - IIIYates8 (2) @@ -10483,11 +10539,11 @@ IkeVasquez9 (2) + + IlaRoberts4 (2) - - Imagin8or (2) @@ -10497,11 +10553,11 @@ IraLane4 (2) + + IrinaMccormack (2) - - IrvinBernard9 (2) @@ -10511,11 +10567,11 @@ IsaiahBuck5 (2) + + IsiahLackey2 (2) - - IvaRoach5 (2) @@ -10525,11 +10581,11 @@ JOIMER REYES (2) + + JacintaGibson (2) - - Adams, Jonathan (2) @@ -10539,11 +10595,11 @@ JanetSolberg (2) + + JanuariusStringer (2) - - Jasmins (2) @@ -10553,11 +10609,11 @@ JavierFernandez (2) + + JayStafford3 (2) - - Jcentel (2) @@ -10567,11 +10623,11 @@ Jeraldinesewell (2) + + JesseBHXEmrh (2) - - JettieGibson2 (2) @@ -10581,11 +10637,11 @@ Lingard, J. Graeme (2) + + Jiero (2) - - Jnicolas (2) @@ -10595,11 +10651,11 @@ Johnplay1 (2) + + JonesRichter8 (2) - - Jowenshaw (2) @@ -10609,11 +10665,11 @@ Jstaniek (2) + + JudasPeoples9 (2) - - JudasPritchard (2) @@ -10623,810 +10679,810 @@ Jumoun (2) + + JustinaEldridge (2) - - K.euser (2) + Kabe (2) + + Kamran Mackey (2) + + Karakartala (2) KarkGunn4 (2) - - Karolus (2) Kasos (2) + + Kazuyuki Yoshimura (2) Keepiledar (2) - - KeithC (2) Khokkanen (2) + + KittyBauer5 (2) KlementynaMckinney (2) - - Kmr (2) KolbeKline1 (2) + + Kolorguild (2) Krauss (2) - - keshav, krishna (2) KroniK907 (2) + + KrystalMinchin (2) KsaweryDempsey (2) - - Kwilliams (2) L (2) + + LariaJohn3 (2) LeanaParks2 (2) - - LeilaniLattimor (2) LemuelHo1 (2) + + LemuelWerner5 (2) Lhcezar (2) - - LidaMasters1 (2) Lino (2) + + Liotier (2) Lliehu (2) - - LovisaKessler (2) Petrolekas, Luke (2) + + LubomyrWalden (2) LucretiLlb (2) - - Lukasjelinek (2) LynnForbes3 (2) + + Casalin, Matteo (2) Mărăşoiu, Mariana (2) - - MZNBelendndq (2) Ma83mit (2) + + MabelleStanley (2) MadisonDarnell (2) - - MagdaleneOneal (2) MaggieGray2 (2) + + MagnoliaParsons (2) Mangat veer sagar (2) - - Manu.unni (2) MarMai (2) + + Bessières, Marc (2) MarchCourtney (2) - - Marcinz (2) Marco74 (2) + + MargeretRiley (2) MargeryThorpe (2) - - MarillaMarsh7 (2) Marius (2) + + Markcooper (2) Marric (2) - - MartaRollins2 (2) MarthaBright4 (2) + + MartinPC (2) MateuszDominguez (2) - - Matt 51 (2) MattieSchleinit (2) + + Mazuritz (2) Mbemidio (2) - - MercedesDelatorre (2) Merchantbusiness (2) + + Kepplinger, Martin (2) MerleGlass6 (2) - - Mesutkullar (2) Mgiri (2) + + Michaelx (2) Michel Gagnon (2) - - Michiel (2) MikeyZ (2) + + MinaHuggins7 (2) Mind4z (2) - - MinervaLuna8 (2) Mitcoes (2) + + Mjkopp (2) Mklever (2) - - Lechner, Marco (2) Mloiseleur (2) + + Mnalima (2) Mnsoto (2) - - Mordocai (2) MorganJohnstone (2) + + Rugiero, Mario (2) Msmac02 (2) - - Mst0 (2) Mttza1 (2) + + Musicstave (2) Nathansen, Martin (2) - - Mzalewski (2) Nacerix (2) + + Narcisgarcia (2) NealEspinoza6 (2) - - Nestor (2) NettaHurd9 (2) + + NettieParra1 (2) NewtonZuniga9 (2) - - Nishino, Daisuke (2) NicholasLanier (2) + + Nickk (2) Christener, Nicolas (2) - - NinaLam6 (2) Noirin (2) + + NoricumArthur (2) NorrisAndersen (2) - - NovemberVogel (2) Nsharifi (2) + + Nuclearbob (2) OUPS (2) - - Oashnic (2) Office2016 (2) + + Oiaohm (2) OlaPost6 (2) - - OlieBooth3 (2) OlivierC (2) + + OnopriyBrandon (2) OrlandoArellano (2) - - OscarMeredith (2) Pascaje (2) + + Percherie (2) PercherskySanford (2) - - Senna Tschudin, Peter (2) Pgraber (2) + + Phil.davis (2) Szelat, Phillip (2) - - Pierre (2) Pitonyak (2) + + Pkst (2) PolishHungarianSharp (2) - - Posterboy (2) PragueBergman (2) + + Pulsifer (2) R.Yu. (2) - - Rahul050 (2) Rbecke (2) + + ReaganBaudin (2) ReeseShepherd (2) - - ReginaldMcgraw (2) RenniePrescott (2) + + RetaStern5 (2) RhodaMackey3 (2) - - RiceBurger3 (2) Rmarquardt (2) + + Roadrunner (2) Rogerlee (2) - - RollandHannah (2) RosaliaFair4 (2) + + RosalinBlaubaum (2) RosannaPaul7 (2) - - RosariaLampungm (2) RoyFokker (2) + + RoyShelton7 (2) Royal420 (2) - - Ryan (2) Sagar.libo (2) + + Sahasranaman M S (2) Sam888 (2) - - SamBenavides5 (2) Sankarshan (2) + + SavinaShaffer (2) Bosio, Santiago (2) - - Seanyoung (2) SebastianNorth (2) + + Sebutler (2) Sergwish (2) - - Sfeuser (2) Sgrotz (2) + + Shaforostoff (2) Shankar (2) - - Shaun.schutte (2) Shounmark707 (2) + + SidneyArredondo (2) Silwol (2) - - Simplecontrast (2) SlavicNapier8 (2) + + Kasztenny, Adam (2) Soothsilver (2) - - Sotrud nik (2) Spledger (2) + + Sshelagh (2) Ssorgatem (2) - - StaciBorthwick (2) Stappers (2) + + Weiberg, Stefan (2) Stephan66 (2) - - Stevesmith (2) Stuarta0 (2) + + Sturm (2) Sungkhum (2) - - Superurbi (2) SusanSwain3 (2) + + Sven.fischer.de (2) Sydbarrett74 (2) - - Synanceia (Pierre) (2) Syntaxerrormmm (2) + + Tauon (2) Techal (2) - - Teelittle (2) TeenaWilburn (2) + + TeresaMacias3 (2) Teresavillegas1 (2) - - TerraShears (2) TheaGallardo8 (2) + + TheodoseyPeralta (2) TheophilusHess (2) - - Thomase (2) Thomeck (2) + + Thorongil (2) Tim1075 (2) - - Timeshifter (2) TimothyChilds (2) + + TomaMora8 (2) Tomkeb (2) - - Tomrobert87 (2) TraciKQAZnsqjho (2) + + TressieCulver (2) Tsimonq2 (2) - - Isnard, Timothée (2) Tux40000 (2) + + Unknown 32 (2) - Urhixidur (2) - - - - Usik64 (2) @@ -11435,11 +11491,11 @@ VanHogan7 (2) + + Dhall, Varun (2) - - VasylynaKendall (2) @@ -11449,11 +11505,11 @@ VernitaDonley (2) + + VeronaXiong3 (2) - - VeronicaGrimes (2) @@ -11463,11 +11519,11 @@ Viper550 (2) + + VirginArredondo (2) - - VladimirBassett (2) @@ -11477,11 +11533,11 @@ VladislavA (2) + + Volker (2) - - VolodymyraGagnon (2) @@ -11491,11 +11547,11 @@ WaclawaSavage (2) + + WalentynaPatrick (2) - - WallaceSolano (2) @@ -11505,11 +11561,11 @@ WashingtonOakley (2) + + Watermelons (2) - - WeronikaKeene (2) @@ -11519,11 +11575,11 @@ WilhelminaEaton (2) + + Williamjames5611 (2) - - Willsoncartlea (2) @@ -11533,11 +11589,11 @@ Wirelessben (2) + + Wkn (2) - - Wulei (2) @@ -11547,11 +11603,11 @@ Yaw (2) + + ZiriaKo (2) - - ZoraWinkler1 (2) @@ -11561,11 +11617,11 @@ 流星依旧 (2) + + 29jm (1) - - A H (1) @@ -11575,11 +11631,11 @@ Abde.jarti99 (1) + + Abdulaziz A Alayed (1) - - Absolute Garcinia (1) @@ -11589,11 +11645,11 @@ Kepenek, Ahmet Can (1) + + AdalberDesailll (1) - - Adlard.matthew (1) @@ -11603,11 +11659,11 @@ Aevora (1) + + Agradecido (1) - - Ainurshakirov (1) @@ -11617,11 +11673,11 @@ Alagris (1) + + Albrechtloh (1) - - Aleks (1) @@ -11631,11 +11687,11 @@ Alex38-68 (1) + + Alex80 (1) - - AlexF (1) @@ -11645,11 +11701,11 @@ Alexandrevicenzi (1) + + Alexandri (1) - - Chemichev, Alexey (1) @@ -11659,11 +11715,11 @@ Alexis Wilke (1) + + Alexnivan (1) - - Alexone (1) @@ -11673,11 +11729,11 @@ Ali (1) + + AlphonsDen (1) - - Alvaropg (1) @@ -11687,11 +11743,11 @@ Amacater (1) + + Amplesearch (1) - - Andarilhobotto (1) @@ -11701,11 +11757,11 @@ AndreasK (1) + + AndreasNeudecker (1) - - AndresZapata (1) @@ -11715,11 +11771,11 @@ Andriazdk2177 (1) + + AngelaRusconi (1) - - AngelinChisolm (1) @@ -11729,11 +11785,11 @@ Anjilajoli (1) + + Anjilojilo (1) - - AntoineVe (1) @@ -11743,11 +11799,11 @@ AntoniePonder (1) + + Anurag kanungo (1) - - Apfelsaft (1) @@ -11757,11 +11813,11 @@ ArdenRatcliff (1) + + Arekm (1) - - Ari (1) @@ -11771,11 +11827,11 @@ Arkonide (1) + + Armandos (1) - - Arnaudc (1) @@ -11785,11 +11841,11 @@ Teigseth, Arno (1) + + Artintal (1) - - Arulm (1) @@ -11799,11 +11855,11 @@ Asselbornmauro (1) + + Astalaseven (1) - - AstridGoo (1) @@ -11813,11 +11869,11 @@ Tang, Audrey (1) + + Augustina (1) - - AundreaPqf (1) @@ -11827,11 +11883,11 @@ Ayoooub (1) + + B3t (1) - - Bailiwick (1) @@ -11841,11 +11897,11 @@ Bami (1) + + Bandera (1) - - Le Garrec, Vincent (1) @@ -11855,11 +11911,11 @@ BarryLovegrove (1) + + Vincent, Babu (1) - - Bckurera (1) @@ -11869,11 +11925,11 @@ BernardHannafor (1) + + Bestdating (1) - - Beyoken (1) @@ -11883,11 +11939,11 @@ Bezzy (1) + + Bgloberman (1) - - Bgranados (1) @@ -11897,11 +11953,11 @@ Biofool (1) + + Bjossir (1) - - Bkg2018 (1) @@ -11911,11 +11967,11 @@ BlakeGartrell (1) + + BlancheBelstead (1) - - BlancheClopton (1) @@ -11925,11 +11981,11 @@ Bobmarley (1) + + Boboo (1) - - Bolo (1) @@ -11939,11 +11995,11 @@ Borowcm (1) + + Bortis (1) - - Sowden, Brad (1) @@ -11953,11 +12009,11 @@ BrentHawthorne (1) + + BridgettC (1) - - Brinzing, Oliver (1) @@ -11967,11 +12023,11 @@ BryceBrassell (1) + + BryceMoorhouse (1) - - Budo (1) @@ -11981,11 +12037,11 @@ Bureken (1) + + Burger.ga (1) - - Bzsolt (1) @@ -11995,11 +12051,11 @@ CalebSommer (1) + + CalebWgypcu (1) - - CamillaPena (1) @@ -12009,11 +12065,11 @@ CandelariaJageu (1) + + Capira (1) - - CarloASilva (1) @@ -12023,11 +12079,11 @@ Carlos.gilaranz (1) + + CarlotaF42 (1) - - Castarco (1) @@ -12037,11 +12093,11 @@ Cesera (1) + + ChantalWalker (1) - - Charles12 (1) @@ -12051,11 +12107,11 @@ Chatjoe (1) + + Chmilblick (1) - - Beauzée-Luyssen, Hugo (1) @@ -12065,11 +12121,11 @@ Christoph.herzog (1) + + Chrlutz (1) - - Ciampix (1) @@ -12079,11 +12135,11 @@ Ciriaco (1) + + Classieur (1) - - Cleitongalvao (1) @@ -12093,11 +12149,11 @@ CletaValentino (1) + + Clint7236c (1) - - Comcasthelp (1) @@ -12107,11 +12163,11 @@ Cora17 (1) + + Corsolibreoffice (1) - - Cosmopolitan (1) @@ -12121,11 +12177,11 @@ Cpinedar (1) + + Cpmipn (1) - - Craigsbookclub (1) @@ -12135,443 +12191,454 @@ Csongorhalmai (1) + + + + Css17 (1) + Cœur, Antoine (1) - - DaisieDavison (1) DamionThorp (1) + + Danichocolate (1) Danielt998 (1) - - Dar18proore (1) Darcy0243gd (1) + + DarylAlcantar (1) DarylBoot (1) - - Datesmen (1) Dave (1) + + Davidmichel (1) DawnOgles (1) - - Dbojan (1) Di Marco, Daniel (1) + + DeShark (1) DeannaQuaife (1) - - DeanneKer (1) Ray, Debarshi (1) + + DebbraWingfield (1) DeborahW18 (1) - - DelbertChristie (1) DelilahBock (1) + + Deva09 (1) Dezsiszabi (1) - - Kis-Ádám, László (1) Herde, Daniel (1) + + Dhiren (1) Dianasedlak (1) - - Kettner, Valentin (1) Do Nhu Vy (1) + + DocuFree (1) Dominiko (1) - - Dominuk (1) Donadel (1) + + DoreenDuell (1) Douglasm (1) - - Drizamanuber (1) Drlandi (1) + + Drtimwright (1) Dusek (1) - - Dxider (1) EEFElishaqjbzjy (1) + + EHGSammyevumvzq (1) EarnestLamaro (1) - - EarnestT57 (1) Echada (1) + + Edsonlead (1) Edz (1) - - Efcis (1) Efegurkan (1) + + Brill, Christoph (1) Ehenryb (1) - - ElahiMohammad (1) EleanoreC (1) + + Elisa0474wgwgq (1) Elliot1415 (1) - - ElmaWalcott (1) Elshize (1) + + Emyr (1) Enesates (1) - - Ennael (1) Erasmo (1) + + Erdemdemirkapi (1) Eric (1) - - ErickRijoJr (1) Ernsttremel (1) + + Roux, Elie (1) Esben aaberg (1) - - EstebanUD (1) EstelaAWTxiu (1) + + Evelyn3794 (1) Evfool (1) - - EyalRozenberg (1) FMA (1) + + Factooor (1) Faiq Aminuddin (1) - - Falatooni (1) Falcao (1) + + Farhaf (1) Farhank (1) - - Farlfr (1) FarzanehSarafraz (1) + + Faseeh1218 (1) FelipaSwan (1) - - Fenchi (1) Ferlodev (1) + + FerminAndrade (1) Feyza (1) - - Fghj (1) Fgland (1) + + Flirtwomens (1) Foobar (1) - - Fourdollars (1) Francesco (1) + + Frangrie25 (1) Fred.th (1) - - Fredbenj24 (1) Manas Joshi (1) + + GabrielSwart (1) Gabrielezorzi (1) - - Garhitusqr (1) Gautrucdo (1) + + Bilotta, Giuseppe (1) Gcoelho (1) - - GeeZ (1) Gekacheka (1) + + Geoff newson (1) Gerard (1) - - van Valkenhoef, Gert (1) Houston, Gary (1) + + Giancav (1) Gicmo (1) - - Gmeijssen (1) Gmolleda (1) + + Goldensgui (1) Gpmanrpi (1) - - Grahl (1) GrantCelley (1) + + Grass-tree (1) Hernandez, Gregg (1) - - Grover47Ywzdn (1) GroverYQVvwokac (1) + + + + Grzesiek a (1) + Gstein (1) Guhde (1) + + Guilhem (1) + @@ -13141,14 +13208,17 @@ Literacyglenys (1) - Liturgist (1) + Litishia (1) - Llalllal1 (1) + Liturgist (1) + Llalllal1 (1) + + Scheidt, Heiko (1) @@ -13157,11 +13227,11 @@ Lorne (1) + + Lovelawsoutlaws (1) - - Luca (1) @@ -13171,11 +13241,11 @@ Lucker1 (1) + + LudieNutter (1) - - Luiz Cláudio (1) @@ -13185,11 +13255,11 @@ LydiaDgxuysav (1) + + LyndonCastiglio (1) - - M.sacharewicz (1) @@ -13199,11 +13269,11 @@ MJW (1) + + Maahicool (1) - - Mabel7997eelu (1) @@ -13213,11 +13283,11 @@ Maemst (1) + + Magicienap (1) - - Magmag (1) @@ -13227,11 +13297,11 @@ Mahmudul (1) + + Maliuta (1) - - Manveru1986 (1) @@ -13241,11 +13311,11 @@ MarcelaHeffron (1) + + MarcoZ (1) - - Biscaro, Marco (1) @@ -13255,11 +13325,11 @@ Marcosalex (1) + + Marcosps (1) - - MargaretaNorthc (1) @@ -13269,11 +13339,11 @@ MarianaConnell (1) + + Mariano Gaudix (1) - - MarinaManess (1) @@ -13283,11 +13353,11 @@ Markcoomes (1) + + Markzog21 (1) - - MarlonMarcum (1) @@ -13297,11 +13367,11 @@ Marwan (1) + + MaryellenW31 (1) - - MarylynKu (1) @@ -13311,11 +13381,11 @@ Massao (1) + + Mastizada (1) - - Matsuura (1) @@ -13325,11 +13395,11 @@ Campanelli, Matteo (1) + + Matěj (1) - - Mau (1) @@ -13339,11 +13409,11 @@ Maxjf1 (1) + + Bechler, Moritz (1) - - Mdanrana0123 (1) @@ -13353,11 +13423,11 @@ Megan44Dgxg (1) + + Melikeyurtoglu (1) - - MelisaBroughton (1) @@ -13367,11 +13437,11 @@ Menturi (1) + + MeriMerideth (1) - - MeskoBalazs (1) @@ -13381,11 +13451,11 @@ Mhaehnel (1) + + Mhcrnl (1) - - Mhenriday (1) @@ -13395,11 +13465,11 @@ Michaelwood (1) + + Michka B (1) - - Midomidi2013 (1) @@ -13409,11 +13479,11 @@ Miguelverdu (1) + + Mikedorson (1) - - Mikolg (1) @@ -13423,11 +13493,11 @@ Milanbv (1) + + Miles (1) - - Minarja4 (1) @@ -13437,11 +13507,11 @@ MitchellP (1) + + Miurahr (1) - - Mixer (1) @@ -13451,11 +13521,11 @@ Mlager (1) + + Mmeof (1) - - Moberg (1) @@ -13465,11 +13535,11 @@ Mohammedzalta (1) + + Momo50 (1) - - Monikayadav (1) @@ -13479,11 +13549,11 @@ Muhammadsufyanzainalabidin (1) + + Mw (1) - - Myan (1) @@ -13493,11 +13563,11 @@ N3rd4i (1) + + NEOhidra (1) - - NNe8Lx2gc (1) @@ -13507,11 +13577,11 @@ Nanotron (1) + + Nattu (1) - - Ncaio (1) @@ -13521,11 +13591,11 @@ NellieSMWX (1) + + Neteler (1) - - Nevanos (1) @@ -13535,11 +13605,11 @@ Nickko (1) + + NiklasHor (1) - - Nilss (1) @@ -13549,11 +13619,11 @@ Nnino2 (1) + + Normac01 (1) - - Northwestfirestarters (1) @@ -13563,11 +13633,11 @@ Notafish (1) + + NotesTracker (1) - - Nouiurm (1) @@ -13577,985 +13647,986 @@ Nurohman (1) + + + + Naeil, Zoueidi (1) + OBMLorraine (1) - - Oclei (1) Oig (1) + + Oiouitt (1) Okusi (1) - - Olea (1) OliverHoffnung (1) + + Oliversmithusa3 (1) Omansmith (1) - - Omerta (1) Onurkucuk67 (1) + + Oosterkamp (1) Opestawon (1) - - Ophelia2399 (1) Orrd (1) + + Osoitz (1) Oui (1) - - Anderson, Owen (1) Esen, Özcan (1) + + Ozpoz (1) PBsoft (1) - - PPRShaywuttpocn (1) Pal, Pawan (1) + + Padenton (1) PamalaDorsch (1) - - Pankaj (1) Papesky (1) + + Passerpunt (1) Pastim (1) - - Patelumesh (1) PatriceMerrick (1) + + Paulmenzel (1) Paulolima (1) - - PearlFelton (1) PearlMoyazw (1) + + Pelambrera (1) PenelopHewlett (1) - - Nowee, Peter (1) Vorel, Petr (1) + + Pharmankur (1) Phb.nbnet.nb.ca (1) - - Pherjung (1) PhilDur (1) + + Philhart (1) PhilipTimms (1) - - Philippe43 (1) PhillippBethea (1) + + Phomes (1) Paraiso, Joan (1) - - Piero (1) PieterDeBruijn (1) + + Pietro.caballeri (1) Pilavi (1) - - Piratu (1) Piternoize (1) + + Pjotr (1) Pkavinda (1) - - Plastique (1) Plastovicka (1) + + Moscu, Alexandru (1) Poonama (1) - - PoppyHart (1) PopularOutcast (1) + + Por (1) PorfiriMansergh (1) - - PorterEncarnaci (1) Carter, Travis (1) + + Prosper (1) Psauthor (1) - - Psychicread531 (1) Vidhey Pv (1) + + QGBWinonajrdtpj (1) Illarionov, Arkadiy (1) - - Qiguo (1) Qokoqoko (1) + + Qtwallaert (1) Quick8130 (1) - - Quickbooktech (1) Qwe (1) + + R425075 (1) RafaelaTrudel (1) - - Rafealandrande (1) Rahuldeshmukh101 (1) + + Rainy (1) Ramonturner (1) - - Randolp1949 (1) RashadEsp (1) + + Ratias (1) Rcampbelllaos (1) - - Bevilacqua, Jean-Sébastien (1) RebeccaToscano (1) + + Recoverymail (1) Rettichschnidi (1) - - ReubenFow (1) RexRTEJnlzus (1) + + Rholler (1) Richardprins (1) - - Richdorg25 (1) RickieHpejt (1) + + Riessmi (1) Rif (1) - - Ringlerloje (1) Rion (1) + + Ritzema, Brent (1) Rizobix (1) - - Rizwan1218 (1) Robert Wetzlmayr (1) + + Robertkelly35 (1) Robineh (1) - - Robotdesoja (1) Robotdesojaa (1) + + Robustchao (1) RoccoAPIUqpuoia (1) - - Rockcows31 (1) Rockers (1) + + Rodney78 (1) RogelioTrost (1) - - Deshmukh, Rohit (1) Rojerdesoja (1) + + Rombert (1) Ron1 (1) - - Ronny (1) Roscoe5731 (1) + + Rosemarie (1) Rpott (1) - - Rsedak (1) RuleAndLine (1) + + Rvr (1) Ryho (1) - - ONODERA, Ryo (1) SallyMorales (1) + + Samanicute (1) Tygier, Sam (1) - - SamuelPoltpalin (1) Samuse (1) + + Sandeeps (1) Sanipache (1) - - Saracans (1) Sbar1 (1) + + Schrillesbunteshamburg (1) Scito (1) - - Scno (1) Sctenebro (1) + + SecondLifeGuerilla (1) Ak, Sedat (1) - - Senopen (1) ShannaCockrell (1) + + Shay030 (1) ShaynaMan (1) - - SherrieMarroqui (1) SherrillGabriel (1) + + SherylMillingto (1) Shore, Shimon (1) - - Shin en (1) Shortblack (1) + + Siegi (1) Silvestr (1) - - Simonbr (1) SimsimiUy (1) + + SiobhanLandale (1) Skierpage (1) - - SkyeCorreia (1) Smalalur (1) + + Socialmitchell (1) Sojatasingh (1) - - Son Sonson (1) SonyaBunnell (1) + + Sovichet (1) Sphericalhorse (1) - - Spreadsheetsorter (1) Spyros (1) + + Srijanani (1) Stewart75H (1) - - Stifinpark (1) Stonehubmn (1) + + Subhash (1) Supportex (1) - - SusieVeasley (1) Svalo (1) + + SvenHornung (1) Svend-ev (1) - - Sviola (1) Svtlichnijj (1) + + Sébastien C. (1) TAQSamueld (1) - - Talueses (1) Tanguy k (1) + + Thanakanok, Tantai (1) TaylorSlemp (1) - - TeganCreswick (1) Tegas (1) + + Testsflirt (1) The Magpie (1) - - ThePokehach (1) Thephilosoft (1) + + TheronAbdullah (1) Thom (1) - - Thor574 (1) ThudDriver (1) + + Tifroumi (1) Tigerbeard (1) - - Tilt (1) TimothyDempster (1) + + Tmongkol (1) Tomasdd (1) - - Viehmann, Thomas (1) Tpokorra (1) + + Transcend (1) TrevorPfe (1) - - Trondtr (1) Ttv20 (1) + + Tuliouel (1) Tuping (1) - - Tvallois (1) Jain, Umang (1) + + Udit Sharma (1) Shahid, Umair (1) - - Vincent, Brennan (1) UrmasD (1) + + UrsulaHorrell (1) Ushabtay (1) - - VIPSylar (1) VO Genesis (1) + + VPUJamikajklq (1) ValenciaS (1) - - Vandenoever (1) Veeven (1) + + Vera Cavalcante (1) VerenaGaskins (1) - - Verisonhelpline (1) VernaSchulze (1) + + VeroniqueGQAQ (1) VickyShick (1) - - Vidya002050 (1) Vincentvikram (1) + + Vinkas (1) Virus009 (1) - - WMZGiseleun (1) WOBFriedauk (1) + + WZEMonica (1) Wadrian (1) - - WandaSingletary (1) Waqas mirza6 (1) + + Wastl (1) Waynemcl (1) - - Webistrator (1) Wes (1) + + Westantenna (1) Wezchlebaty (1) - - Wilhelm (1) William Avery (1) + + Williewortel (1) Wilsonsim (1) - - Klausner, Thomas (1) Woulouf (1) + + XSXKristin (1) Baudin, Lucas (1) - - Xsdcfghjk (1) XtinaS (1) + + Xtrusia (1) Yangyiji (1) - - Yara (1) YaroslavRutledge (1) + + Yazu (1) Yeliztaneroglu (1) - - Desai, Yogesh (1) Yoshiharu Kawai (1) + + Yowbooks (1) Yufducv98 (1) - - YvanM (1) Yy y ja jp (1) + + Bölöny, Zsolt (1) ZAXHesterlpu (1) - - ZBMCallumbwire (1) ZakGregory (1) + + Zangune (1) Zizzle (1) - - 鄒延 (1) - + - - If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. diff -Nru libreoffice-5.3.3~rc1/sc/source/core/tool/parclass.cxx libreoffice-5.3.3~rc2/sc/source/core/tool/parclass.cxx --- libreoffice-5.3.3~rc1/sc/source/core/tool/parclass.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sc/source/core/tool/parclass.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -80,6 +80,7 @@ { ocCell, {{ Value, Reference }, 0 }}, { ocColumn, {{ Reference }, 0 }}, { ocColumns, {{ Reference }, 1 }}, + { ocConcat_MS, {{ Reference }, 1 }}, { ocCorrel, {{ ForceArray, ForceArray }, 0 }}, { ocCount, {{ Reference }, 1 }}, { ocCount2, {{ Reference }, 1 }}, @@ -195,6 +196,7 @@ { ocSumXMY2, {{ ForceArray, ForceArray }, 0 }}, { ocSheet, {{ Reference }, 0 }}, { ocSheets, {{ Reference }, 1 }}, + { ocTextJoin_MS, {{ Reference, Value, Reference }, 1 }}, { ocTrend, {{ Reference, Reference, Reference, Value }, 0 }}, { ocTrimMean, {{ Reference, Value }, 0 }}, { ocTTest, {{ ForceArray, ForceArray, Value, Value }, 0 }}, Binary files /tmp/tmpaTW297/ekRej2kfbv/libreoffice-5.3.3~rc1/src/0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz and /tmp/tmpaTW297/yfS6d60hOG/libreoffice-5.3.3~rc2/src/0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz differ diff -Nru libreoffice-5.3.3~rc1/src/fetch.log libreoffice-5.3.3~rc2/src/fetch.log --- libreoffice-5.3.3~rc1/src/fetch.log 2017-04-19 21:37:57.000000000 +0000 +++ libreoffice-5.3.3~rc2/src/fetch.log 2017-05-03 18:35:07.000000000 +0000 @@ -1,5 +1,5 @@ -Mi 19. Apr 23:08:21 CEST 2017 ---2017-04-19 23:08:21-- http://dev-www.libreoffice.org/src/libabw-0.1.1.tar.bz2 +Mi 3. Mai 20:05:08 CEST 2017 +--2017-05-03 20:05:08-- http://dev-www.libreoffice.org/src/libabw-0.1.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -8,9 +8,9 @@ 0K ..... 100% 239K=1,5s -2017-04-19 23:08:23 (239 KB/s) - »./libabw-0.1.1.tar.bz2« gespeichert [369311/369311] +2017-05-03 20:05:10 (239 KB/s) - »./libabw-0.1.1.tar.bz2« gespeichert [369311/369311] ---2017-04-19 23:08:23-- http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz +--2017-05-03 20:05:10-- http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -19,9 +19,9 @@ 0K .. 100% 239K=0,8s -2017-04-19 23:08:24 (239 KB/s) - »./commons-logging-1.2-src.tar.gz« gespeichert [188536/188536] +2017-05-03 20:05:11 (239 KB/s) - »./commons-logging-1.2-src.tar.gz« gespeichert [188536/188536] ---2017-04-19 23:08:24-- http://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz +--2017-05-03 20:05:11-- http://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -30,9 +30,9 @@ 0K ........ ....... 100% 239K=4,2s -2017-04-19 23:08:28 (239 KB/s) - »./apr-1.5.2.tar.gz« gespeichert [1031613/1031613] +2017-05-03 20:05:15 (239 KB/s) - »./apr-1.5.2.tar.gz« gespeichert [1031613/1031613] ---2017-04-19 23:08:28-- http://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz +--2017-05-03 20:05:15-- http://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -41,44 +41,44 @@ 0K ........ ..... 100% 240K=3,6s -2017-04-19 23:08:32 (240 KB/s) - »./apr-util-1.5.4.tar.gz« gespeichert [874044/874044] +2017-05-03 20:05:19 (240 KB/s) - »./apr-util-1.5.4.tar.gz« gespeichert [874044/874044] ---2017-04-19 23:08:32-- http://dev-www.libreoffice.org/src/boost_1_60_0.tar.bz2 +--2017-05-03 20:05:19-- http://dev-www.libreoffice.org/src/boost_1_60_0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 76553944 (73M) [application/x-bzip] Wird in »»./boost_1_60_0.tar.bz2«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 4% 236K 5m4s - 3072K ........ ........ ........ ........ ........ ........ 8% 239K 4m49s - 6144K ........ ........ ........ ........ ........ ........ 12% 240K 4m35s - 9216K ........ ........ ........ ........ ........ ........ 16% 239K 4m22s - 12288K ........ ........ ........ ........ ........ ........ 20% 240K 4m9s - 15360K ........ ........ ........ ........ ........ ........ 24% 239K 3m56s - 18432K ........ ........ ........ ........ ........ ........ 28% 232K 3m44s - 21504K ........ ........ ........ ........ ........ ........ 32% 248K 3m30s - 24576K ........ ........ ........ ........ ........ ........ 36% 239K 3m17s - 27648K ........ ........ ........ ........ ........ ........ 41% 239K 3m4s - 30720K ........ ........ ........ ........ ........ ........ 45% 239K 2m51s - 33792K ........ ........ ........ ........ ........ ........ 49% 240K 2m38s - 36864K ........ ........ ........ ........ ........ ........ 53% 239K 2m26s - 39936K ........ ........ ........ ........ ........ ........ 57% 239K 2m13s - 43008K ........ ........ ........ ........ ........ ........ 61% 240K 2m0s - 46080K ........ ........ ........ ........ ........ ........ 65% 239K 1m47s - 49152K ........ ........ ........ ........ ........ ........ 69% 239K 94s - 52224K ........ ........ ........ ........ ........ ........ 73% 239K 81s - 55296K ........ ........ ........ ........ ........ ........ 78% 235K 69s - 58368K ........ ........ ........ ........ ........ ........ 82% 239K 56s - 61440K ........ ........ ........ ........ ........ ........ 86% 239K 43s - 64512K ........ ........ ........ ........ ........ ........ 90% 232K 30s - 67584K ........ ........ ........ ........ ........ ........ 94% 248K 17s - 70656K ........ ........ ........ ........ ........ ........ 98% 233K 4s - 73728K ........ ........ 100% 240K=5m13s + 0K ........ ........ ........ ........ ........ ........ 4% 222K 5m23s + 3072K ........ ........ ........ ........ ........ ........ 8% 210K 5m18s + 6144K ........ ........ ........ ........ ........ ........ 12% 218K 5m3s + 9216K ........ ........ ........ ........ ........ ........ 16% 243K 4m41s + 12288K ........ ........ ........ ........ ........ ........ 20% 235K 4m24s + 15360K ........ ........ ........ ........ ........ ........ 24% 240K 4m8s + 18432K ........ ........ ........ ........ ........ ........ 28% 236K 3m53s + 21504K ........ ........ ........ ........ ........ ........ 32% 232K 3m39s + 24576K ........ ........ ........ ........ ........ ........ 36% 246K 3m24s + 27648K ........ ........ ........ ........ ........ ........ 41% 239K 3m10s + 30720K ........ ........ ........ ........ ........ ........ 45% 232K 2m57s + 33792K ........ ........ ........ ........ ........ ........ 49% 240K 2m43s + 36864K ........ ........ ........ ........ ........ ........ 53% 240K 2m30s + 39936K ........ ........ ........ ........ ........ ........ 57% 236K 2m16s + 43008K ........ ........ ........ ........ ........ ........ 61% 233K 2m3s + 46080K ........ ........ ........ ........ ........ ........ 65% 233K 1m50s + 49152K ........ ........ ........ ........ ........ ........ 69% 234K 97s + 52224K ........ ........ ........ ........ ........ ........ 73% 238K 83s + 55296K ........ ........ ........ ........ ........ ........ 78% 230K 70s + 58368K ........ ........ ........ ........ ........ ........ 82% 250K 57s + 61440K ........ ........ ........ ........ ........ ........ 86% 230K 44s + 64512K ........ ........ ........ ........ ........ ........ 90% 205K 31s + 67584K ........ ........ ........ ........ ........ ........ 94% 230K 18s + 70656K ........ ........ ........ ........ ........ ........ 98% 260K 4s + 73728K ........ ........ 100% 240K=5m20s -2017-04-19 23:13:45 (239 KB/s) - »./boost_1_60_0.tar.bz2« gespeichert [76553944/76553944] +2017-05-03 20:10:40 (233 KB/s) - »./boost_1_60_0.tar.bz2« gespeichert [76553944/76553944] ---2017-04-19 23:13:45-- http://dev-www.libreoffice.org/src/breakpad.zip +--2017-05-03 20:10:40-- http://dev-www.libreoffice.org/src/breakpad.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -86,14 +86,14 @@ Wird in »»./breakpad.zip«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 21% 236K 49s - 3072K ........ ........ ........ ........ ........ ........ 42% 240K 35s - 6144K ........ ........ ........ ........ ........ ........ 63% 239K 22s - 9216K ........ ........ ........ ........ ........ ........ 84% 240K 9s - 12288K ........ ........ ........ ........ ... 100% 240K=61s + 3072K ........ ........ ........ ........ ........ ........ 42% 199K 39s + 6144K ........ ........ ........ ........ ........ ........ 63% 240K 24s + 9216K ........ ........ ........ ........ ........ ........ 84% 237K 10s + 12288K ........ ........ ........ ........ ... 100% 228K=64s -2017-04-19 23:14:46 (239 KB/s) - »./breakpad.zip« gespeichert [14897049/14897049] +2017-05-03 20:11:45 (226 KB/s) - »./breakpad.zip« gespeichert [14897049/14897049] ---2017-04-19 23:14:46-- http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +--2017-05-03 20:11:45-- http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -102,20 +102,20 @@ 0K ........ ........ ........ ...... 100% 240K=8,1s -2017-04-19 23:14:55 (240 KB/s) - »./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip« gespeichert [1997625/1997625] +2017-05-03 20:11:54 (240 KB/s) - »./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip« gespeichert [1997625/1997625] ---2017-04-19 23:14:55-- http://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz +--2017-05-03 20:11:54-- http://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 782025 (764K) [application/x-gzip] Wird in »»./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz«« gespeichert. - 0K ........ ... 100% 239K=3,2s + 0K ........ ... 100% 222K=3,4s -2017-04-19 23:14:58 (239 KB/s) - »./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz« gespeichert [782025/782025] +2017-05-03 20:11:57 (222 KB/s) - »./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz« gespeichert [782025/782025] ---2017-04-19 23:14:58-- http://dev-www.libreoffice.org/src/23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz +--2017-05-03 20:11:57-- http://dev-www.libreoffice.org/src/23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -123,32 +123,32 @@ Wird in »»./23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 8% 236K 2m16s - 3072K ........ ........ ........ ........ ........ ........ 17% 239K 2m2s - 6144K ........ ........ ........ ........ ........ ........ 26% 240K 1m49s - 9216K ........ ........ ........ ........ ........ ........ 34% 239K 96s - 12288K ........ ........ ........ ........ ........ ........ 43% 239K 83s - 15360K ........ ........ ........ ........ ........ ........ 52% 239K 70s - 18432K ........ ........ ........ ........ ........ ........ 61% 240K 57s - 21504K ........ ........ ........ ........ ........ ........ 69% 239K 44s + 3072K ........ ........ ........ ........ ........ ........ 17% 221K 2m7s + 6144K ........ ........ ........ ........ ........ ........ 26% 227K 1m54s + 9216K ........ ........ ........ ........ ........ ........ 34% 245K 99s + 12288K ........ ........ ........ ........ ........ ........ 43% 235K 85s + 15360K ........ ........ ........ ........ ........ ........ 52% 240K 72s + 18432K ........ ........ ........ ........ ........ ........ 61% 240K 58s + 21504K ........ ........ ........ ........ ........ ........ 69% 231K 45s 24576K ........ ........ ........ ........ ........ ........ 78% 240K 32s - 27648K ........ ........ ........ ........ ........ ........ 87% 228K 19s - 30720K ........ ........ ........ ........ ........ ........ 96% 253K 6s - 33792K ........ ........ ..... 100% 240K=2m27s + 27648K ........ ........ ........ ........ ........ ........ 87% 231K 19s + 30720K ........ ........ ........ ........ ........ ........ 96% 234K 6s + 33792K ........ ........ ..... 100% 208K=2m31s -2017-04-19 23:17:25 (239 KB/s) - »./23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz« gespeichert [36040596/36040596] +2017-05-03 20:14:28 (233 KB/s) - »./23a0b2f0235431d35238df1d3a517fdb-cairo-1.14.6.tar.xz« gespeichert [36040596/36040596] ---2017-04-19 23:17:25-- http://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz +--2017-05-03 20:14:29-- http://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 878784 (858K) [application/x-gzip] Wird in »»./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz«« gespeichert. - 0K ........ ..... 100% 240K=3,6s + 0K ........ ..... 100% 220K=3,9s -2017-04-19 23:17:29 (240 KB/s) - »./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz« gespeichert [878784/878784] +2017-05-03 20:14:33 (220 KB/s) - »./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz« gespeichert [878784/878784] ---2017-04-19 23:17:29-- http://dev-www.libreoffice.org/src/libcdr-0.1.3.tar.bz2 +--2017-05-03 20:14:33-- http://dev-www.libreoffice.org/src/libcdr-0.1.3.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -157,9 +157,9 @@ 0K ........ ... 100% 239K=3,0s -2017-04-19 23:17:32 (239 KB/s) - »./libcdr-0.1.3.tar.bz2« gespeichert [731755/731755] +2017-05-03 20:14:36 (239 KB/s) - »./libcdr-0.1.3.tar.bz2« gespeichert [731755/731755] ---2017-04-19 23:17:32-- http://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz +--2017-05-03 20:14:36-- http://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -168,9 +168,9 @@ 0K ........ ........ ........ ........ .. 100% 234K=9,3s -2017-04-19 23:17:42 (234 KB/s) - »./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz« gespeichert [2241498/2241498] +2017-05-03 20:14:45 (234 KB/s) - »./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz« gespeichert [2241498/2241498] ---2017-04-19 23:17:42-- http://dev-www.libreoffice.org/src/libcmis-0.5.1.tar.gz +--2017-05-03 20:14:45-- http://dev-www.libreoffice.org/src/libcmis-0.5.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -179,9 +179,9 @@ 0K ........ ... 100% 239K=3,1s -2017-04-19 23:17:45 (239 KB/s) - »./libcmis-0.5.1.tar.gz« gespeichert [767701/767701] +2017-05-03 20:14:49 (239 KB/s) - »./libcmis-0.5.1.tar.gz« gespeichert [767701/767701] ---2017-04-19 23:17:45-- http://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +--2017-05-03 20:14:49-- http://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -189,24 +189,24 @@ Wird in »»./CoinMP-1.7.6.tgz«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 30% 236K 30s - 3072K ........ ........ ........ ........ ........ ........ 60% 239K 17s - 6144K ........ ........ ........ ........ ........ ........ 91% 235K 4s - 9216K ........ ..... 100% 255K=42s + 3072K ........ ........ ........ ........ ........ ........ 60% 233K 17s + 6144K ........ ........ ........ ........ ........ ........ 91% 225K 4s + 9216K ........ ..... 100% 311K=43s -2017-04-19 23:18:28 (238 KB/s) - »./CoinMP-1.7.6.tgz« gespeichert [10343849/10343849] +2017-05-03 20:15:31 (237 KB/s) - »./CoinMP-1.7.6.tgz« gespeichert [10343849/10343849] ---2017-04-19 23:18:28-- http://dev-www.libreoffice.org/src/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 +--2017-05-03 20:15:31-- http://dev-www.libreoffice.org/src/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 555291 (542K) [application/x-bzip] Wird in »»./4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2«« gespeichert. - 0K ........ 100% 221K=2,4s + 0K ........ 100% 238K=2,3s -2017-04-19 23:18:30 (221 KB/s) - »./4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2« gespeichert [555291/555291] +2017-05-03 20:15:34 (238 KB/s) - »./4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2« gespeichert [555291/555291] ---2017-04-19 23:18:30-- http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz +--2017-05-03 20:15:34-- http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -215,32 +215,32 @@ 0K ........ ...... 100% 239K=3,9s -2017-04-19 23:18:34 (239 KB/s) - »./cppunit-1.13.2.tar.gz« gespeichert [953596/953596] +2017-05-03 20:15:38 (239 KB/s) - »./cppunit-1.13.2.tar.gz« gespeichert [953596/953596] ---2017-04-19 23:18:34-- http://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt +--2017-05-03 20:15:38-- http://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 49659 (48K) [text/plain] Wird in »»./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt«« gespeichert. - 0K 100% 234K=0,2s + 0K 100% 237K=0,2s -2017-04-19 23:18:35 (234 KB/s) - »./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt« gespeichert [49659/49659] +2017-05-03 20:15:38 (237 KB/s) - »./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt« gespeichert [49659/49659] ---2017-04-19 23:18:35-- http://dev-www.libreoffice.org/src/curl-7.52.1.tar.gz +--2017-05-03 20:15:38-- http://dev-www.libreoffice.org/src/curl-7.52.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3504621 (3,3M) [application/x-gzip] Wird in »»./curl-7.52.1.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 89% 236K 1s - 3072K ..... 100% 240K=14s + 0K ........ ........ ........ ........ ........ ........ 89% 235K 1s + 3072K ..... 100% 228K=15s -2017-04-19 23:18:49 (236 KB/s) - »./curl-7.52.1.tar.gz« gespeichert [3504621/3504621] +2017-05-03 20:15:53 (235 KB/s) - »./curl-7.52.1.tar.gz« gespeichert [3504621/3504621] ---2017-04-19 23:18:49-- http://dev-www.libreoffice.org/src/libe-book-0.1.2.tar.bz2 +--2017-05-03 20:15:53-- http://dev-www.libreoffice.org/src/libe-book-0.1.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -249,9 +249,9 @@ 0K ....... 100% 239K=1,9s -2017-04-19 23:18:52 (239 KB/s) - »./libe-book-0.1.2.tar.bz2« gespeichert [465922/465922] +2017-05-03 20:15:56 (239 KB/s) - »./libe-book-0.1.2.tar.bz2« gespeichert [465922/465922] ---2017-04-19 23:18:52-- http://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +--2017-05-03 20:15:56-- http://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -260,20 +260,20 @@ 0K ....... 100% 239K=1,9s -2017-04-19 23:18:54 (239 KB/s) - »./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz« gespeichert [463264/463264] +2017-05-03 20:15:58 (239 KB/s) - »./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz« gespeichert [463264/463264] ---2017-04-19 23:18:54-- http://dev-www.libreoffice.org/src/libetonyek-0.1.6.tar.bz2 +--2017-05-03 20:15:58-- http://dev-www.libreoffice.org/src/libetonyek-0.1.6.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1696455 (1,6M) [application/x-bzip] Wird in »»./libetonyek-0.1.6.tar.bz2«« gespeichert. - 0K ........ ........ ........ . 100% 240K=6,9s + 0K ........ ........ ........ . 100% 239K=6,9s -2017-04-19 23:19:01 (240 KB/s) - »./libetonyek-0.1.6.tar.bz2« gespeichert [1696455/1696455] +2017-05-03 20:16:05 (239 KB/s) - »./libetonyek-0.1.6.tar.bz2« gespeichert [1696455/1696455] ---2017-04-19 23:19:01-- http://dev-www.libreoffice.org/src/expat-2.2.0.tar.bz2 +--2017-05-03 20:16:05-- http://dev-www.libreoffice.org/src/expat-2.2.0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -282,9 +282,9 @@ 0K ...... 100% 239K=1,7s -2017-04-19 23:19:03 (239 KB/s) - »./expat-2.2.0.tar.bz2« gespeichert [414352/414352] +2017-05-03 20:16:07 (239 KB/s) - »./expat-2.2.0.tar.bz2« gespeichert [414352/414352] ---2017-04-19 23:19:03-- http://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 +--2017-05-03 20:16:07-- http://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -292,24 +292,24 @@ Wird in »»./Firebird-3.0.0.32483-0.tar.bz2«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 32% 236K 27s - 3072K ........ ........ ........ ........ ........ ........ 65% 239K 13s - 6144K ........ ........ ........ ........ ........ ........ 98% 228K 0s - 9216K . 100% 10,6M=39s + 3072K ........ ........ ........ ........ ........ ........ 65% 240K 13s + 6144K ........ ........ ........ ........ ........ ........ 98% 240K 0s + 9216K . 100% 237K=39s -2017-04-19 23:19:42 (237 KB/s) - »./Firebird-3.0.0.32483-0.tar.bz2« gespeichert [9552809/9552809] +2017-05-03 20:16:46 (238 KB/s) - »./Firebird-3.0.0.32483-0.tar.bz2« gespeichert [9552809/9552809] ---2017-04-19 23:19:42-- http://dev-www.libreoffice.org/src/77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz +--2017-05-03 20:16:46-- http://dev-www.libreoffice.org/src/77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1548409 (1,5M) [application/x-gzip] Wird in »»./77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz«« gespeichert. - 0K ........ ........ ....... 100% 235K=6,4s + 0K ........ ........ ....... 100% 239K=6,3s -2017-04-19 23:19:49 (235 KB/s) - »./77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz« gespeichert [1548409/1548409] +2017-05-03 20:16:52 (239 KB/s) - »./77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz« gespeichert [1548409/1548409] ---2017-04-19 23:19:49-- http://dev-www.libreoffice.org/src/libfreehand-0.1.1.tar.bz2 +--2017-05-03 20:16:52-- http://dev-www.libreoffice.org/src/libfreehand-0.1.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -318,9 +318,9 @@ 0K ........ . 100% 239K=2,4s -2017-04-19 23:19:51 (239 KB/s) - »./libfreehand-0.1.1.tar.bz2« gespeichert [597212/597212] +2017-05-03 20:16:55 (239 KB/s) - »./libfreehand-0.1.1.tar.bz2« gespeichert [597212/597212] ---2017-04-19 23:19:51-- http://dev-www.libreoffice.org/src/dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2 +--2017-05-03 20:16:55-- http://dev-www.libreoffice.org/src/dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -329,9 +329,9 @@ 0K ........ ........ ...... 100% 240K=6,1s -2017-04-19 23:19:58 (240 KB/s) - »./dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2« gespeichert [1492568/1492568] +2017-05-03 20:17:01 (240 KB/s) - »./dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2« gespeichert [1492568/1492568] ---2017-04-19 23:19:58-- http://dev-www.libreoffice.org/src/3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip +--2017-05-03 20:17:01-- http://dev-www.libreoffice.org/src/3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -340,9 +340,9 @@ 0K ........ ...... 100% 239K=3,8s -2017-04-19 23:20:02 (239 KB/s) - »./3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip« gespeichert [925313/925313] +2017-05-03 20:17:05 (239 KB/s) - »./3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip« gespeichert [925313/925313] ---2017-04-19 23:20:02-- http://dev-www.libreoffice.org/src/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip +--2017-05-03 20:17:05-- http://dev-www.libreoffice.org/src/bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -350,22 +350,22 @@ Wird in »»./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 59% 236K 9s - 3072K ........ ........ ........ ........ 100% 239K=22s + 3072K ........ ........ ........ ........ 100% 240K=22s -2017-04-19 23:20:23 (237 KB/s) - »./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip« gespeichert [5290295/5290295] +2017-05-03 20:17:27 (237 KB/s) - »./bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip« gespeichert [5290295/5290295] ---2017-04-19 23:20:23-- http://dev-www.libreoffice.org/src/3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz +--2017-05-03 20:17:27-- http://dev-www.libreoffice.org/src/3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 155458 (152K) [application/x-gzip] Wird in »»./3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz«« gespeichert. - 0K .. 100% 239K=0,6s + 0K .. 100% 238K=0,6s -2017-04-19 23:20:24 (239 KB/s) - »./3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz« gespeichert [155458/155458] +2017-05-03 20:17:28 (238 KB/s) - »./3069842a88b8f40c6b83ad2850cda293-graphite2-minimal-1.3.9.tgz« gespeichert [155458/155458] ---2017-04-19 23:20:24-- http://dev-www.libreoffice.org/src/harfbuzz-1.3.2.tar.bz2 +--2017-05-03 20:17:28-- http://dev-www.libreoffice.org/src/harfbuzz-1.3.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -374,94 +374,94 @@ 0K ........ ........ .... 100% 239K=5,5s -2017-04-19 23:20:30 (239 KB/s) - »./harfbuzz-1.3.2.tar.bz2« gespeichert [1357986/1357986] +2017-05-03 20:17:34 (239 KB/s) - »./harfbuzz-1.3.2.tar.bz2« gespeichert [1357986/1357986] ---2017-04-19 23:20:30-- http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +--2017-05-03 20:17:34-- http://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3519470 (3,4M) [application/zip] Wird in »»./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 89% 230K 2s - 3072K ..... 100% 306K=15s + 0K ........ ........ ........ ........ ........ ........ 89% 235K 2s + 3072K ..... 100% 239K=15s -2017-04-19 23:20:45 (236 KB/s) - »./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip« gespeichert [3519470/3519470] +2017-05-03 20:17:48 (236 KB/s) - »./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip« gespeichert [3519470/3519470] ---2017-04-19 23:20:45-- http://dev-www.libreoffice.org/src/047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz +--2017-05-03 20:17:48-- http://dev-www.libreoffice.org/src/047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 699377 (683K) [application/x-gzip] Wird in »»./047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz«« gespeichert. - 0K ........ .. 100% 239K=2,9s + 0K ........ .. 100% 238K=2,9s -2017-04-19 23:20:48 (239 KB/s) - »./047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz« gespeichert [699377/699377] +2017-05-03 20:17:51 (238 KB/s) - »./047c3feb121261b76dc16cdb62f54483-hunspell-1.6.0.tar.gz« gespeichert [699377/699377] ---2017-04-19 23:20:48-- http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +--2017-05-03 20:17:51-- http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 638369 (623K) [application/x-gzip] Wird in »»./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz«« gespeichert. - 0K ........ . 100% 239K=2,6s + 0K ........ . 100% 212K=2,9s -2017-04-19 23:20:50 (239 KB/s) - »./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz« gespeichert [638369/638369] +2017-05-03 20:17:55 (212 KB/s) - »./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz« gespeichert [638369/638369] ---2017-04-19 23:20:50-- http://dev-www.libreoffice.org/src/1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz +--2017-05-03 20:17:55-- http://dev-www.libreoffice.org/src/1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 23366443 (22M) [application/x-gzip] Wird in »»./1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 13% 231K 85s - 3072K ........ ........ ........ ........ ........ ........ 26% 232K 72s - 6144K ........ ........ ........ ........ ........ ........ 40% 239K 58s + 0K ........ ........ ........ ........ ........ ........ 13% 236K 84s + 3072K ........ ........ ........ ........ ........ ........ 26% 227K 72s + 6144K ........ ........ ........ ........ ........ ........ 40% 233K 59s 9216K ........ ........ ........ ........ ........ ........ 53% 239K 45s - 12288K ........ ........ ........ ........ ........ ........ 67% 209K 32s - 15360K ........ ........ ........ ........ ........ ........ 80% 227K 19s - 18432K ........ ........ ........ ........ ........ ........ 94% 234K 6s - 21504K ........ ........ .... 100% 236K=99s + 12288K ........ ........ ........ ........ ........ ........ 67% 234K 32s + 15360K ........ ........ ........ ........ ........ ........ 80% 234K 19s + 18432K ........ ........ ........ ........ ........ ........ 94% 212K 6s + 21504K ........ ........ .... 100% 318K=97s -2017-04-19 23:22:30 (230 KB/s) - »./1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz« gespeichert [23366443/23366443] +2017-05-03 20:19:32 (234 KB/s) - »./1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz« gespeichert [23366443/23366443] ---2017-04-19 23:22:30-- http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +--2017-05-03 20:19:32-- http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 743031 (726K) [application/zip] Wird in »»./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip«« gespeichert. - 0K ........ ... 100% 225K=3,2s + 0K ........ ... 100% 240K=3,0s -2017-04-19 23:22:33 (225 KB/s) - »./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip« gespeichert [743031/743031] +2017-05-03 20:19:35 (240 KB/s) - »./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip« gespeichert [743031/743031] ---2017-04-19 23:22:33-- http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +--2017-05-03 20:19:35-- http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207563 (203K) [application/zip] Wird in »»./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip«« gespeichert. - 0K ... 100% 238K=0,9s + 0K ... 100% 239K=0,8s -2017-04-19 23:22:34 (238 KB/s) - »./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip« gespeichert [207563/207563] +2017-05-03 20:19:36 (239 KB/s) - »./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip« gespeichert [207563/207563] ---2017-04-19 23:22:34-- http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +--2017-05-03 20:19:36-- http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 427800 (418K) [application/zip] Wird in »»./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip«« gespeichert. - 0K ...... 100% 240K=1,7s + 0K ...... 100% 239K=1,7s -2017-04-19 23:22:36 (240 KB/s) - »./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip« gespeichert [427800/427800] +2017-05-03 20:19:38 (239 KB/s) - »./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip« gespeichert [427800/427800] ---2017-04-19 23:22:36-- http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +--2017-05-03 20:19:38-- http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -469,22 +469,22 @@ Wird in »»./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 54% 236K 11s - 3072K ........ ........ ........ ........ ....... 100% 231K=24s + 3072K ........ ........ ........ ........ ....... 100% 240K=24s -2017-04-19 23:23:00 (234 KB/s) - »./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip« gespeichert [5750610/5750610] +2017-05-03 20:20:02 (237 KB/s) - »./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip« gespeichert [5750610/5750610] ---2017-04-19 23:23:00-- http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +--2017-05-03 20:20:02-- http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1180582 (1,1M) [application/zip] Wird in »»./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip«« gespeichert. - 0K ........ ........ .. 100% 239K=4,8s + 0K ........ ........ .. 100% 240K=4,8s -2017-04-19 23:23:05 (239 KB/s) - »./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip« gespeichert [1180582/1180582] +2017-05-03 20:20:07 (240 KB/s) - »./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip« gespeichert [1180582/1180582] ---2017-04-19 23:23:05-- http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +--2017-05-03 20:20:07-- http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -493,20 +493,20 @@ 0K ........ ........ ..... 100% 240K=5,7s -2017-04-19 23:23:11 (240 KB/s) - »./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip« gespeichert [1396007/1396007] +2017-05-03 20:20:13 (240 KB/s) - »./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip« gespeichert [1396007/1396007] ---2017-04-19 23:23:11-- http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +--2017-05-03 20:20:13-- http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2938721 (2,8M) [application/zip] Wird in »»./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 235K=12s + 0K ........ ........ ........ ........ ........ .... 100% 236K=12s -2017-04-19 23:23:23 (235 KB/s) - »./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip« gespeichert [2938721/2938721] +2017-05-03 20:20:25 (236 KB/s) - »./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip« gespeichert [2938721/2938721] ---2017-04-19 23:23:23-- http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +--2017-05-03 20:20:25-- http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -515,9 +515,9 @@ 0K ........ ... 100% 239K=3,1s -2017-04-19 23:23:27 (239 KB/s) - »./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip« gespeichert [762419/762419] +2017-05-03 20:20:28 (239 KB/s) - »./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip« gespeichert [762419/762419] ---2017-04-19 23:23:27-- http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +--2017-05-03 20:20:28-- http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -526,9 +526,9 @@ 0K ... 100% 239K=0,9s -2017-04-19 23:23:28 (239 KB/s) - »./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip« gespeichert [211919/211919] +2017-05-03 20:20:29 (239 KB/s) - »./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip« gespeichert [211919/211919] ---2017-04-19 23:23:28-- http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +--2017-05-03 20:20:29-- http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -537,9 +537,9 @@ 0K ........ ........ ........ ........ ........ .... 100% 235K=12s -2017-04-19 23:23:40 (235 KB/s) - »./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip« gespeichert [2929311/2929311] +2017-05-03 20:20:42 (235 KB/s) - »./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip« gespeichert [2929311/2929311] ---2017-04-19 23:23:40-- http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +--2017-05-03 20:20:42-- http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -548,9 +548,9 @@ 0K .. 100% 239K=0,6s -2017-04-19 23:23:41 (239 KB/s) - »./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip« gespeichert [153157/153157] +2017-05-03 20:20:43 (239 KB/s) - »./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip« gespeichert [153157/153157] ---2017-04-19 23:23:41-- http://dev-www.libreoffice.org/src/jpegsrc.v9a.tar.gz +--2017-05-03 20:20:43-- http://dev-www.libreoffice.org/src/jpegsrc.v9a.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -559,54 +559,54 @@ 0K ........ ....... 100% 239K=4,1s -2017-04-19 23:23:45 (239 KB/s) - »./jpegsrc.v9a.tar.gz« gespeichert [1000034/1000034] +2017-05-03 20:20:47 (239 KB/s) - »./jpegsrc.v9a.tar.gz« gespeichert [1000034/1000034] ---2017-04-19 23:23:45-- http://dev-www.libreoffice.org/src/libjpeg-turbo-1.4.2.tar.gz +--2017-05-03 20:20:47-- http://dev-www.libreoffice.org/src/libjpeg-turbo-1.4.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1569306 (1,5M) [application/x-gzip] Wird in »»./libjpeg-turbo-1.4.2.tar.gz«« gespeichert. - 0K ........ ........ ....... 100% 239K=6,4s + 0K ........ ........ ....... 100% 240K=6,4s -2017-04-19 23:23:52 (239 KB/s) - »./libjpeg-turbo-1.4.2.tar.gz« gespeichert [1569306/1569306] +2017-05-03 20:20:53 (240 KB/s) - »./libjpeg-turbo-1.4.2.tar.gz« gespeichert [1569306/1569306] ---2017-04-19 23:23:52-- http://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 +--2017-05-03 20:20:53-- http://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 37482428 (36M) [application/x-bzip] Wird in »»./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 8% 226K 2m28s - 3072K ........ ........ ........ ........ ........ ........ 16% 239K 2m11s - 6144K ........ ........ ........ ........ ........ ........ 25% 233K 1m58s - 9216K ........ ........ ........ ........ ........ ........ 33% 239K 1m44s - 12288K ........ ........ ........ ........ ........ ........ 41% 234K 91s - 15360K ........ ........ ........ ........ ........ ........ 50% 231K 78s - 18432K ........ ........ ........ ........ ........ ........ 58% 239K 64s - 21504K ........ ........ ........ ........ ........ ........ 67% 240K 51s - 24576K ........ ........ ........ ........ ........ ........ 75% 239K 38s - 27648K ........ ........ ........ ........ ........ ........ 83% 233K 25s - 30720K ........ ........ ........ ........ ........ ........ 92% 230K 12s - 33792K ........ ........ ........ ........ ........ ... 100% 251K=2m35s + 0K ........ ........ ........ ........ ........ ........ 8% 236K 2m22s + 3072K ........ ........ ........ ........ ........ ........ 16% 239K 2m8s + 6144K ........ ........ ........ ........ ........ ........ 25% 232K 1m56s + 9216K ........ ........ ........ ........ ........ ........ 33% 248K 1m42s + 12288K ........ ........ ........ ........ ........ ........ 41% 240K 89s + 15360K ........ ........ ........ ........ ........ ........ 50% 240K 76s + 18432K ........ ........ ........ ........ ........ ........ 58% 240K 63s + 21504K ........ ........ ........ ........ ........ ........ 67% 240K 50s + 24576K ........ ........ ........ ........ ........ ........ 75% 240K 37s + 27648K ........ ........ ........ ........ ........ ........ 83% 240K 25s + 30720K ........ ........ ........ ........ ........ ........ 92% 233K 12s + 33792K ........ ........ ........ ........ ........ ... 100% 247K=2m33s -2017-04-19 23:26:27 (236 KB/s) - »./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2« gespeichert [37482428/37482428] +2017-05-03 20:23:28 (239 KB/s) - »./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2« gespeichert [37482428/37482428] ---2017-04-19 23:26:27-- http://dev-www.libreoffice.org/src/lcms2-2.6.tar.gz +--2017-05-03 20:23:28-- http://dev-www.libreoffice.org/src/lcms2-2.6.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 4583389 (4,4M) [application/x-gzip] Wird in »»./lcms2-2.6.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 68% 234K 6s - 3072K ........ ........ ..... 100% 232K=19s + 0K ........ ........ ........ ........ ........ ........ 68% 229K 6s + 3072K ........ ........ ..... 100% 250K=19s -2017-04-19 23:26:46 (233 KB/s) - »./lcms2-2.6.tar.gz« gespeichert [4583389/4583389] +2017-05-03 20:23:47 (235 KB/s) - »./lcms2-2.6.tar.gz« gespeichert [4583389/4583389] ---2017-04-19 23:26:46-- http://dev-www.libreoffice.org/src/libatomic_ops-7_2d.zip +--2017-05-03 20:23:47-- http://dev-www.libreoffice.org/src/libatomic_ops-7_2d.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -615,20 +615,20 @@ 0K .... 100% 239K=1,3s -2017-04-19 23:26:48 (239 KB/s) - »./libatomic_ops-7_2d.zip« gespeichert [319388/319388] +2017-05-03 20:23:48 (239 KB/s) - »./libatomic_ops-7_2d.zip« gespeichert [319388/319388] ---2017-04-19 23:26:48-- http://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +--2017-05-03 20:23:48-- http://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 260288 (254K) [application/x-bzip] Wird in »»./libeot-0.01.tar.bz2«« gespeichert. - 0K ... 100% 239K=1,1s + 0K ... 100% 235K=1,1s -2017-04-19 23:26:49 (239 KB/s) - »./libeot-0.01.tar.bz2« gespeichert [260288/260288] +2017-05-03 20:23:50 (235 KB/s) - »./libeot-0.01.tar.bz2« gespeichert [260288/260288] ---2017-04-19 23:26:49-- http://dev-www.libreoffice.org/src/10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2 +--2017-05-03 20:23:50-- http://dev-www.libreoffice.org/src/10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -637,9 +637,9 @@ 0K ........ ........ . 100% 239K=4,6s -2017-04-19 23:26:54 (239 KB/s) - »./10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2« gespeichert [1129140/1129140] +2017-05-03 20:23:54 (239 KB/s) - »./10d61fbaa6a06348823651b1bd7940fe-libexttextcat-3.4.4.tar.bz2« gespeichert [1129140/1129140] ---2017-04-19 23:26:54-- http://dev-www.libreoffice.org/src/language-subtag-registry-2017-01-20.tar.bz2 +--2017-05-03 20:23:54-- http://dev-www.libreoffice.org/src/language-subtag-registry-2017-01-20.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -648,88 +648,88 @@ 0K . 100% 238K=0,3s -2017-04-19 23:26:54 (238 KB/s) - »./language-subtag-registry-2017-01-20.tar.bz2« gespeichert [74068/74068] +2017-05-03 20:23:55 (238 KB/s) - »./language-subtag-registry-2017-01-20.tar.bz2« gespeichert [74068/74068] ---2017-04-19 23:26:54-- http://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 +--2017-05-03 20:23:55-- http://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 766080 (748K) [application/x-bzip] Wird in »»./liblangtag-0.6.2.tar.bz2«« gespeichert. - 0K ........ ... 100% 239K=3,1s + 0K ........ ... 100% 212K=3,5s -2017-04-19 23:26:57 (239 KB/s) - »./liblangtag-0.6.2.tar.bz2« gespeichert [766080/766080] +2017-05-03 20:23:59 (212 KB/s) - »./liblangtag-0.6.2.tar.bz2« gespeichert [766080/766080] ---2017-04-19 23:26:57-- http://dev-www.libreoffice.org/src/libpng-1.6.28.tar.gz +--2017-05-03 20:23:59-- http://dev-www.libreoffice.org/src/libpng-1.6.28.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1483231 (1,4M) [application/x-gzip] Wird in »»./libpng-1.6.28.tar.gz«« gespeichert. - 0K ........ ........ ...... 100% 240K=6,0s + 0K ........ ........ ...... 100% 239K=6,1s -2017-04-19 23:27:04 (240 KB/s) - »./libpng-1.6.28.tar.gz« gespeichert [1483231/1483231] +2017-05-03 20:24:05 (239 KB/s) - »./libpng-1.6.28.tar.gz« gespeichert [1483231/1483231] ---2017-04-19 23:27:04-- http://dev-www.libreoffice.org/src/ltm-1.0.zip +--2017-05-03 20:24:05-- http://dev-www.libreoffice.org/src/ltm-1.0.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2542693 (2,4M) [application/zip] Wird in »»./ltm-1.0.zip«« gespeichert. - 0K ........ ........ ........ ........ ...... 100% 237K=10s + 0K ........ ........ ........ ........ ...... 100% 235K=11s -2017-04-19 23:27:14 (237 KB/s) - »./ltm-1.0.zip« gespeichert [2542693/2542693] +2017-05-03 20:24:16 (235 KB/s) - »./ltm-1.0.zip« gespeichert [2542693/2542693] ---2017-04-19 23:27:14-- http://dev-www.libreoffice.org/src/ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz +--2017-05-03 20:24:16-- http://dev-www.libreoffice.org/src/ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5374830 (5,1M) [application/x-gzip] Wird in »»./ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 58% 236K 9s - 3072K ........ ........ ........ ........ .. 100% 240K=22s + 0K ........ ........ ........ ........ ........ ........ 58% 232K 9s + 3072K ........ ........ ........ ........ .. 100% 234K=23s -2017-04-19 23:27:37 (237 KB/s) - »./ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz« gespeichert [5374830/5374830] +2017-05-03 20:24:38 (233 KB/s) - »./ae249165c173b1ff386ee8ad676815f5-libxml2-2.9.4.tar.gz« gespeichert [5374830/5374830] ---2017-04-19 23:27:37-- http://dev-www.libreoffice.org/src/86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz +--2017-05-03 20:24:38-- http://dev-www.libreoffice.org/src/86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1794694 (1,7M) [application/x-gzip] Wird in »»./86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz«« gespeichert. - 0K ........ ........ ........ ... 100% 232K=7,5s + 0K ........ ........ ........ ... 100% 232K=7,6s -2017-04-19 23:27:44 (232 KB/s) - »./86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz« gespeichert [1794694/1794694] +2017-05-03 20:24:46 (232 KB/s) - »./86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz« gespeichert [1794694/1794694] ---2017-04-19 23:27:44-- http://dev-www.libreoffice.org/src/a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz +--2017-05-03 20:24:46-- http://dev-www.libreoffice.org/src/a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3428524 (3,3M) [application/x-gzip] Wird in »»./a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 91% 236K 1s + 0K ........ ........ ........ ........ ........ ........ 91% 235K 1s 3072K .... 100% 240K=14s -2017-04-19 23:27:59 (236 KB/s) - »./a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz« gespeichert [3428524/3428524] +2017-05-03 20:25:00 (236 KB/s) - »./a129d3c44c022de3b9dcf6d6f288d72e-libxslt-1.1.29.tar.gz« gespeichert [3428524/3428524] ---2017-04-19 23:27:59-- http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +--2017-05-03 20:25:00-- http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 769268 (751K) [application/x-gzip] Wird in »»./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz«« gespeichert. - 0K ........ ... 100% 218K=3,5s + 0K ........ ... 100% 239K=3,1s -2017-04-19 23:28:02 (218 KB/s) - »./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz« gespeichert [769268/769268] +2017-05-03 20:25:04 (239 KB/s) - »./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz« gespeichert [769268/769268] ---2017-04-19 23:28:02-- http://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz +--2017-05-03 20:25:04-- http://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -738,31 +738,31 @@ 0K ........ ........ ........ ..... 100% 239K=7,8s -2017-04-19 23:28:10 (239 KB/s) - »./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz« gespeichert [1923436/1923436] +2017-05-03 20:25:12 (239 KB/s) - »./a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz« gespeichert [1923436/1923436] ---2017-04-19 23:28:10-- http://dev-www.libreoffice.org/src/mdds-1.2.2.tar.bz2 +--2017-05-03 20:25:12-- http://dev-www.libreoffice.org/src/mdds-1.2.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 286185 (279K) [application/x-bzip] Wird in »»./mdds-1.2.2.tar.bz2«« gespeichert. - 0K .... 100% 239K=1,2s + 0K .... 100% 240K=1,2s -2017-04-19 23:28:12 (239 KB/s) - »./mdds-1.2.2.tar.bz2« gespeichert [286185/286185] +2017-05-03 20:25:13 (240 KB/s) - »./mdds-1.2.2.tar.bz2« gespeichert [286185/286185] ---2017-04-19 23:28:12-- http://dev-www.libreoffice.org/src/mDNSResponder-576.30.4.tar.gz +--2017-05-03 20:25:13-- http://dev-www.libreoffice.org/src/mDNSResponder-576.30.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2157791 (2,1M) [application/x-gzip] Wird in »»./mDNSResponder-576.30.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ 100% 234K=9,0s + 0K ........ ........ ........ ........ 100% 239K=8,8s -2017-04-19 23:28:21 (234 KB/s) - »./mDNSResponder-576.30.4.tar.gz« gespeichert [2157791/2157791] +2017-05-03 20:25:22 (239 KB/s) - »./mDNSResponder-576.30.4.tar.gz« gespeichert [2157791/2157791] ---2017-04-19 23:28:21-- http://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +--2017-05-03 20:25:22-- http://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -771,78 +771,78 @@ 0K . 100% 238K=0,5s -2017-04-19 23:28:21 (238 KB/s) - »./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz« gespeichert [112756/112756] +2017-05-03 20:25:23 (238 KB/s) - »./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz« gespeichert [112756/112756] ---2017-04-19 23:28:21-- http://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +--2017-05-03 20:25:23-- http://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1169488 (1,1M) [application/x-gzip] Wird in »»./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz«« gespeichert. - 0K ........ ........ . 100% 240K=4,8s + 0K ........ ........ . 100% 239K=4,8s -2017-04-19 23:28:26 (240 KB/s) - »./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz« gespeichert [1169488/1169488] +2017-05-03 20:25:28 (239 KB/s) - »./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz« gespeichert [1169488/1169488] ---2017-04-19 23:28:26-- http://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +--2017-05-03 20:25:28-- http://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5522795 (5,3M) [application/zip] Wird in »»./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 56% 226K 10s - 3072K ........ ........ ........ ........ .... 100% 236K=23s + 0K ........ ........ ........ ........ ........ ........ 56% 236K 10s + 3072K ........ ........ ........ ........ .... 100% 239K=23s -2017-04-19 23:28:50 (230 KB/s) - »./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip« gespeichert [5522795/5522795] +2017-05-03 20:25:50 (237 KB/s) - »./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip« gespeichert [5522795/5522795] ---2017-04-19 23:28:50-- http://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +--2017-05-03 20:25:50-- http://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 811606 (793K) [application/zip] Wird in »»./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip«« gespeichert. - 0K ........ .... 100% 203K=3,9s + 0K ........ .... 100% 239K=3,3s -2017-04-19 23:28:54 (203 KB/s) - »./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip« gespeichert [811606/811606] +2017-05-03 20:25:54 (239 KB/s) - »./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip« gespeichert [811606/811606] ---2017-04-19 23:28:54-- http://dev-www.libreoffice.org/src/134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz +--2017-05-03 20:25:54-- http://dev-www.libreoffice.org/src/134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1333593 (1,3M) [application/x-gzip] Wird in »»./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz«« gespeichert. - 0K ........ ........ .... 100% 240K=5,4s + 0K ........ ........ .... 100% 226K=5,8s -2017-04-19 23:29:00 (240 KB/s) - »./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz« gespeichert [1333593/1333593] +2017-05-03 20:26:00 (226 KB/s) - »./134d8262145fc793c6af494dcace3e71-liberation-fonts-ttf-1.07.4.tar.gz« gespeichert [1333593/1333593] ---2017-04-19 23:29:00-- http://dev-www.libreoffice.org/src/5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz +--2017-05-03 20:26:00-- http://dev-www.libreoffice.org/src/5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2285857 (2,2M) [application/x-gzip] Wird in »»./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ .. 100% 235K=9,5s + 0K ........ ........ ........ ........ .. 100% 239K=9,3s -2017-04-19 23:29:09 (235 KB/s) - »./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz« gespeichert [2285857/2285857] +2017-05-03 20:26:10 (239 KB/s) - »./5c781723a0d9ed6188960defba8e91cf-liberation-fonts-ttf-2.00.1.tar.gz« gespeichert [2285857/2285857] ---2017-04-19 23:29:09-- http://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +--2017-05-03 20:26:10-- http://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6651982 (6,3M) [application/zip] Wird in »»./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 236K 15s - 3072K ........ ........ ........ ........ ........ ........ 94% 234K 1s + 0K ........ ........ ........ ........ ........ ........ 47% 228K 15s + 3072K ........ ........ ........ ........ ........ ........ 94% 240K 2s 6144K ..... 100% 240K=28s -2017-04-19 23:29:37 (235 KB/s) - »./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip« gespeichert [6651982/6651982] +2017-05-03 20:26:38 (234 KB/s) - »./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip« gespeichert [6651982/6651982] ---2017-04-19 23:29:37-- http://dev-www.libreoffice.org/src/7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz +--2017-05-03 20:26:38-- http://dev-www.libreoffice.org/src/7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -851,9 +851,9 @@ 0K ....... 100% 239K=1,9s -2017-04-19 23:29:39 (239 KB/s) - »./7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz« gespeichert [466545/466545] +2017-05-03 20:26:40 (239 KB/s) - »./7a15edea7d415ac5150ea403e27401fd-open-sans-font-ttf-1.10.tar.gz« gespeichert [466545/466545] ---2017-04-19 23:29:39-- http://dev-www.libreoffice.org/src/c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz +--2017-05-03 20:26:40-- http://dev-www.libreoffice.org/src/c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -862,9 +862,9 @@ 0K ........ .. 100% 239K=2,9s -2017-04-19 23:29:42 (239 KB/s) - »./c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz« gespeichert [714196/714196] +2017-05-03 20:26:43 (239 KB/s) - »./c3c1a8ba7452950636e871d25020ce0d-pt-serif-font-1.0000W.tar.gz« gespeichert [714196/714196] ---2017-04-19 23:29:42-- http://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz +--2017-05-03 20:26:43-- http://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -873,31 +873,31 @@ 0K ........ ........ .... 100% 239K=5,5s -2017-04-19 23:29:48 (239 KB/s) - »./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz« gespeichert [1338551/1338551] +2017-05-03 20:26:48 (239 KB/s) - »./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz« gespeichert [1338551/1338551] ---2017-04-19 23:29:48-- http://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz +--2017-05-03 20:26:48-- http://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1098827 (1,0M) [application/x-gzip] Wird in »»./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz«« gespeichert. - 0K ........ ........ 100% 240K=4,5s + 0K ........ ........ 100% 239K=4,5s -2017-04-19 23:29:53 (240 KB/s) - »./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz« gespeichert [1098827/1098827] +2017-05-03 20:26:53 (239 KB/s) - »./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz« gespeichert [1098827/1098827] ---2017-04-19 23:29:53-- http://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz +--2017-05-03 20:26:53-- http://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2961759 (2,8M) [application/x-gzip] Wird in »»./EmojiOneColor-SVGinOT-1.3.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ..... 100% 230K=13s + 0K ........ ........ ........ ........ ........ ..... 100% 236K=12s -2017-04-19 23:30:05 (230 KB/s) - »./EmojiOneColor-SVGinOT-1.3.tar.gz« gespeichert [2961759/2961759] +2017-05-03 20:27:05 (236 KB/s) - »./EmojiOneColor-SVGinOT-1.3.tar.gz« gespeichert [2961759/2961759] ---2017-04-19 23:30:05-- http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2 +--2017-05-03 20:27:06-- http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -906,20 +906,20 @@ 0K ...... 100% 239K=1,8s -2017-04-19 23:30:07 (239 KB/s) - »./libmspub-0.1.2.tar.bz2« gespeichert [429360/429360] +2017-05-03 20:27:07 (239 KB/s) - »./libmspub-0.1.2.tar.bz2« gespeichert [429360/429360] ---2017-04-19 23:30:07-- http://dev-www.libreoffice.org/src/libmwaw-0.3.9.tar.bz2 +--2017-05-03 20:27:07-- http://dev-www.libreoffice.org/src/libmwaw-0.3.9.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1463662 (1,4M) [application/x-bzip] Wird in »»./libmwaw-0.3.9.tar.bz2«« gespeichert. - 0K ........ ........ ...... 100% 239K=6,0s + 0K ........ ........ ...... 100% 240K=6,0s -2017-04-19 23:30:13 (239 KB/s) - »./libmwaw-0.3.9.tar.bz2« gespeichert [1463662/1463662] +2017-05-03 20:27:14 (240 KB/s) - »./libmwaw-0.3.9.tar.bz2« gespeichert [1463662/1463662] ---2017-04-19 23:30:13-- http://dev-www.libreoffice.org/src/7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz +--2017-05-03 20:27:14-- http://dev-www.libreoffice.org/src/7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -928,21 +928,21 @@ 0K ....... 100% 239K=2,1s -2017-04-19 23:30:15 (239 KB/s) - »./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz« gespeichert [506106/506106] +2017-05-03 20:27:16 (239 KB/s) - »./7239a4430efd4d0189c4f24df67f08e5-mysql-connector-c++-1.1.4.tar.gz« gespeichert [506106/506106] ---2017-04-19 23:30:16-- http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz +--2017-05-03 20:27:16-- http://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 4910303 (4,7M) [application/x-gzip] Wird in »»./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 64% 236K 7s - 3072K ........ ........ ........ .. 100% 240K=20s + 0K ........ ........ ........ ........ ........ ........ 64% 220K 8s + 3072K ........ ........ ........ .. 100% 223K=22s -2017-04-19 23:30:36 (237 KB/s) - »./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz« gespeichert [4910303/4910303] +2017-05-03 20:27:38 (221 KB/s) - »./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz« gespeichert [4910303/4910303] ---2017-04-19 23:30:36-- http://dev-www.libreoffice.org/src/231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz +--2017-05-03 20:27:38-- http://dev-www.libreoffice.org/src/231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -951,33 +951,33 @@ 0K ........ ..... 100% 239K=3,7s -2017-04-19 23:30:40 (239 KB/s) - »./231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz« gespeichert [911414/911414] +2017-05-03 20:27:41 (239 KB/s) - »./231adebe5c2f78fded3e3df6e958878e-neon-0.30.1.tar.gz« gespeichert [911414/911414] ---2017-04-19 23:30:40-- http://dev-www.libreoffice.org/src/0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz +--2017-05-03 20:27:42-- http://dev-www.libreoffice.org/src/nss-3.29.5-with-nspr-4.13.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 8769784 (8,4M) [application/x-gzip] -Wird in »»./0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz«« gespeichert. +Länge: 8856992 (8,4M) [application/x-gzip] +Wird in »»./nss-3.29.5-with-nspr-4.13.1.tar.gz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 35% 236K 23s - 3072K ........ ........ ........ ........ ........ ........ 71% 239K 10s - 6144K ........ ........ ........ ........ ..... 100% 239K=36s + 0K ........ ........ ........ ........ ........ ........ 35% 205K 27s + 3072K ........ ........ ........ ........ ........ ........ 71% 236K 11s + 6144K ........ ........ ........ ........ ....... 100% 236K=39s -2017-04-19 23:31:16 (238 KB/s) - »./0e3eee39402386cf16fd7aaa7399ebef-nss-3.27-with-nspr-4.13.tar.gz« gespeichert [8769784/8769784] +2017-05-03 20:28:20 (224 KB/s) - »./nss-3.29.5-with-nspr-4.13.1.tar.gz« gespeichert [8856992/8856992] ---2017-04-19 23:31:16-- http://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 +--2017-05-03 20:28:20-- http://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 446705 (436K) [application/x-bzip] Wird in »»./libodfgen-0.1.6.tar.bz2«« gespeichert. - 0K ...... 100% 238K=1,8s + 0K ...... 100% 211K=2,1s -2017-04-19 23:31:18 (238 KB/s) - »./libodfgen-0.1.6.tar.bz2« gespeichert [446705/446705] +2017-05-03 20:28:26 (211 KB/s) - »./libodfgen-0.1.6.tar.bz2« gespeichert [446705/446705] ---2017-04-19 23:31:18-- http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 +--2017-05-03 20:28:26-- http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -985,25 +985,25 @@ Wird in »»./OpenCOLLADA-master-6509aa13af.tar.bz2«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 32% 236K 27s - 3072K ........ ........ ........ ........ ........ ........ 64% 220K 15s - 6144K ........ ........ ........ ........ ........ ........ 97% 216K 1s - 9216K ... 100% 451M=41s + 3072K ........ ........ ........ ........ ........ ........ 64% 239K 14s + 6144K ........ ........ ........ ........ ........ ........ 97% 235K 1s + 9216K ... 100% 307K=40s -2017-04-19 23:31:59 (230 KB/s) - »./OpenCOLLADA-master-6509aa13af.tar.bz2« gespeichert [9691335/9691335] +2017-05-03 20:29:05 (238 KB/s) - »./OpenCOLLADA-master-6509aa13af.tar.bz2« gespeichert [9691335/9691335] ---2017-04-19 23:31:59-- http://dev-www.libreoffice.org/src/openldap-2.4.44.tgz +--2017-05-03 20:29:05-- http://dev-www.libreoffice.org/src/openldap-2.4.44.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5658830 (5,4M) [application/x-gzip] Wird in »»./openldap-2.4.44.tgz«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 55% 236K 10s - 3072K ........ ........ ........ ........ ...... 100% 233K=24s + 0K ........ ........ ........ ........ ........ ........ 55% 234K 10s + 3072K ........ ........ ........ ........ ...... 100% 247K=23s -2017-04-19 23:32:23 (235 KB/s) - »./openldap-2.4.44.tgz« gespeichert [5658830/5658830] +2017-05-03 20:29:29 (239 KB/s) - »./openldap-2.4.44.tgz« gespeichert [5658830/5658830] ---2017-04-19 23:32:23-- http://dev-www.libreoffice.org/src/openssl-1.0.2h.tar.gz +--2017-05-03 20:29:29-- http://dev-www.libreoffice.org/src/openssl-1.0.2h.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1011,11 +1011,11 @@ Wird in »»./openssl-1.0.2h.tar.gz«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 59% 236K 9s - 3072K ........ ........ ........ ........ 100% 240K=22s + 3072K ........ ........ ........ ........ 100% 239K=22s -2017-04-19 23:32:45 (237 KB/s) - »./openssl-1.0.2h.tar.gz« gespeichert [5274412/5274412] +2017-05-03 20:29:51 (237 KB/s) - »./openssl-1.0.2h.tar.gz« gespeichert [5274412/5274412] ---2017-04-19 23:32:45-- http://dev-www.libreoffice.org/src/liborcus-0.12.1.tar.gz +--2017-05-03 20:29:51-- http://dev-www.libreoffice.org/src/liborcus-0.12.1.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1024,9 +1024,9 @@ 0K ........ ........ ........ ........ 100% 239K=8,6s -2017-04-19 23:32:53 (239 KB/s) - »./liborcus-0.12.1.tar.gz« gespeichert [2117890/2117890] +2017-05-03 20:29:59 (239 KB/s) - »./liborcus-0.12.1.tar.gz« gespeichert [2117890/2117890] ---2017-04-19 23:32:54-- http://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz +--2017-05-03 20:29:59-- http://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1035,47 +1035,47 @@ 0K ........ ... 100% 240K=3,1s -2017-04-19 23:32:57 (240 KB/s) - »./owncloud-android-library-0.9.4-no-binary-deps.tar.gz« gespeichert [760676/760676] +2017-05-03 20:30:03 (240 KB/s) - »./owncloud-android-library-0.9.4-no-binary-deps.tar.gz« gespeichert [760676/760676] ---2017-04-19 23:32:57-- http://dev-www.libreoffice.org/src/libpagemaker-0.0.3.tar.bz2 +--2017-05-03 20:30:03-- http://dev-www.libreoffice.org/src/libpagemaker-0.0.3.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 376953 (368K) [application/x-bzip] Wird in »»./libpagemaker-0.0.3.tar.bz2«« gespeichert. - 0K ..... 100% 240K=1,5s + 0K ..... 100% 239K=1,5s -2017-04-19 23:32:58 (240 KB/s) - »./libpagemaker-0.0.3.tar.bz2« gespeichert [376953/376953] +2017-05-03 20:30:04 (239 KB/s) - »./libpagemaker-0.0.3.tar.bz2« gespeichert [376953/376953] ---2017-04-19 23:32:58-- http://dev-www.libreoffice.org/src/poppler-0.49.0.tar.xz +--2017-05-03 20:30:04-- http://dev-www.libreoffice.org/src/poppler-0.49.0.tar.xz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1685860 (1,6M) [application/x-tar] Wird in »»./poppler-0.49.0.tar.xz«« gespeichert. - 0K ........ ........ ........ . 100% 239K=6,9s + 0K ........ ........ ........ . 100% 240K=6,9s -2017-04-19 23:33:05 (239 KB/s) - »./poppler-0.49.0.tar.xz« gespeichert [1685860/1685860] +2017-05-03 20:30:11 (240 KB/s) - »./poppler-0.49.0.tar.xz« gespeichert [1685860/1685860] ---2017-04-19 23:33:05-- http://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 +--2017-05-03 20:30:11-- http://dev-www.libreoffice.org/src/c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 16113737 (15M) [application/x-bzip] Wird in »»./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 19% 226K 56s - 3072K ........ ........ ........ ........ ........ ........ 39% 239K 41s - 6144K ........ ........ ........ ........ ........ ........ 58% 240K 28s - 9216K ........ ........ ........ ........ ........ ........ 78% 221K 15s - 12288K ........ ........ ........ ........ ........ ........ 97% 239K 2s - 15360K ..... 100% 240K=68s + 0K ........ ........ ........ ........ ........ ........ 19% 228K 56s + 3072K ........ ........ ........ ........ ........ ........ 39% 240K 41s + 6144K ........ ........ ........ ........ ........ ........ 58% 234K 28s + 9216K ........ ........ ........ ........ ........ ........ 78% 238K 15s + 12288K ........ ........ ........ ........ ........ ........ 97% 234K 2s + 15360K ..... 100% 240K=67s -2017-04-19 23:34:13 (233 KB/s) - »./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2« gespeichert [16113737/16113737] +2017-05-03 20:31:18 (235 KB/s) - »./c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2« gespeichert [16113737/16113737] ---2017-04-19 23:34:13-- http://dev-www.libreoffice.org/src/Python-3.5.3.tgz +--2017-05-03 20:31:19-- http://dev-www.libreoffice.org/src/Python-3.5.3.tgz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1083,38 +1083,38 @@ Wird in »»./Python-3.5.3.tgz«« gespeichert. 0K ........ ........ ........ ........ ........ ........ 15% 236K 72s - 3072K ........ ........ ........ ........ ........ ........ 30% 238K 59s - 6144K ........ ........ ........ ........ ........ ........ 45% 232K 47s - 9216K ........ ........ ........ ........ ........ ........ 60% 249K 33s - 12288K ........ ........ ........ ........ ........ ........ 76% 239K 20s - 15360K ........ ........ ........ ........ ........ ........ 91% 240K 7s - 18432K ........ ........ ........ ... 100% 240K=84s + 3072K ........ ........ ........ ........ ........ ........ 30% 240K 59s + 6144K ........ ........ ........ ........ ........ ........ 45% 240K 46s + 9216K ........ ........ ........ ........ ........ ........ 60% 235K 33s + 12288K ........ ........ ........ ........ ........ ........ 76% 240K 20s + 15360K ........ ........ ........ ........ ........ ........ 91% 237K 7s + 18432K ........ ........ ........ ... 100% 240K=85s -2017-04-19 23:35:38 (239 KB/s) - »./Python-3.5.3.tgz« gespeichert [20656090/20656090] +2017-05-03 20:32:44 (238 KB/s) - »./Python-3.5.3.tgz« gespeichert [20656090/20656090] ---2017-04-19 23:35:38-- http://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +--2017-05-03 20:32:44-- http://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1886657 (1,8M) [application/x-gzip] Wird in »»./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz«« gespeichert. - 0K ........ ........ ........ .... 100% 240K=7,7s + 0K ........ ........ ........ .... 100% 230K=8,0s -2017-04-19 23:35:46 (240 KB/s) - »./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz« gespeichert [1886657/1886657] +2017-05-03 20:32:52 (230 KB/s) - »./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz« gespeichert [1886657/1886657] ---2017-04-19 23:35:46-- http://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +--2017-05-03 20:32:52-- http://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1595647 (1,5M) [application/x-gzip] Wird in »»./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz«« gespeichert. - 0K ........ ........ ........ 100% 239K=6,5s + 0K ........ ........ ........ 100% 240K=6,5s -2017-04-19 23:35:52 (239 KB/s) - »./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz« gespeichert [1595647/1595647] +2017-05-03 20:32:59 (240 KB/s) - »./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz« gespeichert [1595647/1595647] ---2017-04-19 23:35:52-- http://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +--2017-05-03 20:32:59-- http://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1123,9 +1123,9 @@ 0K ........ ........ ........ 100% 240K=6,6s -2017-04-19 23:35:59 (240 KB/s) - »./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz« gespeichert [1621566/1621566] +2017-05-03 20:33:06 (240 KB/s) - »./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz« gespeichert [1621566/1621566] ---2017-04-19 23:35:59-- http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +--2017-05-03 20:33:06-- http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1134,9 +1134,9 @@ 0K ........ 100% 239K=2,2s -2017-04-19 23:36:02 (239 KB/s) - »./librevenge-0.0.4.tar.bz2« gespeichert [529833/529833] +2017-05-03 20:33:08 (239 KB/s) - »./librevenge-0.0.4.tar.bz2« gespeichert [529833/529833] ---2017-04-19 23:36:02-- http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +--2017-05-03 20:33:08-- http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1145,75 +1145,75 @@ 0K ........ ........ ....... 100% 240K=6,2s -2017-04-19 23:36:08 (240 KB/s) - »./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip« gespeichert [1521926/1521926] +2017-05-03 20:33:15 (240 KB/s) - »./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip« gespeichert [1521926/1521926] ---2017-04-19 23:36:08-- http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +--2017-05-03 20:33:15-- http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9796 (9,6K) [application/zip] Wird in »»./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip«« gespeichert. - 0K 100% 276K=0,03s + 0K 100% 270K=0,04s -2017-04-19 23:36:08 (276 KB/s) - »./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip« gespeichert [9796/9796] +2017-05-03 20:33:15 (270 KB/s) - »./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip« gespeichert [9796/9796] ---2017-04-19 23:36:08-- http://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 +--2017-05-03 20:33:15-- http://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 190464 (186K) [application/x-bzip] Wird in »»./serf-1.2.1.tar.bz2«« gespeichert. - 0K .. 100% 239K=0,8s + 0K .. 100% 236K=0,8s -2017-04-19 23:36:09 (239 KB/s) - »./serf-1.2.1.tar.bz2« gespeichert [190464/190464] +2017-05-03 20:33:16 (236 KB/s) - »./serf-1.2.1.tar.bz2« gespeichert [190464/190464] ---2017-04-19 23:36:09-- http://dev-www.libreoffice.org/src/libstaroffice-0.0.2.tar.bz2 +--2017-05-03 20:33:16-- http://dev-www.libreoffice.org/src/libstaroffice-0.0.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 886950 (866K) [application/x-bzip] Wird in »»./libstaroffice-0.0.2.tar.bz2«« gespeichert. - 0K ........ ..... 100% 239K=3,6s + 0K ........ ..... 100% 227K=3,8s -2017-04-19 23:36:13 (239 KB/s) - »./libstaroffice-0.0.2.tar.bz2« gespeichert [886950/886950] +2017-05-03 20:33:20 (227 KB/s) - »./libstaroffice-0.0.2.tar.bz2« gespeichert [886950/886950] ---2017-04-19 23:36:13-- http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz +--2017-05-03 20:33:20-- http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 96939 (95K) [application/x-gzip] Wird in »»./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz«« gespeichert. - 0K . 100% 239K=0,4s + 0K . 100% 238K=0,4s -2017-04-19 23:36:13 (239 KB/s) - »./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz« gespeichert [96939/96939] +2017-05-03 20:33:20 (238 KB/s) - »./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz« gespeichert [96939/96939] ---2017-04-19 23:36:13-- http://dev-www.libreoffice.org/src/libvisio-0.1.5.tar.bz2 +--2017-05-03 20:33:20-- http://dev-www.libreoffice.org/src/libvisio-0.1.5.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 602628 (589K) [application/x-bzip] Wird in »»./libvisio-0.1.5.tar.bz2«« gespeichert. - 0K ........ . 100% 239K=2,5s + 0K ........ . 100% 240K=2,5s -2017-04-19 23:36:16 (239 KB/s) - »./libvisio-0.1.5.tar.bz2« gespeichert [602628/602628] +2017-05-03 20:33:23 (240 KB/s) - »./libvisio-0.1.5.tar.bz2« gespeichert [602628/602628] ---2017-04-19 23:36:16-- http://dev-www.libreoffice.org/src/libwpd-0.10.1.tar.bz2 +--2017-05-03 20:33:23-- http://dev-www.libreoffice.org/src/libwpd-0.10.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 656856 (641K) [application/x-bzip] Wird in »»./libwpd-0.10.1.tar.bz2«« gespeichert. - 0K ........ .. 100% 239K=2,7s + 0K ........ .. 100% 240K=2,7s -2017-04-19 23:36:19 (239 KB/s) - »./libwpd-0.10.1.tar.bz2« gespeichert [656856/656856] +2017-05-03 20:33:26 (240 KB/s) - »./libwpd-0.10.1.tar.bz2« gespeichert [656856/656856] ---2017-04-19 23:36:19-- http://dev-www.libreoffice.org/src/libwpg-0.3.1.tar.bz2 +--2017-05-03 20:33:26-- http://dev-www.libreoffice.org/src/libwpg-0.3.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1222,9 +1222,9 @@ 0K ...... 100% 239K=1,6s -2017-04-19 23:36:21 (239 KB/s) - »./libwpg-0.3.1.tar.bz2« gespeichert [397128/397128] +2017-05-03 20:33:27 (239 KB/s) - »./libwpg-0.3.1.tar.bz2« gespeichert [397128/397128] ---2017-04-19 23:36:21-- http://dev-www.libreoffice.org/src/libwps-0.4.4.tar.bz2 +--2017-05-03 20:33:27-- http://dev-www.libreoffice.org/src/libwps-0.4.4.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1233,9 +1233,9 @@ 0K ........ ... 100% 239K=3,1s -2017-04-19 23:36:24 (239 KB/s) - »./libwps-0.4.4.tar.bz2« gespeichert [749717/749717] +2017-05-03 20:33:31 (239 KB/s) - »./libwps-0.4.4.tar.bz2« gespeichert [749717/749717] ---2017-04-19 23:36:24-- http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +--2017-05-03 20:33:31-- http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1244,9 +1244,9 @@ 0K 100% 236K=0,1s -2017-04-19 23:36:24 (236 KB/s) - »./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip« gespeichert [23150/23150] +2017-05-03 20:33:31 (236 KB/s) - »./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip« gespeichert [23150/23150] ---2017-04-19 23:36:24-- http://dev-www.libreoffice.org/src/zlib-1.2.8.tar.gz +--2017-05-03 20:33:31-- http://dev-www.libreoffice.org/src/zlib-1.2.8.tar.gz Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1255,9 +1255,9 @@ 0K ........ 100% 239K=2,3s -2017-04-19 23:36:27 (239 KB/s) - »./zlib-1.2.8.tar.gz« gespeichert [571091/571091] +2017-05-03 20:33:33 (239 KB/s) - »./zlib-1.2.8.tar.gz« gespeichert [571091/571091] ---2017-04-19 23:36:27-- http://dev-www.libreoffice.org/src/libzmf-0.0.1.tar.bz2 +--2017-05-03 20:33:33-- http://dev-www.libreoffice.org/src/libzmf-0.0.1.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1266,58 +1266,58 @@ 0K ...... 100% 239K=1,7s -2017-04-19 23:36:28 (239 KB/s) - »./libzmf-0.0.1.tar.bz2« gespeichert [404766/404766] +2017-05-03 20:33:35 (239 KB/s) - »./libzmf-0.0.1.tar.bz2« gespeichert [404766/404766] ---2017-04-19 23:36:28-- http://dev-www.libreoffice.org/extern/13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll +--2017-05-03 20:33:35-- http://dev-www.libreoffice.org/extern/13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 163088 (159K) [text/plain] Wird in »»./13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll«« gespeichert. - 0K .. 100% 193K=0,8s + 0K .. 100% 239K=0,7s -2017-04-19 23:36:29 (193 KB/s) - »./13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll« gespeichert [163088/163088] +2017-05-03 20:33:36 (239 KB/s) - »./13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll« gespeichert [163088/163088] ---2017-04-19 23:36:29-- http://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll +--2017-05-03 20:33:36-- http://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 12288 (12K) [text/plain] Wird in »»./185d60944ea767075d27247c3162b3bc-unowinreg.dll«« gespeichert. - 0K 100% 260K=0,05s + 0K 100% 263K=0,05s -2017-04-19 23:36:30 (260 KB/s) - »./185d60944ea767075d27247c3162b3bc-unowinreg.dll« gespeichert [12288/12288] +2017-05-03 20:33:36 (263 KB/s) - »./185d60944ea767075d27247c3162b3bc-unowinreg.dll« gespeichert [12288/12288] ---2017-04-19 23:36:30-- http://dev-www.libreoffice.org/extern/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar +--2017-05-03 20:33:36-- http://dev-www.libreoffice.org/extern/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 18033694 (17M) [application/x-java-archive] Wird in »»./a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar«« gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 236K 62s - 3072K ........ ........ ........ ........ ........ ........ 34% 239K 48s - 6144K ........ ........ ........ ........ ........ ........ 52% 235K 35s - 9216K ........ ........ ........ ........ ........ ........ 69% 244K 22s - 12288K ........ ........ ........ ........ ........ ........ 87% 223K 10s - 15360K ........ ........ ........ ........ ... 100% 240K=75s + 0K ........ ........ ........ ........ ........ ........ 17% 211K 69s + 3072K ........ ........ ........ ........ ........ ........ 34% 236K 51s + 6144K ........ ........ ........ ........ ........ ........ 52% 196K 39s + 9216K ........ ........ ........ ........ ........ ........ 69% 251K 24s + 12288K ........ ........ ........ ........ ........ ........ 87% 237K 10s + 15360K ........ ........ ........ ........ ... 100% 232K=78s -2017-04-19 23:37:44 (236 KB/s) - »./a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar« gespeichert [18033694/18033694] +2017-05-03 20:34:54 (225 KB/s) - »./a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar« gespeichert [18033694/18033694] ---2017-04-19 23:37:44-- http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +--2017-05-03 20:34:55-- http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2448421 (2,3M) [application/x-java-archive] Wird in »»./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar«« gespeichert. - 0K ........ ........ ........ ........ ..... 100% 236K=10s + 0K ........ ........ ........ ........ ..... 100% 235K=10s -2017-04-19 23:37:55 (236 KB/s) - »./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar« gespeichert [2448421/2448421] +2017-05-03 20:35:05 (235 KB/s) - »./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar« gespeichert [2448421/2448421] ---2017-04-19 23:37:55-- http://dev-www.libreoffice.org/src/libgltf/libgltf-0.0.2.tar.bz2 +--2017-05-03 20:35:05-- http://dev-www.libreoffice.org/src/libgltf/libgltf-0.0.2.tar.bz2 Auflösen des Hostnamens »dev-www.libreoffice.org (dev-www.libreoffice.org)« … 195.135.221.70 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|195.135.221.70|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -1326,5 +1326,5 @@ 0K ........ 100% 239K=2,2s -2017-04-19 23:37:57 (239 KB/s) - »./libgltf-0.0.2.tar.bz2« gespeichert [538040/538040] +2017-05-03 20:35:07 (239 KB/s) - »./libgltf-0.0.2.tar.bz2« gespeichert [538040/538040] Binary files /tmp/tmpaTW297/ekRej2kfbv/libreoffice-5.3.3~rc1/src/nss-3.29.5-with-nspr-4.13.1.tar.gz and /tmp/tmpaTW297/yfS6d60hOG/libreoffice-5.3.3~rc2/src/nss-3.29.5-with-nspr-4.13.1.tar.gz differ diff -Nru libreoffice-5.3.3~rc1/sw/source/core/crsr/crsrsh.cxx libreoffice-5.3.3~rc2/sw/source/core/crsr/crsrsh.cxx --- libreoffice-5.3.3~rc1/sw/source/core/crsr/crsrsh.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/crsr/crsrsh.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2561,6 +2561,8 @@ } else { + pTmpDel->GetPoint()->nContent.Assign(nullptr, 0); + pTmpDel->GetPoint()->nNode = 0; pTmpDel->DeleteMark(); } pTmpDel = nullptr; @@ -2621,6 +2623,8 @@ SwNode* pTableNd = pTCursor->GetPoint()->nNode.GetNode().FindTableNode(); if ( pTableNd ) { + pTCursor->GetPoint()->nContent.Assign(nullptr, 0); + pTCursor->GetPoint()->nNode = 0; pTCursor->DeleteMark(); pSh->m_pCurrentCursor->GetPoint()->nNode = *pTableNd; } diff -Nru libreoffice-5.3.3~rc1/sw/source/core/doc/DocumentRedlineManager.cxx libreoffice-5.3.3~rc2/sw/source/core/doc/DocumentRedlineManager.cxx --- libreoffice-5.3.3~rc1/sw/source/core/doc/DocumentRedlineManager.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include using namespace com::sun::star; @@ -1226,10 +1227,15 @@ // also dealt with when moving the indices. if( bCallDelete ) { + ::comphelper::FlagGuard g(m_isForbidCompressRedlines); mpRedlineTable->Insert( pNewRedl ); m_rDoc.getIDocumentContentOperations().DeleteAndJoin( *pRedl ); if( !mpRedlineTable->Remove( pNewRedl ) ) + { + assert(false); // can't happen pNewRedl = nullptr; + } + bCompress = true; // delayed compress } delete pRedl; } @@ -1253,10 +1259,15 @@ { // We insert temporarily so that pNew is // also dealt with when moving the indices. + ::comphelper::FlagGuard g(m_isForbidCompressRedlines); mpRedlineTable->Insert( pNewRedl ); m_rDoc.getIDocumentContentOperations().DeleteAndJoin( aPam ); if( !mpRedlineTable->Remove( pNewRedl ) ) + { + assert(false); // can't happen pNewRedl = nullptr; + } + bCompress = true; // delayed compress n = 0; // re-initialize } bDec = true; @@ -1279,10 +1290,15 @@ { // We insert temporarily so that pNew is // also dealt with when moving the indices. + ::comphelper::FlagGuard g(m_isForbidCompressRedlines); mpRedlineTable->Insert( pNewRedl ); m_rDoc.getIDocumentContentOperations().DeleteAndJoin( aPam ); if( !mpRedlineTable->Remove( pNewRedl ) ) + { + assert(false); // can't happen pNewRedl = nullptr; + } + bCompress = true; // delayed compress n = 0; // re-initialize bDec = true; } @@ -1777,6 +1793,11 @@ void DocumentRedlineManager::CompressRedlines() { + if (m_isForbidCompressRedlines) + { + return; + } + CHECK_REDLINE( *this ) void (SwRangeRedline::*pFnc)(sal_uInt16, size_t) = nullptr; diff -Nru libreoffice-5.3.3~rc1/sw/source/core/inc/DocumentRedlineManager.hxx libreoffice-5.3.3~rc2/sw/source/core/inc/DocumentRedlineManager.hxx --- libreoffice-5.3.3~rc1/sw/source/core/inc/DocumentRedlineManager.hxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/inc/DocumentRedlineManager.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -137,6 +137,7 @@ sal_uInt16 mnAutoFormatRedlnCommentNo; /**< SeqNo for conjoining of AutoFormat-Redlines. by the UI. Managed by SwAutoFormat! */ css::uno::Sequence maRedlinePasswd; + bool m_isForbidCompressRedlines = false; }; } diff -Nru libreoffice-5.3.3~rc1/sw/source/core/layout/calcmove.cxx libreoffice-5.3.3~rc2/sw/source/core/layout/calcmove.cxx --- libreoffice-5.3.3~rc1/sw/source/core/layout/calcmove.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/layout/calcmove.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1868,6 +1868,11 @@ SwFrame *pOldNext = pTmpFrame->GetNext(); pTmpFrame->RemoveFromLayout(); pTmpFrame->InsertBefore( pNewUpper, nullptr ); + // tdf#107126 for a section in a footnote, we have only inserted + // the SwTextFrame but no SwSectionFrame - reset mbInfSct flag + // to avoid crashing (but perhaps we should create a temp + // SwSectionFrame here because WidowsAndOrphans checks for that?) + pTmpFrame->InvalidateInfFlags(); if ( pFrame->IsTextFrame() && ( bTstMove || static_cast(pFrame)->HasFollow() || @@ -1885,6 +1890,7 @@ pTmpFrame->RemoveFromLayout(); pTmpFrame->InsertBefore( pUp, pOldNext ); + pTmpFrame->InvalidateInfFlags(); // restore flags } else { diff -Nru libreoffice-5.3.3~rc1/sw/source/core/layout/flowfrm.cxx libreoffice-5.3.3~rc2/sw/source/core/layout/flowfrm.cxx --- libreoffice-5.3.3~rc1/sw/source/core/layout/flowfrm.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/layout/flowfrm.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -2404,6 +2404,12 @@ ( pNextNewUpper == m_rThis.GetUpper() || pNextNewUpper->GetType() != m_rThis.GetUpper()->GetType() ) ) { + // tdf#107398 do not leave empty footnote container around + if (!pNewUpper->Lower() && pNewUpper->IsFootnoteContFrame()) + { + pNewUpper->Cut(); + SwFrame::DestroyFrame(pNewUpper); + } pNewUpper = nullptr; OSL_FAIL( " - layout loop control for layout action applied!" ); } diff -Nru libreoffice-5.3.3~rc1/sw/source/core/undo/unattr.cxx libreoffice-5.3.3~rc2/sw/source/core/undo/unattr.cxx --- libreoffice-5.3.3~rc1/sw/source/core/undo/unattr.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/undo/unattr.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -200,21 +200,21 @@ { // search for the Format in the Document; if it does not exist any more, // the attribute is not restored! - bool bFound = false; + size_t nPos = SIZE_MAX; switch ( m_nFormatWhich ) { case RES_TXTFMTCOLL: case RES_CONDTXTFMTCOLL: - bFound = pDoc->GetTextFormatColls()->Contains( m_pFormat ); + nPos = pDoc->GetTextFormatColls()->GetPos( m_pFormat ); break; case RES_GRFFMTCOLL: - bFound = pDoc->GetGrfFormatColls()->Contains( + nPos = pDoc->GetGrfFormatColls()->GetPos( static_cast(m_pFormat) ); break; case RES_CHRFMT: - bFound = pDoc->GetCharFormats()->Contains( m_pFormat ); + nPos = pDoc->GetCharFormats()->GetPos( m_pFormat ); break; case RES_FRMFMT: @@ -225,14 +225,14 @@ { m_pFormat = static_cast(pNd)->GetTable().GetFrameFormat(); - bFound = true; + nPos = 0; break; } else if ( pNd->IsSectionNode() ) { m_pFormat = static_cast(pNd)->GetSection().GetFormat(); - bFound = true; + nPos = 0; break; } else if ( pNd->IsStartNode() && (SwTableBoxStartNode == @@ -246,7 +246,7 @@ if ( pBox ) { m_pFormat = pBox->GetFrameFormat(); - bFound = true; + nPos = 0; break; } } @@ -255,13 +255,13 @@ SAL_FALLTHROUGH; case RES_DRAWFRMFMT: case RES_FLYFRMFMT: - if (pDoc->GetSpzFrameFormats()->Contains( m_pFormat ) - || pDoc->GetFrameFormats()->Contains( m_pFormat )) - bFound = true; + if ( ( pDoc->GetSpzFrameFormats()->find( static_cast(m_pFormat) ) != pDoc->GetSpzFrameFormats()->end() ) + || ( pDoc->GetFrameFormats()->find( static_cast( m_pFormat ) ) != pDoc->GetFrameFormats()->end() ) ) + nPos = 0; break; } - if ( !bFound ) + if ( nPos == SIZE_MAX ) { // Format does not exist; reset m_pFormat = nullptr; diff -Nru libreoffice-5.3.3~rc1/sw/source/core/undo/unfmco.cxx libreoffice-5.3.3~rc2/sw/source/core/undo/unfmco.cxx --- libreoffice-5.3.3~rc1/sw/source/core/undo/unfmco.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/core/undo/unfmco.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -74,7 +74,7 @@ // this array. // does the format still exist? - if( rDoc.GetTextFormatColls()->Contains(static_cast(pFormatColl)) ) + if( SIZE_MAX != rDoc.GetTextFormatColls()->GetPos(static_cast(pFormatColl)) ) { rDoc.SetTextFormatColl(rPaM, static_cast(pFormatColl), mbReset, mbResetListAttrs); diff -Nru libreoffice-5.3.3~rc1/sw/source/filter/ww8/ww8graf.cxx libreoffice-5.3.3~rc2/sw/source/filter/ww8/ww8graf.cxx --- libreoffice-5.3.3~rc1/sw/source/filter/ww8/ww8graf.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/filter/ww8/ww8graf.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1294,7 +1294,7 @@ else // nein -> Nimm Linie SetStdAttr( rSet, aCallB.dpPolyLine.aLnt, aCallB.dptxbx.aShd ); SetFill( rSet, aCallB.dptxbx.aFill ); - rSet.Put( SdrCaptionTypeItem( aCaptA[nTyp] ) ); + rSet.Put(SdrCaptionTypeItem(aCaptA[nTyp % SAL_N_ELEMENTS(aCaptA)])); return pObj; } diff -Nru libreoffice-5.3.3~rc1/sw/source/filter/xml/xmlimp.cxx libreoffice-5.3.3~rc2/sw/source/filter/xml/xmlimp.cxx --- libreoffice-5.3.3~rc1/sw/source/filter/xml/xmlimp.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/filter/xml/xmlimp.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -52,6 +52,7 @@ #include #include #include +#include #include "xmlimp.hxx" #include "xmltexti.hxx" #include @@ -138,6 +139,29 @@ const Reference< xml::sax::XAttributeList > & /*xAttrList*/ ) : SvXMLImportContext( rImport, nPrfx, rLName ) { + // tdf#107211: if at this point we don't have a defined char style "Default" + // or "Default Style", add a mapping for it as it is not written + // into the file since it's not really a style but "no style" + // (hence referencing it actually makes no sense except for hyperlinks + // which default to something other than "Default") + OUString const sDefault(SW_RES(STR_POOLCOLL_STANDARD)); + uno::Reference const& xStyles( + rImport.GetTextImport()->GetTextStyles()); + if (!xStyles->hasByName("Default")) + { // this old name was used before LO 4.0 + rImport.AddStyleDisplayName(XML_STYLE_FAMILY_TEXT_TEXT, "Default", sDefault); + } + if (!xStyles->hasByName("Default_20_Style")) + { // this new name contains a space which is converted to _20_ on export + rImport.AddStyleDisplayName(XML_STYLE_FAMILY_TEXT_TEXT, "Default_20_Style", sDefault); + } + bool isEncoded(false); + OUString const defaultEncoded( + rImport.GetMM100UnitConverter().encodeStyleName(sDefault, &isEncoded)); + if (isEncoded && !xStyles->hasByName(defaultEncoded)) + { // new name may contain a space which is converted to _20_ on export + rImport.AddStyleDisplayName(XML_STYLE_FAMILY_TEXT_TEXT, defaultEncoded, sDefault); + } } SwXMLBodyContext_Impl::~SwXMLBodyContext_Impl() diff -Nru libreoffice-5.3.3~rc1/sw/source/ui/utlui/poolfmt.src libreoffice-5.3.3~rc2/sw/source/ui/utlui/poolfmt.src --- libreoffice-5.3.3~rc1/sw/source/ui/utlui/poolfmt.src 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/ui/utlui/poolfmt.src 2017-05-03 16:46:29.000000000 +0000 @@ -155,6 +155,7 @@ // Template names +// tdf#107211 please don't change STANDARD, except back to "Default" String STR_POOLCOLL_STANDARD { Text [ en-US ] = "Default Style" ; diff -Nru libreoffice-5.3.3~rc1/sw/source/uibase/wrtsh/wrtsh1.cxx libreoffice-5.3.3~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx --- libreoffice-5.3.3~rc1/sw/source/uibase/wrtsh/wrtsh1.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/sw/source/uibase/wrtsh/wrtsh1.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -1765,6 +1765,11 @@ void SwWrtShell::ChangeHeaderOrFooter( const OUString& rStyleName, bool bHeader, bool bOn, bool bShowWarning) { + SdrView *const pSdrView = GetDrawView(); + if (pSdrView && pSdrView->IsTextEdit()) + { // tdf#107474 deleting header may delete active drawing object + pSdrView->SdrEndTextEdit(true); + } addCurrentPosition(); StartAllAction(); StartUndo( UNDO_HEADER_FOOTER ); // #i7983# diff -Nru libreoffice-5.3.3~rc1/translations/source/am/cui/source/options.po libreoffice-5.3.3~rc2/translations/source/am/cui/source/options.po --- libreoffice-5.3.3~rc1/translations/source/am/cui/source/options.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/cui/source/options.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 16:40+0000\n" +"PO-Revision-Date: 2017-04-23 00:25+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487263253.000000\n" +"X-POOTLE-MTIME: 1492907129.000000\n" #: connpooloptions.src msgctxt "" @@ -274,7 +274,9 @@ msgid "" "The folder you selected does not contain a Java runtime environment.\n" "Please select a different folder." -msgstr "እርስዎ የመረጡት ፎልደር የ Java runtime environment. አልያዘም እባክዎን የተለየ ፎልደር ይምረጡ" +msgstr "" +"እርስዎ የመረጡት ፎልደር የ Java runtime environment.\n" +"አልያዘም እባክዎን የተለየ ፎልደር ይምረጡ" #: optjava.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/cui/source/tabpages.po libreoffice-5.3.3~rc2/translations/source/am/cui/source/tabpages.po --- libreoffice-5.3.3~rc1/translations/source/am/cui/source/tabpages.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/cui/source/tabpages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-19 21:34+0000\n" +"PO-Revision-Date: 2017-04-23 00:25+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487540096.000000\n" +"X-POOTLE-MTIME: 1492907147.000000\n" #: border.src msgctxt "" @@ -280,7 +280,9 @@ msgid "" "The pattern was modified without saving. \n" "Modify the selected pattern or add a new pattern" -msgstr "ንድፉ ተሻሽሏል ነገር ግን አልተቀመጠም የ ተመረጠውን ንድፍ ያሻሽሉ ወይንም አዲስ ንድፍ ይጨምሩ" +msgstr "" +"ንድፉ ተሻሽሏል ነገር ግን አልተቀመጠም\n" +"የ ተመረጠውን ንድፍ ያሻሽሉ ወይንም አዲስ ንድፍ ይጨምሩ" #: strings.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/am/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/am/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-02 23:24+0000\n" +"PO-Revision-Date: 2017-04-23 00:26+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1491175465.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907193.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "Copyright © 2000–2017 LibreOffice contributors." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/fpicker/source/office.po libreoffice-5.3.3~rc2/translations/source/am/fpicker/source/office.po --- libreoffice-5.3.3~rc1/translations/source/am/fpicker/source/office.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/fpicker/source/office.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:34+0200\n" -"PO-Revision-Date: 2016-12-10 03:10+0000\n" +"PO-Revision-Date: 2017-04-23 00:22+0000\n" "Last-Translator: Samson B \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1481339418.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492906959.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -250,7 +250,9 @@ msgid "" "Are you sure you want to delete the service?\n" "\"$servicename$\"" -msgstr "በ እርግጥ የተመረጠውን ግልጋሎት ማጥፋት ይፈልጋሉ?\"$servicename$\"" +msgstr "" +"በ እርግጥ የተመረጠውን ግልጋሎት ማጥፋት ይፈልጋሉ?\n" +"\"$servicename$\"" #: iodlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/officecfg/registry/data/org/openoffice/Office.po libreoffice-5.3.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-5.3.3~rc1/translations/source/am/officecfg/registry/data/org/openoffice/Office.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-19 16:49+0000\n" +"PO-Revision-Date: 2017-04-23 00:22+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489942189.000000\n" +"X-POOTLE-MTIME: 1492906925.000000\n" #: Addons.xcu msgctxt "" @@ -1292,7 +1292,7 @@ "STR_DELETE_SLIDES\n" "value.text" msgid "Delete %SLIDES slides." -msgstr "ማጥፊያ %ተንሸራታች ተንሸራታች" +msgstr "ማጥፊያ %ተንሸራታች ተንሸራታቾች" #: PresentationMinimizer.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/am/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/am/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-19 23:52+0000\n" +"PO-Revision-Date: 2017-04-23 00:20+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489967564.000000\n" +"X-POOTLE-MTIME: 1492906850.000000\n" #: filter.src msgctxt "" @@ -9112,7 +9112,7 @@ "1\n" "string.text" msgid "Not available. Returns the error value #N/A." -msgstr "ዝግጁ አይደለም የስህተት ዋጋ ይመልሳል #ዝ/አ" +msgstr "ዝግጁ አይደለም የ ስህተት ዋጋ ይመልሳል #ዝ/አ" #: scfuncs.src msgctxt "" @@ -23351,7 +23351,7 @@ "10\n" "string.text" msgid "triangulation_precision" -msgstr "" +msgstr "ሶስትዮሽ_ትክክለኛነት" #. This description uses almost all available space in the dialog, make sure translations fit in size. #: scfuncs.src diff -Nru libreoffice-5.3.3~rc1/translations/source/am/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/am/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/am/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-04 20:05+0000\n" +"PO-Revision-Date: 2017-04-23 00:28+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480881922.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907327.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "የ መሙያ አቀራረብ ዘዴ" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "አዲስ ዘዴ ከ ምርጫ ውስጥ" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "የ ማሻሻያ ዘዴ" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/svtools/source/dialogs.po libreoffice-5.3.3~rc2/translations/source/am/svtools/source/dialogs.po --- libreoffice-5.3.3~rc1/translations/source/am/svtools/source/dialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-20 00:15+0000\n" +"PO-Revision-Date: 2017-04-23 00:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1489968923.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907221.000000\n" #: addresstemplate.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "የ ጽሁፍ አቀራረብ [Richtext]" #: formats.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/am/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/am/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-14 15:46+0000\n" +"PO-Revision-Date: 2017-04-23 00:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481730375.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907229.000000\n" #: imagemgr.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "English (Malaysia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/am/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/am/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-02 18:33+0000\n" +"PO-Revision-Date: 2017-04-23 00:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480703596.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907258.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "SmartArts. መጫን አልተቻለም: ማስቀመጥ በ Microsoft Office 2010 ወይንም ከዚያ በኋላ ያሉ ይህን ችግር ያስወግዳሉ" #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/am/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/am/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/am/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/am/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-02 23:45+0000\n" +"PO-Revision-Date: 2017-04-23 00:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1491176727.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492907272.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "በ መደበኛ ዘዴ _እንደገና ማስጀመሪያ" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "ለውጦቹን _መፈጸሚያ እና እንደገና ማስጀመሪያ" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/sc/uiconfig/scalc/ui.po libreoffice-5.3.3~rc2/translations/source/bg/sc/uiconfig/scalc/ui.po --- libreoffice-5.3.3~rc1/translations/source/bg/sc/uiconfig/scalc/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-06 01:37+0000\n" +"PO-Revision-Date: 2017-04-30 11:29+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: none\n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488764263.000000\n" +"X-POOTLE-MTIME: 1493551781.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6284,7 +6284,7 @@ "label\n" "string.text" msgid "Left" -msgstr "" +msgstr "Наляво" #: notebookbar_groups.ui msgctxt "" @@ -6293,7 +6293,7 @@ "label\n" "string.text" msgid "Center" -msgstr "" +msgstr "Центриранe" #: notebookbar_groups.ui msgctxt "" @@ -6302,7 +6302,7 @@ "label\n" "string.text" msgid "Right" -msgstr "" +msgstr "Надясно" #: notebookbar_groups.ui msgctxt "" @@ -6311,7 +6311,7 @@ "label\n" "string.text" msgid "Text" -msgstr "" +msgstr "Текст" #: notebookbar_groups.ui msgctxt "" @@ -6356,7 +6356,7 @@ "label\n" "string.text" msgid "Conditional" -msgstr "" +msgstr "Условни" #: notebookbar_groups.ui msgctxt "" @@ -6365,7 +6365,7 @@ "label\n" "string.text" msgid "Top" -msgstr "" +msgstr "Отгоре" #: notebookbar_groups.ui msgctxt "" @@ -6374,7 +6374,7 @@ "label\n" "string.text" msgid "Center" -msgstr "" +msgstr "Центриране" #: notebookbar_groups.ui msgctxt "" @@ -6383,7 +6383,7 @@ "label\n" "string.text" msgid "Bottom" -msgstr "" +msgstr "Отдолу" #: notebookbar_groups.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/bg/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/bg/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-22 22:06+0000\n" +"PO-Revision-Date: 2017-04-30 11:31+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485122780.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493551873.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Режим на запълване" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Нов стил от избраното" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Обновяване на стил" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/svx/source/dialog.po libreoffice-5.3.3~rc2/translations/source/bg/svx/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/bg/svx/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/svx/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-04-13 10:43+0000\n" +"PO-Revision-Date: 2017-04-26 22:57+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492080220.000000\n" +"X-POOTLE-MTIME: 1493247441.000000\n" #: SafeMode.src msgctxt "" @@ -1040,7 +1040,7 @@ "Native Numbering\n" "itemlist.text" msgid "Native Numbering" -msgstr "" +msgstr "Местна номерация" #: pagenumbering.src msgctxt "" @@ -1354,7 +1354,7 @@ "All Pages\n" "itemlist.text" msgid "All Pages" -msgstr "" +msgstr "Всички страници" #: samecontent.src msgctxt "" @@ -1363,7 +1363,7 @@ "First Page\n" "itemlist.text" msgid "First Page" -msgstr "" +msgstr "Първа страница" #: samecontent.src msgctxt "" @@ -1372,7 +1372,7 @@ "Left and Right Pages\n" "itemlist.text" msgid "Left and Right Pages" -msgstr "" +msgstr "Леви и десни страници" #: samecontent.src msgctxt "" @@ -1381,7 +1381,7 @@ "First, Left and Right Pages\n" "itemlist.text" msgid "First, Left and Right Pages" -msgstr "" +msgstr "Първа, леви и десни страници" #: sdstring.src msgctxt "" @@ -2805,7 +2805,7 @@ "RID_SVXSTR_BMP0\n" "string.text" msgid "Empty" -msgstr "" +msgstr "Празно" #: sdstring.src msgctxt "" @@ -7400,7 +7400,7 @@ "RID_SUBSETSTR_ADLAM\n" "string.text" msgid "Adlam" -msgstr "" +msgstr "Адлам" #: ucsubset.src msgctxt "" @@ -7409,7 +7409,7 @@ "RID_SUBSETSTR_BHAIKSUKI\n" "string.text" msgid "Bhaiksuki" -msgstr "" +msgstr "Бхайкшуки" #: ucsubset.src msgctxt "" @@ -7436,7 +7436,7 @@ "RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION\n" "string.text" msgid "Ideographic Symbols and Punctuation" -msgstr "" +msgstr "Идеографски символи и пунктуация" #: ucsubset.src msgctxt "" @@ -7445,7 +7445,7 @@ "RID_SUBSETSTR_MARCHEN\n" "string.text" msgid "Marchen" -msgstr "" +msgstr "Марчен" #: ucsubset.src msgctxt "" @@ -7454,7 +7454,7 @@ "RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n" "string.text" msgid "Mongolian Supplement" -msgstr "" +msgstr "Монголски – допълнение" #: ucsubset.src msgctxt "" @@ -7463,7 +7463,7 @@ "RID_SUBSETSTR_NEWA\n" "string.text" msgid "Newa" -msgstr "" +msgstr "Нева" #: ucsubset.src msgctxt "" @@ -7472,7 +7472,7 @@ "RID_SUBSETSTR_OSAGE\n" "string.text" msgid "Osage" -msgstr "" +msgstr "Осейдж" #: ucsubset.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/svx/source/form.po libreoffice-5.3.3~rc2/translations/source/bg/svx/source/form.po --- libreoffice-5.3.3~rc1/translations/source/bg/svx/source/form.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/svx/source/form.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 20:43+0000\n" +"PO-Revision-Date: 2017-04-26 22:56+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487277780.000000\n" +"X-POOTLE-MTIME: 1493247400.000000\n" #: datanavi.src msgctxt "" @@ -1471,7 +1471,7 @@ "Collect\n" "itemlist.text" msgid "Collect" -msgstr "" +msgstr "Събиране" #: fmstring.src msgctxt "" @@ -1480,7 +1480,7 @@ "Fusion\n" "itemlist.text" msgid "Fusion" -msgstr "" +msgstr "Сливане" #: fmstring.src msgctxt "" @@ -1489,7 +1489,7 @@ "Intersection\n" "itemlist.text" msgid "Intersection" -msgstr "" +msgstr "Сечение" #: fmstring.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/bg/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/bg/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-02-16 15:14+0000\n" +"PO-Revision-Date: 2017-04-26 00:30+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1487258083.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493166628.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Не бе възможно да се заредят всички обекти SmartArt. Проблемът може да се избегне чрез записване във формат на Microsoft Office 2010 или по-нов." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/svx/source/tbxctrls.po libreoffice-5.3.3~rc2/translations/source/bg/svx/source/tbxctrls.po --- libreoffice-5.3.3~rc1/translations/source/bg/svx/source/tbxctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/svx/source/tbxctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 15:14+0000\n" +"PO-Revision-Date: 2017-04-26 22:54+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487258049.000000\n" +"X-POOTLE-MTIME: 1493247263.000000\n" #: colrctrl.src msgctxt "" @@ -486,7 +486,7 @@ "RID_SVXSTR_TRANSPARENT\n" "string.text" msgid "Transparent" -msgstr "" +msgstr "Прозрачност" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/bg/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/bg/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-23 01:06+0000\n" +"PO-Revision-Date: 2017-05-02 01:00+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485133562.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493686802.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -455,7 +455,7 @@ "label\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -473,7 +473,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -482,7 +482,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Ruby text" -msgstr "" +msgstr "Транслитериран текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -491,7 +491,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -500,7 +500,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Ruby text" -msgstr "" +msgstr "Транслитериран текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -509,7 +509,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Ruby text" -msgstr "" +msgstr "Транслитериран текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -518,7 +518,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Основен текст" #: asianphoneticguidedialog.ui msgctxt "" @@ -905,7 +905,7 @@ "label\n" "string.text" msgid "None" -msgstr "" +msgstr "Няма" #: colorwindow.ui msgctxt "" @@ -941,7 +941,7 @@ "label\n" "string.text" msgid "JPEG Quality" -msgstr "" +msgstr "Качество на JPEG" #: compressgraphicdialog.ui msgctxt "" @@ -950,7 +950,7 @@ "tooltip_text\n" "string.text" msgid "Lossy compression" -msgstr "" +msgstr "Компресия със загуби" #: compressgraphicdialog.ui msgctxt "" @@ -959,7 +959,7 @@ "label\n" "string.text" msgid "PNG Compression" -msgstr "" +msgstr "Компресия на PNG" #: compressgraphicdialog.ui msgctxt "" @@ -968,7 +968,7 @@ "tooltip_text\n" "string.text" msgid "Lossless compression" -msgstr "" +msgstr "Компресия без загуби" #: compressgraphicdialog.ui msgctxt "" @@ -977,7 +977,7 @@ "text\n" "string.text" msgid "90" -msgstr "" +msgstr "90" #: compressgraphicdialog.ui msgctxt "" @@ -986,7 +986,7 @@ "text\n" "string.text" msgid "9" -msgstr "" +msgstr "9" #: compressgraphicdialog.ui msgctxt "" @@ -995,7 +995,7 @@ "label\n" "string.text" msgid "Compression" -msgstr "" +msgstr "Компресия" #: compressgraphicdialog.ui msgctxt "" @@ -1049,7 +1049,7 @@ "text\n" "string.text" msgid "1" -msgstr "" +msgstr "1" #: compressgraphicdialog.ui msgctxt "" @@ -1058,7 +1058,7 @@ "text\n" "string.text" msgid "1" -msgstr "" +msgstr "1" #: compressgraphicdialog.ui msgctxt "" @@ -1094,7 +1094,7 @@ "label\n" "string.text" msgid "Resolution" -msgstr "" +msgstr "Разделителна способност" #: compressgraphicdialog.ui msgctxt "" @@ -1139,7 +1139,7 @@ "label\n" "string.text" msgid "Calculate New Size:" -msgstr "" +msgstr "Изчислен нов размер:" #: compressgraphicdialog.ui msgctxt "" @@ -1274,7 +1274,7 @@ "label\n" "string.text" msgid "Restart LibreOffice to enter Safe Mode" -msgstr "" +msgstr "Рестартиране на LibreOffice в безопасен режим" #: datanavigator.ui msgctxt "" @@ -1391,7 +1391,7 @@ "label\n" "string.text" msgid "Lines & Arrows" -msgstr "" +msgstr "Линии и стрелки" #: defaultshapespanel.ui msgctxt "" @@ -1400,7 +1400,7 @@ "label\n" "string.text" msgid "Curve" -msgstr "" +msgstr "Крива" #: defaultshapespanel.ui msgctxt "" @@ -1409,7 +1409,7 @@ "label\n" "string.text" msgid "Connectors" -msgstr "" +msgstr "Съединителни линии" #: defaultshapespanel.ui msgctxt "" @@ -1418,7 +1418,7 @@ "label\n" "string.text" msgid "Basic Shapes" -msgstr "" +msgstr "Основни фигури" #: defaultshapespanel.ui msgctxt "" @@ -1427,7 +1427,7 @@ "label\n" "string.text" msgid "Symbols" -msgstr "" +msgstr "Символи" #: defaultshapespanel.ui msgctxt "" @@ -1436,7 +1436,7 @@ "label\n" "string.text" msgid "Block Arrows" -msgstr "" +msgstr "Блокови стрелки" #: defaultshapespanel.ui msgctxt "" @@ -1445,7 +1445,7 @@ "label\n" "string.text" msgid "Flowchart" -msgstr "" +msgstr "Блоксхема" #: defaultshapespanel.ui msgctxt "" @@ -1454,7 +1454,7 @@ "label\n" "string.text" msgid "Callouts" -msgstr "" +msgstr "Изнесени означения" #: defaultshapespanel.ui msgctxt "" @@ -1463,7 +1463,7 @@ "label\n" "string.text" msgid "Stars" -msgstr "" +msgstr "Звезди" #: defaultshapespanel.ui msgctxt "" @@ -1472,7 +1472,7 @@ "label\n" "string.text" msgid "3D Objects" -msgstr "" +msgstr "Триизмерни обекти" #: deletefooterdialog.ui msgctxt "" @@ -2345,7 +2345,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 2" -msgstr "" +msgstr "Изходен цвят 2" #: dockingcolorreplace.ui msgctxt "" @@ -2354,7 +2354,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 3" -msgstr "" +msgstr "Изходен цвят 3" #: dockingcolorreplace.ui msgctxt "" @@ -2363,7 +2363,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 4" -msgstr "" +msgstr "Изходен цвят 4" #: dockingcolorreplace.ui msgctxt "" @@ -2372,7 +2372,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Source Color 1" -msgstr "" +msgstr "Изходен цвят 1" #: dockingcolorreplace.ui msgctxt "" @@ -2390,7 +2390,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 1" -msgstr "" +msgstr "Толеранс 1" #: dockingcolorreplace.ui msgctxt "" @@ -2399,7 +2399,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 2" -msgstr "" +msgstr "Толеранс 2" #: dockingcolorreplace.ui msgctxt "" @@ -2408,7 +2408,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 3" -msgstr "" +msgstr "Толеранс 3" #: dockingcolorreplace.ui msgctxt "" @@ -2417,7 +2417,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tolerance 4" -msgstr "" +msgstr "Толеранс 4" #: dockingcolorreplace.ui msgctxt "" @@ -2426,7 +2426,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 1" -msgstr "" +msgstr "Замяна с 1" #: dockingcolorreplace.ui msgctxt "" @@ -2435,7 +2435,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 2" -msgstr "" +msgstr "Замяна с 2" #: dockingcolorreplace.ui msgctxt "" @@ -2444,7 +2444,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 3" -msgstr "" +msgstr "Замяна с 3" #: dockingcolorreplace.ui msgctxt "" @@ -2453,7 +2453,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Replace with 4" -msgstr "" +msgstr "Замяна с 4" #: dockingcolorreplace.ui msgctxt "" @@ -2756,7 +2756,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery" -msgstr "" +msgstr "Възстановяване на документ на %PRODUCTNAME %PRODUCTVERSION" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2765,7 +2765,7 @@ "label\n" "string.text" msgid "_Discard" -msgstr "" +msgstr "Отхвърляне" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2774,7 +2774,7 @@ "label\n" "string.text" msgid "_Start" -msgstr "" +msgstr "Стартиране" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2783,7 +2783,7 @@ "label\n" "string.text" msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery." -msgstr "" +msgstr "%PRODUCTNAME ще се опита да възстанови файловете във вида им отпреди срива. Натиснете „Стартиране“, за да започнете процеса, или „Отхвърляне“, за да отмените възстановяването." #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2819,7 +2819,7 @@ "title\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery" -msgstr "" +msgstr "Възстановяване на документ на %PRODUCTNAME %PRODUCTVERSION" #: docrecoverysavedialog.ui msgctxt "" @@ -2900,7 +2900,7 @@ "label\n" "string.text" msgid "For_matted display" -msgstr "" +msgstr "Зачитане на формàта" #: findreplacedialog.ui msgctxt "" @@ -2927,7 +2927,7 @@ "label\n" "string.text" msgid "All _sheets" -msgstr "" +msgstr "Всички листове" #: findreplacedialog.ui msgctxt "" @@ -2972,7 +2972,7 @@ "label\n" "string.text" msgid "Find Pre_vious" -msgstr "" +msgstr "Предишно срещане" #: findreplacedialog.ui msgctxt "" @@ -2981,7 +2981,7 @@ "label\n" "string.text" msgid "Find Ne_xt" -msgstr "" +msgstr "Следващо срещане" #: findreplacedialog.ui msgctxt "" @@ -3017,7 +3017,7 @@ "label\n" "string.text" msgid "Re_gular expressions" -msgstr "" +msgstr "Регулярни изрази" #: findreplacedialog.ui msgctxt "" @@ -3026,7 +3026,7 @@ "label\n" "string.text" msgid "Attribut_es..." -msgstr "" +msgstr "Атрибути..." #: findreplacedialog.ui msgctxt "" @@ -3062,7 +3062,7 @@ "label\n" "string.text" msgid "Ignore diac_ritics" -msgstr "" +msgstr "Игнориране на диакритичните знаци" #: findreplacedialog.ui msgctxt "" @@ -3071,7 +3071,7 @@ "label\n" "string.text" msgid "Ignore _kashida" -msgstr "" +msgstr "Игнориране на кашида" #: findreplacedialog.ui msgctxt "" @@ -3107,7 +3107,7 @@ "label\n" "string.text" msgid "Sounds like (_Japanese)" -msgstr "" +msgstr "Подобно звучене (японски)" #: findreplacedialog.ui msgctxt "" @@ -3143,7 +3143,7 @@ "label\n" "string.text" msgid "Replace _backwards" -msgstr "" +msgstr "Замяна назад" #: findreplacedialog.ui msgctxt "" @@ -3206,7 +3206,7 @@ "label\n" "string.text" msgid "Colum_ns" -msgstr "" +msgstr "Колони" #: findreplacedialog.ui msgctxt "" @@ -3224,7 +3224,7 @@ "label\n" "string.text" msgid "_Angle:" -msgstr "" +msgstr "Ъгъл:" #: floatingareastyle.ui msgctxt "" @@ -3233,7 +3233,7 @@ "tooltip_text\n" "string.text" msgid "Specify the angle of rotation for the gradient shading style." -msgstr "" +msgstr "Задайте ъгъла на завъртане за градиента." #: floatingareastyle.ui msgctxt "" @@ -3242,7 +3242,7 @@ "tooltip_text\n" "string.text" msgid "Rotate counterclockwise by 45 degrees." -msgstr "" +msgstr "Завъртане на 45° обратно на часовниковата стрелка." #: floatingareastyle.ui msgctxt "" @@ -3251,7 +3251,7 @@ "tooltip_text\n" "string.text" msgid "Rotate clockwise by 45 degrees." -msgstr "" +msgstr "Завъртане на 45° по часовниковата стрелка." #: floatingareastyle.ui msgctxt "" @@ -3260,7 +3260,7 @@ "label\n" "string.text" msgid "_Start value:" -msgstr "" +msgstr "Начална стойност:" #: floatingareastyle.ui msgctxt "" @@ -3269,7 +3269,7 @@ "label\n" "string.text" msgid "_End value:" -msgstr "" +msgstr "Крайна стойност:" #: floatingareastyle.ui msgctxt "" @@ -3278,7 +3278,7 @@ "tooltip_text\n" "string.text" msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "" +msgstr "Въведете стойност за прозрачността в началото на градиента, където 0% е непрозрачно, а 100% е напълно прозрачно." #: floatingareastyle.ui msgctxt "" @@ -3287,7 +3287,7 @@ "tooltip_text\n" "string.text" msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "" +msgstr "Въведете стойност за прозрачността в края на градиента, където 0% е непрозрачно, а 100% е напълно прозрачно." #: floatingareastyle.ui msgctxt "" @@ -3296,7 +3296,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingareastyle.ui msgctxt "" @@ -3305,7 +3305,7 @@ "label\n" "string.text" msgid "_Border:" -msgstr "" +msgstr "Граница:" #: floatingareastyle.ui msgctxt "" @@ -3314,7 +3314,7 @@ "tooltip_text\n" "string.text" msgid "Specify the border value of gradient transparency." -msgstr "" +msgstr "Задайте ширината на канта за градиента на прозрачността." #: floatingareastyle.ui msgctxt "" @@ -3323,7 +3323,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingareastyle.ui msgctxt "" @@ -3332,7 +3332,7 @@ "label\n" "string.text" msgid "Center _X:" -msgstr "" +msgstr "Център по X:" #: floatingareastyle.ui msgctxt "" @@ -3341,7 +3341,7 @@ "label\n" "string.text" msgid "Center _Y:" -msgstr "" +msgstr "Център по Y:" #: floatingareastyle.ui msgctxt "" @@ -3350,7 +3350,7 @@ "tooltip_text\n" "string.text" msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center." -msgstr "" +msgstr "Задайте хоризонталното отместване за градиента на прозрачността в проценти спрямо центъра. 50% е центърът по хоризонтала." #: floatingareastyle.ui msgctxt "" @@ -3359,7 +3359,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingareastyle.ui msgctxt "" @@ -3368,7 +3368,7 @@ "tooltip_text\n" "string.text" msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center." -msgstr "" +msgstr "Задайте вертикалното отместване за градиента на прозрачността в проценти спрямо центъра. 50% е центърът по вертикала." #: floatingareastyle.ui msgctxt "" @@ -3377,7 +3377,7 @@ "text\n" "string.text" msgid "0" -msgstr "" +msgstr "0" #: floatingcontour.ui msgctxt "" @@ -3626,7 +3626,7 @@ "label\n" "string.text" msgid "Same _content on left and right pages" -msgstr "" +msgstr "Еднакво съдържание на леви и десни страници" #: headfootformatpage.ui msgctxt "" @@ -3977,7 +3977,7 @@ "label\n" "string.text" msgid "Playback:" -msgstr "" +msgstr "Възпроизвеждане:" #: mediaplayback.ui msgctxt "" @@ -3986,7 +3986,7 @@ "label\n" "string.text" msgid "Seek:" -msgstr "" +msgstr "Превъртане:" #: mediaplayback.ui msgctxt "" @@ -3995,7 +3995,7 @@ "label\n" "string.text" msgid "Volume:" -msgstr "" +msgstr "Сила:" #: mediaplayback.ui msgctxt "" @@ -4004,7 +4004,7 @@ "tooltip_text\n" "string.text" msgid "View" -msgstr "" +msgstr "Изглед" #: namespacedialog.ui msgctxt "" @@ -4328,7 +4328,7 @@ "1\n" "stringlist.text" msgid "1.15 Lines" -msgstr "" +msgstr "1,15 реда" #: paralinespacingcontrol.ui msgctxt "" @@ -4337,7 +4337,7 @@ "2\n" "stringlist.text" msgid "1.5 Lines" -msgstr "" +msgstr "1,5 реда" #: paralinespacingcontrol.ui msgctxt "" @@ -4346,7 +4346,7 @@ "3\n" "stringlist.text" msgid "Double" -msgstr "" +msgstr "Двойно" #: paralinespacingcontrol.ui msgctxt "" @@ -4355,7 +4355,7 @@ "4\n" "stringlist.text" msgid "Proportional" -msgstr "" +msgstr "Пропорционално" #: paralinespacingcontrol.ui msgctxt "" @@ -4364,7 +4364,7 @@ "5\n" "stringlist.text" msgid "At least" -msgstr "" +msgstr "Най-малко" #: paralinespacingcontrol.ui msgctxt "" @@ -4373,7 +4373,7 @@ "6\n" "stringlist.text" msgid "Leading" -msgstr "" +msgstr "Просвет" #: paralinespacingcontrol.ui msgctxt "" @@ -4382,7 +4382,7 @@ "7\n" "stringlist.text" msgid "Fixed" -msgstr "" +msgstr "Фиксирани" #: paralinespacingcontrol.ui msgctxt "" @@ -4409,7 +4409,7 @@ "label\n" "string.text" msgid "Before" -msgstr "" +msgstr "Преди" #: paralrspacing.ui msgctxt "" @@ -4418,7 +4418,7 @@ "tooltip_text\n" "string.text" msgid "Before Text Indent" -msgstr "" +msgstr "Отстъп преди текста" #: paralrspacing.ui msgctxt "" @@ -4427,7 +4427,7 @@ "label\n" "string.text" msgid "After" -msgstr "" +msgstr "След" #: paralrspacing.ui msgctxt "" @@ -4436,7 +4436,7 @@ "tooltip_text\n" "string.text" msgid "After Text Indent" -msgstr "" +msgstr "Отстъп след текста" #: paralrspacing.ui msgctxt "" @@ -4445,7 +4445,7 @@ "label\n" "string.text" msgid "First line" -msgstr "" +msgstr "Първи ред" #: paralrspacing.ui msgctxt "" @@ -4454,7 +4454,7 @@ "tooltip_text\n" "string.text" msgid "First Line Indent" -msgstr "" +msgstr "Отстъп на първия ред" #: paraulspacing.ui msgctxt "" @@ -4463,7 +4463,7 @@ "label\n" "string.text" msgid "Above" -msgstr "" +msgstr "Отгоре" #: paraulspacing.ui msgctxt "" @@ -4472,7 +4472,7 @@ "label\n" "string.text" msgid "Below" -msgstr "" +msgstr "Отдолу" #: paraulspacing.ui msgctxt "" @@ -4481,7 +4481,7 @@ "tooltip_text\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Разстояние над абзаца" #: paraulspacing.ui msgctxt "" @@ -4490,7 +4490,7 @@ "tooltip_text\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Разстояние под абзаца" #: passwd.ui msgctxt "" @@ -4553,7 +4553,7 @@ "title\n" "string.text" msgid "Profile exported" -msgstr "" +msgstr "Профилът е експортиран" #: profileexporteddialog.ui msgctxt "" @@ -4562,7 +4562,7 @@ "label\n" "string.text" msgid "Open Containing _Folder" -msgstr "" +msgstr "Отваряне на съдържащата папка" #: profileexporteddialog.ui msgctxt "" @@ -4571,7 +4571,7 @@ "label\n" "string.text" msgid "Your user profile has been exported as “libreoffice-profile.zip”." -msgstr "" +msgstr "Потребителският ви профил е експортиран като „libreoffice-profile.zip“." #: querydeletecontourdialog.ui msgctxt "" @@ -4818,7 +4818,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Comment" -msgstr "" +msgstr "Коментар" #: redlinefilterpage.ui msgctxt "" @@ -4854,7 +4854,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Author" -msgstr "" +msgstr "Автор" #: redlinefilterpage.ui msgctxt "" @@ -4863,7 +4863,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Range" -msgstr "" +msgstr "Диапазон" #: redlinefilterpage.ui msgctxt "" @@ -5061,7 +5061,7 @@ "title\n" "string.text" msgid "Safe Mode" -msgstr "" +msgstr "Безопасен режим" #: safemodedialog.ui msgctxt "" @@ -5070,7 +5070,7 @@ "label\n" "string.text" msgid "_Continue in Safe Mode" -msgstr "" +msgstr "Продължаване в безопасен режим" #: safemodedialog.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "Рестартиране в нормален режим" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "Прилагане на промените и рестартиране" #: safemodedialog.ui msgctxt "" @@ -5103,6 +5103,11 @@ "\n" "The proposed changes get more radical from top down so it is recommended to try them successively one after another." msgstr "" +"В момента %PRODUCTNAME се изпълнява в безопасен режим, който временно изключва потребителската ви конфигурация и разширенията.\n" +"\n" +"За да възстановите работоспособността на %PRODUCTNAME, можете да внесете една или повече от следните промени в потребителския си профил.\n" +"\n" +"Предложените промени стават все по-радикални в посока към края на списъка, затова се препоръчва да ги изпробвате в показания ред." #: safemodedialog.ui msgctxt "" @@ -5111,7 +5116,7 @@ "label\n" "string.text" msgid "Restore from backup" -msgstr "" +msgstr "Възстановяване от резервно копие" #: safemodedialog.ui msgctxt "" @@ -5120,7 +5125,7 @@ "label\n" "string.text" msgid "Restore user configuration to the last known working state" -msgstr "" +msgstr "Възстановяване на потребителската конфигурация до последното работещо състояние" #: safemodedialog.ui msgctxt "" @@ -5129,7 +5134,7 @@ "label\n" "string.text" msgid "Restore state of installed user extensions to the last known working state" -msgstr "" +msgstr "Възстановяване на инсталираните от потребителя разширения до последното работещо състояние" #: safemodedialog.ui msgctxt "" @@ -5138,7 +5143,7 @@ "label\n" "string.text" msgid "Configure" -msgstr "" +msgstr "Конфигуриране" #: safemodedialog.ui msgctxt "" @@ -5147,7 +5152,7 @@ "label\n" "string.text" msgid "Disable all user extensions" -msgstr "" +msgstr "Изключване на всички потребителски разширения" #: safemodedialog.ui msgctxt "" @@ -5156,7 +5161,7 @@ "label\n" "string.text" msgid "Disable hardware acceleration (OpenGL, OpenCL)" -msgstr "" +msgstr "Изключване на хардуерното ускорение (OpenGL, OpenCL)" #: safemodedialog.ui msgctxt "" @@ -5165,7 +5170,7 @@ "label\n" "string.text" msgid "Extensions" -msgstr "" +msgstr "Разширения" #: safemodedialog.ui msgctxt "" @@ -5174,7 +5179,7 @@ "label\n" "string.text" msgid "Uninstall all user extensions" -msgstr "" +msgstr "Деинсталиране на всички потребителски разширения" #: safemodedialog.ui msgctxt "" @@ -5183,7 +5188,7 @@ "label\n" "string.text" msgid "Reset state of shared extensions" -msgstr "" +msgstr "Нулиране състоянието на споделените разширения" #: safemodedialog.ui msgctxt "" @@ -5192,7 +5197,7 @@ "label\n" "string.text" msgid "Reset state of bundled extensions" -msgstr "" +msgstr "Нулиране състоянието на вградените разширения" #: safemodedialog.ui msgctxt "" @@ -5201,7 +5206,7 @@ "label\n" "string.text" msgid "Reset to factory settings" -msgstr "" +msgstr "Връщане към фабричните настройки" #: safemodedialog.ui msgctxt "" @@ -5210,7 +5215,7 @@ "label\n" "string.text" msgid "Reset settings and user interface modifications" -msgstr "" +msgstr "Нулиране на настройките и промените в потребителския интерфейс" #: safemodedialog.ui msgctxt "" @@ -5219,7 +5224,7 @@ "label\n" "string.text" msgid "Reset entire user profile" -msgstr "" +msgstr "Нулиране на целия потребителски профил" #: safemodedialog.ui msgctxt "" @@ -5228,7 +5233,7 @@ "label\n" "string.text" msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug." -msgstr "" +msgstr "Ако срещнете проблеми, които не се разрешават с помощта на безопасния режим, посетете следния адрес, за да получите помощ или да съобщите за дефект." #: safemodedialog.ui msgctxt "" @@ -5237,7 +5242,7 @@ "label\n" "string.text" msgid "Get Help" -msgstr "" +msgstr "Помощ" #: safemodedialog.ui msgctxt "" @@ -5246,7 +5251,7 @@ "label\n" "string.text" msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)." -msgstr "" +msgstr "Можете да включите в доклада за грешка уместни части от потребителския профил (възможно е да съдържа лични данни)." #: safemodedialog.ui msgctxt "" @@ -5255,7 +5260,7 @@ "label\n" "string.text" msgid "Create Zip Archive from User Profile" -msgstr "" +msgstr "Архивиране на потребителския профил (Zip)" #: safemodedialog.ui msgctxt "" @@ -5264,7 +5269,7 @@ "label\n" "string.text" msgid "Show User Profile" -msgstr "" +msgstr "Показване на потребителския профил" #: safemodedialog.ui msgctxt "" @@ -5273,7 +5278,7 @@ "label\n" "string.text" msgid "Advanced" -msgstr "" +msgstr "Разширени" #: savemodifieddialog.ui msgctxt "" @@ -5453,7 +5458,7 @@ "label\n" "string.text" msgid "_Import" -msgstr "" +msgstr "Импортиране" #: sidebararea.ui msgctxt "" @@ -5687,7 +5692,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color mode" -msgstr "" +msgstr "Цветови режим" #: sidebargraphic.ui msgctxt "" @@ -5732,7 +5737,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Red" -msgstr "" +msgstr "Червено" #: sidebargraphic.ui msgctxt "" @@ -5750,7 +5755,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Green" -msgstr "" +msgstr "Зелено" #: sidebargraphic.ui msgctxt "" @@ -5768,7 +5773,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Blue" -msgstr "" +msgstr "Синьо" #: sidebargraphic.ui msgctxt "" @@ -6092,7 +6097,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Разстояние над абзаца" #: sidebarparagraph.ui msgctxt "" @@ -6110,7 +6115,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Разстояние под абзаца" #: sidebarparagraph.ui msgctxt "" @@ -6182,7 +6187,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Before Text Indent" -msgstr "" +msgstr "Отстъп преди текста" #: sidebarparagraph.ui msgctxt "" @@ -6200,7 +6205,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "After Text Indent" -msgstr "" +msgstr "Отстъп след текста" #: sidebarparagraph.ui msgctxt "" @@ -6218,7 +6223,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "First Line Indent" -msgstr "" +msgstr "Отстъп на първия ред" #: sidebarparagraph.ui msgctxt "" @@ -6236,7 +6241,7 @@ "label\n" "string.text" msgid "Position _X:" -msgstr "" +msgstr "Позиция по Х:" #: sidebarpossize.ui msgctxt "" @@ -6263,7 +6268,7 @@ "label\n" "string.text" msgid "Position _Y:" -msgstr "" +msgstr "Позиция по Y:" #: sidebarpossize.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/sw/source/ui/utlui.po libreoffice-5.3.3~rc2/translations/source/bg/sw/source/ui/utlui.po --- libreoffice-5.3.3~rc1/translations/source/bg/sw/source/ui/utlui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +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: 2017-01-26 17:29+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-30 11:21+0000\n" +"Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493551308.000000\n" #: poolfmt.src msgctxt "" @@ -1131,7 +1134,7 @@ "STR_POOLCOLL_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "Цитат" +msgstr "Позоваване" #: 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-5.3.3~rc1/translations/source/bg/sw/source/uibase/utlui.po libreoffice-5.3.3~rc2/translations/source/bg/sw/source/uibase/utlui.po --- libreoffice-5.3.3~rc1/translations/source/bg/sw/source/uibase/utlui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/sw/source/uibase/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-25 23:08+0000\n" +"PO-Revision-Date: 2017-04-30 11:21+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485385696.000000\n" +"X-POOTLE-MTIME: 1493551312.000000\n" #: attrdesc.src msgctxt "" @@ -878,7 +878,7 @@ "STR_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "Цитат" +msgstr "Позоваване" #: initui.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/bg/sw/uiconfig/swriter/ui.po libreoffice-5.3.3~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po --- libreoffice-5.3.3~rc1/translations/source/bg/sw/uiconfig/swriter/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/bg/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-27 01:49+0000\n" +"PO-Revision-Date: 2017-04-30 11:31+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: none\n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485481750.000000\n" +"X-POOTLE-MTIME: 1493551899.000000\n" #: abstractdialog.ui msgctxt "" @@ -12683,7 +12683,6 @@ msgstr "Пейзаж" #: pageorientationcontrol.ui -#, fuzzy msgctxt "" "pageorientationcontrol.ui\n" "landscape\n" diff -Nru libreoffice-5.3.3~rc1/translations/source/br/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/br/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/br/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/br/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-18 08:24+0000\n" +"PO-Revision-Date: 2017-05-03 08:18+0000\n" "Last-Translator: Tornoz \n" "Language-Team: none\n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492503871.000000\n" +"X-POOTLE-MTIME: 1493799513.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -12688,7 +12688,7 @@ "label\n" "string.text" msgid "_Notebookbar icon size:" -msgstr "" +msgstr "Ment arlunioù ar _vetabarrenn:" #: optviewpage.ui msgctxt "" @@ -12697,7 +12697,7 @@ "0\n" "stringlist.text" msgid "Automatic" -msgstr "" +msgstr "Emgefreek" #: optviewpage.ui msgctxt "" @@ -12706,7 +12706,7 @@ "1\n" "stringlist.text" msgid "Small" -msgstr "" +msgstr "Bihan" #: optviewpage.ui msgctxt "" @@ -12715,7 +12715,7 @@ "2\n" "stringlist.text" msgid "Large" -msgstr "" +msgstr "Bras" #: optviewpage.ui msgctxt "" @@ -12967,7 +12967,7 @@ "label\n" "string.text" msgid "Page numbers:" -msgstr "" +msgstr "Niverennoù pajenn:" #: pageformatpage.ui msgctxt "" @@ -13450,7 +13450,7 @@ "1\n" "stringlist.text" msgid "1.15 Lines" -msgstr "" +msgstr "1,15 linenn" #: paraindentspacing.ui msgctxt "" @@ -13459,7 +13459,7 @@ "2\n" "stringlist.text" msgid "1.5 Lines" -msgstr "" +msgstr "1,5 linenn" #: paraindentspacing.ui msgctxt "" @@ -13468,7 +13468,7 @@ "3\n" "stringlist.text" msgid "Double" -msgstr "" +msgstr "Daougement" #: paraindentspacing.ui msgctxt "" @@ -13477,7 +13477,7 @@ "4\n" "stringlist.text" msgid "Proportional" -msgstr "" +msgstr "Kenfeuriek" #: paraindentspacing.ui msgctxt "" @@ -13486,7 +13486,7 @@ "5\n" "stringlist.text" msgid "At least" -msgstr "" +msgstr "Da vihanañ" #: paraindentspacing.ui msgctxt "" @@ -13495,7 +13495,7 @@ "6\n" "stringlist.text" msgid "Leading" -msgstr "" +msgstr "Lizherennerezhel" #: paratabspage.ui msgctxt "" @@ -13648,7 +13648,7 @@ "label\n" "string.text" msgid "points" -msgstr "" +msgstr "a bikennoù" #: paratabspage.ui msgctxt "" @@ -13657,7 +13657,7 @@ "label\n" "string.text" msgid "dashes" -msgstr "" +msgstr "a c'hourzhelloù" #: paratabspage.ui msgctxt "" @@ -13666,7 +13666,7 @@ "label\n" "string.text" msgid "underscores" -msgstr "" +msgstr "a islinennoù" #: password.ui msgctxt "" @@ -13792,7 +13792,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "_Daskemmañ" #: patterntabpage.ui msgctxt "" @@ -13801,7 +13801,7 @@ "label\n" "string.text" msgid "Pattern" -msgstr "" +msgstr "Goustur" #: patterntabpage.ui msgctxt "" @@ -13810,7 +13810,7 @@ "label\n" "string.text" msgid "Pattern Editor:" -msgstr "" +msgstr "Embanner goustur:" #: patterntabpage.ui msgctxt "" @@ -13819,7 +13819,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Pattern Editor" -msgstr "" +msgstr "Embanner goustur" #: patterntabpage.ui msgctxt "" @@ -13828,7 +13828,7 @@ "label\n" "string.text" msgid "Foreground Color:" -msgstr "" +msgstr "Liv ar rakva:" #: patterntabpage.ui msgctxt "" @@ -13837,7 +13837,7 @@ "label\n" "string.text" msgid "Background Color:" -msgstr "" +msgstr "Liv an drekleur:" #: patterntabpage.ui msgctxt "" @@ -13846,7 +13846,7 @@ "label\n" "string.text" msgid "Options" -msgstr "" +msgstr "Dibarzhioù" #: patterntabpage.ui msgctxt "" @@ -13855,7 +13855,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Example" -msgstr "" +msgstr "Skouer" #: patterntabpage.ui msgctxt "" @@ -13864,7 +13864,7 @@ "label\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Alberz" #: percentdialog.ui msgctxt "" @@ -14764,7 +14764,7 @@ "title\n" "string.text" msgid "Interactive Screenshot Annotation" -msgstr "" +msgstr "Notennoù etrewezhiat a dapadoù-skramm" #: screenshotannotationdialog.ui msgctxt "" @@ -14773,7 +14773,7 @@ "label\n" "string.text" msgid "Save Screenshot..." -msgstr "" +msgstr "Enrollañ an dapadenn-skramm..." #: screenshotannotationdialog.ui msgctxt "" @@ -14782,7 +14782,7 @@ "label\n" "string.text" msgid "Click the widgets to add annotation:" -msgstr "" +msgstr "Klikit war ar widjed evit ouzhpennañ un notenn" #: screenshotannotationdialog.ui msgctxt "" @@ -14791,7 +14791,7 @@ "label\n" "string.text" msgid "Paste the following markup into the help file:" -msgstr "" +msgstr "Pegit ar c'hlav da-heul e-barzh ar restr skoazell:" #: scriptorganizer.ui msgctxt "" @@ -15034,7 +15034,7 @@ "label\n" "string.text" msgid "Ctrl-click required _to follow links" -msgstr "" +msgstr "Reol + klik azgoulennet _a-benn heuliañ ereoù" #: securityoptionsdialog.ui msgctxt "" @@ -16240,7 +16240,7 @@ "label\n" "string.text" msgid "Drawing Object Text" -msgstr "" +msgstr "Testenn ergorenn an dresadenn" #: textattrtabpage.ui msgctxt "" @@ -16267,7 +16267,7 @@ "label\n" "string.text" msgid "Custom Shape Text" -msgstr "" +msgstr "Testenn gant ur stumm personelaet" #: textattrtabpage.ui msgctxt "" @@ -16456,7 +16456,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Page Style" -msgstr "" +msgstr "Giz ar bajenn" #: textflowpage.ui msgctxt "" @@ -17140,7 +17140,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Variable" -msgstr "" +msgstr "Argemmenn" #: zoomdialog.ui msgctxt "" @@ -17185,7 +17185,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Columns" -msgstr "" +msgstr "Bannoù" #: zoomdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/br/extensions/source/bibliography.po libreoffice-5.3.3~rc2/translations/source/br/extensions/source/bibliography.po --- libreoffice-5.3.3~rc1/translations/source/br/extensions/source/bibliography.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/br/extensions/source/bibliography.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:17+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-05-03 08:19+0000\n" +"Last-Translator: Tornoz \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467652655.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493799552.000000\n" #: bib.src msgctxt "" @@ -94,7 +94,7 @@ "ST_TYPE_CONFERENCE\n" "string.text" msgid "Conference proceedings article (BiBTeX)" -msgstr "" +msgstr "Pennad a akta prezegennoù (BiBTeX)" #: sections.src msgctxt "" @@ -118,7 +118,7 @@ "ST_TYPE_INPROCEEDINGS\n" "string.text" msgid "Conference proceedings article" -msgstr "" +msgstr "Pennad a akta prezegennoù" #: sections.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/br/extensions/source/propctrlr.po libreoffice-5.3.3~rc2/translations/source/br/extensions/source/propctrlr.po --- libreoffice-5.3.3~rc1/translations/source/br/extensions/source/propctrlr.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/br/extensions/source/propctrlr.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 17:18+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-05-03 08:51+0000\n" +"Last-Translator: Tornoz \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467652689.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493801467.000000\n" #: formlinkdialog.src msgctxt "" @@ -272,7 +272,7 @@ "Top\n" "itemlist.text" msgid "Top" -msgstr "" +msgstr "Krec'h" #: formres.src msgctxt "" @@ -281,7 +281,7 @@ "Middle\n" "itemlist.text" msgid "Middle" -msgstr "" +msgstr "Kreiz" #: formres.src msgctxt "" @@ -290,7 +290,7 @@ "Bottom\n" "itemlist.text" msgid "Bottom" -msgstr "" +msgstr "Traoñ" #: formres.src msgctxt "" @@ -339,7 +339,7 @@ "Small\n" "itemlist.text" msgid "Small" -msgstr "" +msgstr "Bihan" #: formres.src msgctxt "" @@ -348,7 +348,7 @@ "Large\n" "itemlist.text" msgid "Large" -msgstr "" +msgstr "Bras" #: formres.src msgctxt "" @@ -901,7 +901,7 @@ "Without frame\n" "itemlist.text" msgid "Without frame" -msgstr "" +msgstr "Hep framm" #: formres.src msgctxt "" @@ -910,7 +910,7 @@ "3D look\n" "itemlist.text" msgid "3D look" -msgstr "" +msgstr "Neuz 3M" #: formres.src msgctxt "" @@ -919,7 +919,7 @@ "Flat\n" "itemlist.text" msgid "Flat" -msgstr "" +msgstr "Plaen" #: formres.src msgctxt "" @@ -928,7 +928,7 @@ "Valuelist\n" "itemlist.text" msgid "Valuelist" -msgstr "" +msgstr "Rollgwerzhioù" #: formres.src msgctxt "" @@ -937,7 +937,7 @@ "Table\n" "itemlist.text" msgid "Table" -msgstr "" +msgstr "Taolenn" #: formres.src msgctxt "" @@ -946,7 +946,7 @@ "Query\n" "itemlist.text" msgid "Query" -msgstr "" +msgstr "Goulenn" #: formres.src msgctxt "" @@ -955,7 +955,7 @@ "Sql\n" "itemlist.text" msgid "Sql" -msgstr "" +msgstr "Sql" #: formres.src msgctxt "" @@ -964,7 +964,7 @@ "Sql [Native]\n" "itemlist.text" msgid "Sql [Native]" -msgstr "" +msgstr "Sql [genidik]" #: formres.src msgctxt "" @@ -982,7 +982,7 @@ "Left\n" "itemlist.text" msgid "Left" -msgstr "" +msgstr "Kleiz" #: formres.src msgctxt "" @@ -991,7 +991,7 @@ "Center\n" "itemlist.text" msgid "Center" -msgstr "" +msgstr "Kreizañ" #: formres.src msgctxt "" @@ -1000,7 +1000,7 @@ "Right\n" "itemlist.text" msgid "Right" -msgstr "" +msgstr "Dehou" #: formres.src msgctxt "" @@ -1009,7 +1009,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Tra ebet" #: formres.src msgctxt "" @@ -1018,7 +1018,7 @@ "Submit form\n" "itemlist.text" msgid "Submit form" -msgstr "" +msgstr "Kas ar furmskrid" #: formres.src msgctxt "" @@ -1027,7 +1027,7 @@ "Reset form\n" "itemlist.text" msgid "Reset form" -msgstr "" +msgstr "Deraouekaat ar furmskrid" #: formres.src msgctxt "" @@ -1036,7 +1036,7 @@ "Open document/web page\n" "itemlist.text" msgid "Open document/web page" -msgstr "" +msgstr "Digeriñ an teul/ar bajenn web" #: formres.src msgctxt "" @@ -1045,7 +1045,7 @@ "First record\n" "itemlist.text" msgid "First record" -msgstr "" +msgstr "Enrolladenn gentañ" #: formres.src msgctxt "" @@ -1054,7 +1054,7 @@ "Previous record\n" "itemlist.text" msgid "Previous record" -msgstr "" +msgstr "Enrolladenn gent" #: formres.src msgctxt "" @@ -1063,7 +1063,7 @@ "Next record\n" "itemlist.text" msgid "Next record" -msgstr "" +msgstr "Enrolladenn war-lerc'h" #: formres.src msgctxt "" @@ -1072,7 +1072,7 @@ "Last record\n" "itemlist.text" msgid "Last record" -msgstr "" +msgstr "Enrolladenn diwezhañ" #: formres.src msgctxt "" @@ -1081,7 +1081,7 @@ "Save record\n" "itemlist.text" msgid "Save record" -msgstr "" +msgstr "Enrollañ an enrolladenn " #: formres.src msgctxt "" @@ -1090,7 +1090,7 @@ "Undo data entry\n" "itemlist.text" msgid "Undo data entry" -msgstr "" +msgstr "Dizober enankad ar roadenn" #: formres.src msgctxt "" @@ -1099,7 +1099,7 @@ "New record\n" "itemlist.text" msgid "New record" -msgstr "" +msgstr "Enrolladenn nevez" #: formres.src msgctxt "" @@ -1108,7 +1108,7 @@ "Delete record\n" "itemlist.text" msgid "Delete record" -msgstr "" +msgstr "Dilemel an enrolladenn" #: formres.src msgctxt "" @@ -1117,7 +1117,7 @@ "Refresh form\n" "itemlist.text" msgid "Refresh form" -msgstr "" +msgstr "Azbevaat ar furmskrid" #: formres.src msgctxt "" @@ -1126,7 +1126,7 @@ "Get\n" "itemlist.text" msgid "Get" -msgstr "" +msgstr "Kaout" #: formres.src msgctxt "" @@ -1135,7 +1135,7 @@ "Post\n" "itemlist.text" msgid "Post" -msgstr "" +msgstr "Postañ" #: formres.src msgctxt "" @@ -1144,7 +1144,7 @@ "URL\n" "itemlist.text" msgid "URL" -msgstr "" +msgstr "URL" #: formres.src msgctxt "" @@ -1153,7 +1153,7 @@ "Multipart\n" "itemlist.text" msgid "Multipart" -msgstr "" +msgstr "Liesparzhioù" #: formres.src msgctxt "" @@ -1162,7 +1162,7 @@ "Text\n" "itemlist.text" msgid "Text" -msgstr "" +msgstr "Testenn" #: formres.src msgctxt "" @@ -1171,7 +1171,7 @@ "Standard (short)\n" "itemlist.text" msgid "Standard (short)" -msgstr "" +msgstr "Skoueriek (berr)" #: formres.src msgctxt "" @@ -1180,7 +1180,7 @@ "Standard (short YY)\n" "itemlist.text" msgid "Standard (short YY)" -msgstr "" +msgstr "Skoueriek (berr BB)" #: formres.src msgctxt "" @@ -1189,7 +1189,7 @@ "Standard (short YYYY)\n" "itemlist.text" msgid "Standard (short YYYY)" -msgstr "" +msgstr "Skoueriek (berr BBBB)" #: formres.src msgctxt "" @@ -1198,7 +1198,7 @@ "Standard (long)\n" "itemlist.text" msgid "Standard (long)" -msgstr "" +msgstr "Skoueriek (hir)" #: formres.src msgctxt "" @@ -1207,7 +1207,7 @@ "DD/MM/YY\n" "itemlist.text" msgid "DD/MM/YY" -msgstr "" +msgstr "DD/MM/BB" #: formres.src msgctxt "" @@ -1216,7 +1216,7 @@ "MM/DD/YY\n" "itemlist.text" msgid "MM/DD/YY" -msgstr "" +msgstr "MM/DD/BB" #: formres.src msgctxt "" @@ -1225,7 +1225,7 @@ "YY/MM/DD\n" "itemlist.text" msgid "YY/MM/DD" -msgstr "" +msgstr "BB/MM/DD" #: formres.src msgctxt "" @@ -1234,7 +1234,7 @@ "DD/MM/YYYY\n" "itemlist.text" msgid "DD/MM/YYYY" -msgstr "" +msgstr "DD/MM/BBBB" #: formres.src msgctxt "" @@ -1243,7 +1243,7 @@ "MM/DD/YYYY\n" "itemlist.text" msgid "MM/DD/YYYY" -msgstr "" +msgstr "MM/DD/BBBB" #: formres.src msgctxt "" @@ -1252,7 +1252,7 @@ "YYYY/MM/DD\n" "itemlist.text" msgid "YYYY/MM/DD" -msgstr "" +msgstr "BBBB/MM/DD" #: formres.src msgctxt "" @@ -1261,7 +1261,7 @@ "YY-MM-DD\n" "itemlist.text" msgid "YY-MM-DD" -msgstr "" +msgstr "BB-MM-DD" #: formres.src msgctxt "" @@ -1270,7 +1270,7 @@ "YYYY-MM-DD\n" "itemlist.text" msgid "YYYY-MM-DD" -msgstr "" +msgstr "BBBB-MM-DD" #: formres.src msgctxt "" @@ -1279,7 +1279,7 @@ "13:45\n" "itemlist.text" msgid "13:45" -msgstr "" +msgstr "13:45" #: formres.src msgctxt "" @@ -1288,7 +1288,7 @@ "13:45:00\n" "itemlist.text" msgid "13:45:00" -msgstr "" +msgstr "13:45:00" #: formres.src msgctxt "" @@ -1297,7 +1297,7 @@ "01:45 PM\n" "itemlist.text" msgid "01:45 PM" -msgstr "" +msgstr "01:45 PM" #: formres.src msgctxt "" @@ -1306,7 +1306,7 @@ "01:45:00 PM\n" "itemlist.text" msgid "01:45:00 PM" -msgstr "" +msgstr "01:45:00 PM" #: formres.src msgctxt "" @@ -1315,7 +1315,7 @@ "Not Selected\n" "itemlist.text" msgid "Not Selected" -msgstr "" +msgstr "N'eo ket diuzet" #: formres.src msgctxt "" @@ -1324,7 +1324,7 @@ "Selected\n" "itemlist.text" msgid "Selected" -msgstr "" +msgstr "Diuzet" #: formres.src msgctxt "" @@ -1333,7 +1333,7 @@ "Not Defined\n" "itemlist.text" msgid "Not Defined" -msgstr "" +msgstr "Ket Despizet" #: formres.src msgctxt "" @@ -1342,7 +1342,7 @@ "All records\n" "itemlist.text" msgid "All records" -msgstr "" +msgstr "An holl Enrolladennoù" #: formres.src msgctxt "" @@ -1351,7 +1351,7 @@ "Active record\n" "itemlist.text" msgid "Active record" -msgstr "" +msgstr "Enrolladenn oberiant" #: formres.src msgctxt "" @@ -1360,7 +1360,7 @@ "Current page\n" "itemlist.text" msgid "Current page" -msgstr "" +msgstr "Pajenn vremanel" #: formres.src msgctxt "" @@ -1369,7 +1369,7 @@ "No\n" "itemlist.text" msgid "No" -msgstr "" +msgstr "Ket" #: formres.src msgctxt "" @@ -1378,7 +1378,7 @@ "Yes\n" "itemlist.text" msgid "Yes" -msgstr "" +msgstr "Ya" #: formres.src msgctxt "" @@ -1387,7 +1387,7 @@ "Parent Form\n" "itemlist.text" msgid "Parent Form" -msgstr "" +msgstr "Furmskrid kar" #: formres.src msgctxt "" @@ -1396,7 +1396,7 @@ "_blank\n" "itemlist.text" msgid "_blank" -msgstr "" +msgstr "_goullo" #: formres.src msgctxt "" @@ -1405,7 +1405,7 @@ "_parent\n" "itemlist.text" msgid "_parent" -msgstr "" +msgstr "_kar" #: formres.src msgctxt "" @@ -1414,7 +1414,7 @@ "_self\n" "itemlist.text" msgid "_self" -msgstr "" +msgstr "_e-unan" #: formres.src msgctxt "" @@ -1423,7 +1423,7 @@ "_top\n" "itemlist.text" msgid "_top" -msgstr "" +msgstr "_krec'h" #: formres.src msgctxt "" @@ -1432,7 +1432,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Tra ebet" #: formres.src msgctxt "" @@ -1441,7 +1441,7 @@ "Single\n" "itemlist.text" msgid "Single" -msgstr "" +msgstr "Eeun" #: formres.src msgctxt "" @@ -1450,7 +1450,7 @@ "Multi\n" "itemlist.text" msgid "Multi" -msgstr "" +msgstr "Lies" #: formres.src msgctxt "" @@ -1908,7 +1908,7 @@ "Horizontal\n" "itemlist.text" msgid "Horizontal" -msgstr "" +msgstr "A-blaen" #: formres.src msgctxt "" @@ -1917,7 +1917,7 @@ "Vertical\n" "itemlist.text" msgid "Vertical" -msgstr "" +msgstr "A-blom" #: formres.src msgctxt "" @@ -1974,7 +1974,7 @@ "Default\n" "itemlist.text" msgid "Default" -msgstr "" +msgstr "Dre-ziouer" #: formres.src msgctxt "" @@ -1983,7 +1983,7 @@ "OK\n" "itemlist.text" msgid "OK" -msgstr "" +msgstr "Mat eo" #: formres.src msgctxt "" @@ -1992,7 +1992,7 @@ "Cancel\n" "itemlist.text" msgid "Cancel" -msgstr "" +msgstr "Nullañ" #: formres.src msgctxt "" @@ -2001,7 +2001,7 @@ "Help\n" "itemlist.text" msgid "Help" -msgstr "" +msgstr "Skoazell" #: formres.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/br/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/br/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/br/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/br/sc/source/ui/src.po 2017-05-03 16:46:29.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: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2016-12-01 12:58+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-05-02 17:35+0000\n" +"Last-Translator: Tornoz \n" "Language-Team: LANGUAGE \n" "Language: br\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480597133.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493746507.000000\n" #: filter.src msgctxt "" @@ -23070,7 +23070,7 @@ "3\n" "string.text" msgid "The value to be converted." -msgstr "" +msgstr "Gwerzh da amdreiñ." #: scfuncs.src msgctxt "" @@ -23079,7 +23079,7 @@ "4\n" "string.text" msgid "text" -msgstr "" +msgstr "testenn" #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/scalc/00.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/scalc/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-11-22 16:59+0000\n" +"PO-Revision-Date: 2017-04-27 11:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479833957.000000\n" +"X-POOTLE-MTIME: 1493293044.000000\n" #: 00000004.xhp msgctxt "" @@ -1683,7 +1683,7 @@ "par_id160220162106567373\n" "help.text" msgid "Choose Sheet - Insert Rows - Rows Above " -msgstr "Trieu Full - Insereix files - Files a sobre" +msgstr "Trieu Full ▸ Insereix files ▸ Files a sobre" #: sheet_menu.xhp msgctxt "" @@ -1691,7 +1691,7 @@ "par_id160220162109048207\n" "help.text" msgid "Choose Sheet - Insert Rows - Rows Below" -msgstr "Trieu Full - Insereix files - Files a sota" +msgstr "Trieu Full ▸ Insereix files ▸ Files a sota" #: sheet_menu.xhp msgctxt "" @@ -1699,7 +1699,7 @@ "par_id160220162107055028\n" "help.text" msgid "Choose Sheet - Insert Columns - Columns Left" -msgstr "Trieu Full - Insereix columnes - Columnes a l'esquerra" +msgstr "Trieu Full ▸ Insereix columnes ▸ Columnes a l'esquerra" #: sheet_menu.xhp msgctxt "" @@ -1707,7 +1707,7 @@ "par_id160220162109126013\n" "help.text" msgid "Choose Sheet - Insert Columns - Columns Right" -msgstr "Trieu Full - Insereix columnes - Columnes a la dreta" +msgstr "Trieu Full ▸ Insereix columnes ▸ Columnes a la dreta" #: sheet_menu.xhp msgctxt "" @@ -1715,7 +1715,7 @@ "par_id3149095\n" "help.text" msgid "Choose Sheet - Insert Page Break" -msgstr "" +msgstr "Trieu Full ▸ Insereix salt de pàgina" #: sheet_menu.xhp msgctxt "" @@ -1723,7 +1723,7 @@ "par_id3149398\n" "help.text" msgid "Choose Sheet - Insert Page Break - Row Break" -msgstr "" +msgstr "Trieu Full ▸ Insereix salt de pàgina ▸ Salt de fila" #: sheet_menu.xhp msgctxt "" @@ -1731,7 +1731,7 @@ "par_id3150084\n" "help.text" msgid "Choose Sheet - Insert Page Break - Column Break" -msgstr "" +msgstr "Trieu Full ▸ Insereix salt de pàgina ▸ Salt de columna" #: sheet_menu.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-02-19 19:43+0000\n" +"PO-Revision-Date: 2017-04-27 11:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1487533380.000000\n" +"X-POOTLE-MTIME: 1493293057.000000\n" #: 01120000.xhp msgctxt "" @@ -11252,7 +11252,7 @@ "par_id3154943\n" "help.text" msgid "This category contains the Mathematical functions for Calc. To open the Function Wizard, choose Insert - Function." -msgstr "Aquesta categoria conté les funcions matemàtiques del Calc. Per obrir l'Auxiliar de funcions, trieu Insereix - Funció." +msgstr "Aquesta categoria conté les funcions matemàtiques del Calc. Per obrir l'Auxiliar de funcions, trieu Insereix ▸ Funció." #: 04060106.xhp #, fuzzy diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/scalc/guide.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-11-17 12:14+0000\n" +"PO-Revision-Date: 2017-04-27 11:37+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479384863.000000\n" +"X-POOTLE-MTIME: 1493293078.000000\n" #: address_auto.xhp msgctxt "" @@ -8356,7 +8356,7 @@ "32\n" "help.text" msgid "You can assign a comment to each cell by choosing Insert - Comment. The comment is indicated by a small red square, the comment indicator, in the cell." -msgstr "Podeu assignar un comentari a cada cel·la triant Insereix - Comentari. El comentari s'indica a la cel·la amb un quadrat vermell petit, l'indicador de comentari." +msgstr "Podeu assignar un comentari a cada cel·la triant Insereix ▸ Comentari. El comentari s'indica a la cel·la amb un quadrat vermell petit, l'indicador de comentari." #: note_insert.xhp msgctxt "" @@ -8426,7 +8426,7 @@ "36\n" "help.text" msgid "Insert - Comment" -msgstr "Insereix - Comentari" +msgstr "Insereix ▸ Comentari" #: numbers_text.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-02-22 13:31+0000\n" +"PO-Revision-Date: 2017-04-27 11:38+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1487770265.000000\n" +"X-POOTLE-MTIME: 1493293087.000000\n" #: 01010000.xhp msgctxt "" @@ -9886,7 +9886,7 @@ "par_id3153551\n" "help.text" msgid "Insert - Object" -msgstr "Insereix - Objecte" +msgstr "Insereix ▸ Objecte" #: 02200000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/shared/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-01-12 08:46+0000\n" +"PO-Revision-Date: 2017-04-27 11:38+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1484210816.000000\n" +"X-POOTLE-MTIME: 1493293125.000000\n" #: aaa_start.xhp msgctxt "" @@ -17953,7 +17953,6 @@ msgstr "espais protegits;insercióespais; inserció d'espais protegitsguionets;inserció personalitzadaseparadors condicionalsseparadors; condicionalsguionsguions no separablesreemplaçament;guionsguions protegitsintercanvi, vegeu també reemplaçament" #: space_hyphen.xhp -#, fuzzy msgctxt "" "space_hyphen.xhp\n" "hd_id3155364\n" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2016-11-16 12:26+0000\n" +"PO-Revision-Date: 2017-04-27 11:42+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479299218.000000\n" +"X-POOTLE-MTIME: 1493293346.000000\n" #: 01000000.xhp msgctxt "" @@ -9244,7 +9244,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 "Podeu escriure i editar comentaris mitjançant l'ordre Insereix - Comentari. Per editar els comentaris que es mostren de manera permanent, feu clic al quadre de comentari. Feu clic al Navegador i a l'entrada Comentaris podreu visualitzar tots els comentaris del document actual. Si feu doble clic en un comentari al Navegador, el cursor saltarà a la cel·la que contingui el comentari." +msgstr "Podeu escriure i editar comentaris mitjançant l'ordre Insereix ▸ Comentari. Per editar els comentaris que es mostren de manera permanent, feu clic al quadre de comentari. Feu clic al Navegador i a l'entrada Comentaris podreu visualitzar tots els comentaris del document actual. Si feu doble clic en un comentari al Navegador, el cursor saltarà a la cel·la que contingui el comentari." #: 01060100.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/simpress/guide.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/simpress/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-16 12:50+0000\n" +"PO-Revision-Date: 2017-04-27 11:42+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479300653.000000\n" +"X-POOTLE-MTIME: 1493293374.000000\n" #: 3d_create.xhp msgctxt "" @@ -4170,7 +4170,7 @@ "6\n" "help.text" msgid "Insert - File" -msgstr "Insereix - Fitxer" +msgstr "Insereix ▸ Fitxer" #: palette_files.xhp msgctxt "" @@ -5477,7 +5477,7 @@ "16\n" "help.text" msgid "Insert - Object - OLE Object" -msgstr "Insereix - Objecte - Objecte OLE" +msgstr "Insereix ▸ Objecte ▸ Objecte OLE" #: text2curve.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/swriter/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2016-11-16 13:18+0000\n" +"PO-Revision-Date: 2017-04-27 11:46+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479302294.000000\n" +"X-POOTLE-MTIME: 1493293577.000000\n" #: 01120000.xhp msgctxt "" @@ -3428,7 +3428,7 @@ "3\n" "help.text" msgid "The Edit Sections dialog is similar to the Insert - Section dialog, and offers the following additional options:" -msgstr "El diàleg Edita les seccions és semblant al diàleg Insereix - Secció, i ofereix les opcions addicionals següents:" +msgstr "El diàleg Edita les seccions és semblant al diàleg Insereix ▸ Secció, i ofereix les opcions addicionals següents:" #: 02170000.xhp msgctxt "" @@ -3651,7 +3651,7 @@ "par_id102720151029387618\n" "help.text" msgid "Insert - Field." -msgstr "Insereix - Camp." +msgstr "Insereix ▸ Camp." #: 03100000.xhp msgctxt "" @@ -11006,13 +11006,12 @@ msgstr "Ús de taules de continguts i índexs" #: 04120210.xhp -#, fuzzy msgctxt "" "04120210.xhp\n" "par_id3152942\n" "help.text" msgid "Insert - Table of Contents and Index - Index Entry" -msgstr "Insereix - Índexs i taules - Entrada" +msgstr "Insereix ▸ Índexs i taules ▸ Entrada" #: 04120211.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/swriter/guide.po libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.3.3~rc1/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,18 +4,18 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-11-16 13:17+0000\n" -"Last-Translator: Júlia Liébana Ramos \n" +"PO-Revision-Date: 2017-04-27 11:51+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Language: ca\n" -"X-POOTLE-MTIME: 1479302275.000000\n" +"X-POOTLE-MTIME: 1493293869.000000\n" #: anchor_object.xhp msgctxt "" @@ -5250,13 +5250,12 @@ msgstr "Feu clic a la part del document on vulgueu col·locar l'àncora de la nota." #: footnote_usage.xhp -#, fuzzy msgctxt "" "footnote_usage.xhp\n" "par_id3147120\n" "help.text" msgid "Choose Insert - Footnote and Endnote - Footnote or Endnote." -msgstr "Trieu Insereix - Nota al peu/Nota final." +msgstr "Trieu Insereix ▸ Nota al peu o final." #: footnote_usage.xhp #, fuzzy @@ -6892,13 +6891,12 @@ msgstr "Creació de text no imprimible" #: hidden_text.xhp -#, fuzzy msgctxt "" "hidden_text.xhp\n" "par_id3148603\n" "help.text" msgid "Insert - Field - More Fields" -msgstr "Insereix - Camps - Més camps" +msgstr "Insereix ▸ Camps ▸ Més camps" #: hidden_text.xhp msgctxt "" @@ -6907,7 +6905,7 @@ "11\n" "help.text" msgid "Insert - Section" -msgstr "Insereix - Secció" +msgstr "Insereix ▸ Secció" #: hidden_text.xhp msgctxt "" @@ -8123,14 +8121,13 @@ msgstr "Creeu un índex en cada document individual, copieu i enganxeu els índexs en un sol document i a continuació editeu-los." #: indices_multidoc.xhp -#, fuzzy msgctxt "" "indices_multidoc.xhp\n" "par_id3147118\n" "45\n" "help.text" msgid "Select each index, choose Insert - Section, and then enter a name for the index. In a separate document, choose Insert - Section, select Link, click the Browse button, and then locate and insert a named index section." -msgstr "Seleccioneu cada índex, trieu Insereix - Secció i introduïu un nom per a l'índex. En un document separat, trieu Insereix - Secció, seleccioneu Enllaç, feu clic al botó de navegació (...) i cerqueu i inseriu una secció d'índex amb nom." +msgstr "Seleccioneu cada índex, trieu Insereix ▸ Secció i introduïu un nom per a l'índex. En un document separat, trieu Insereix ▸ Secció, seleccioneu Enllaç, feu clic al botó Navega, aleshores cerqueu i inseriu una secció d'índex amb nom." #: indices_multidoc.xhp #, fuzzy @@ -8532,7 +8529,7 @@ "3\n" "help.text" msgid "Choose Insert - Image - From File." -msgstr "Trieu Insereix - Imatge - Des d'un fitxer." +msgstr "Trieu Insereix ▸ Imatge ▸ Des d'un fitxer." #: insert_graphic_dialog.xhp msgctxt "" @@ -8794,7 +8791,7 @@ "5\n" "help.text" msgid "Choose Insert - Media - Scan, and choose the scanning source from the submenu." -msgstr "Trieu Insereix - Multimèdia - Escàner i trieu la font de l'escaneig des del submenú." +msgstr "Trieu Insereix ▸ Multimèdia ▸ Escàner i trieu la font de l'escaneig des del submenú." #: insert_graphic_scan.xhp msgctxt "" @@ -12285,7 +12282,7 @@ "par_id3149992\n" "help.text" msgid "You can cross-reference most objects in your document, such as graphics, drawing objects, OLE objects, and tables, so long as they have a caption. To add a caption to an object, select the object, and then choose Insert - Caption." -msgstr "Podeu aplicar referències creuades a la majoria d'objectes del document, com ara gràfics, objectes de dibuix, objectes OLE i taules, sempre que tinguin una llegenda. Per afegir una llegenda a un objecte, seleccioneu l'objecte i trieu Insereix - Llegenda." +msgstr "Podeu aplicar referències creuades a la majoria d'objectes del document, com ara gràfics, objectes de dibuix, objectes OLE i taules, sempre que tinguin una llegenda. Per afegir una llegenda a un objecte, seleccioneu l'objecte i trieu Insereix ▸ Llegenda." #: references.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-02-27 08:35+0000\n" +"PO-Revision-Date: 2017-04-27 09:49+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488184528.000000\n" +"X-POOTLE-MTIME: 1493286563.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -19006,7 +19006,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "~Edita la vora..." +msgstr "~Edita el contorn..." #: GenericCommands.xcu msgctxt "" @@ -28195,7 +28195,7 @@ "Label\n" "value.text" msgid "Edit Footnote/Endnote" -msgstr "Edita la nota al peu/nota final" +msgstr "Edita la nota al peu o final" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/sc/uiconfig/scalc/ui.po libreoffice-5.3.3~rc2/translations/source/ca/sc/uiconfig/scalc/ui.po --- libreoffice-5.3.3~rc1/translations/source/ca/sc/uiconfig/scalc/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-02-22 09:20+0000\n" +"PO-Revision-Date: 2017-04-27 09:43+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: none\n" "Language: ca\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487755222.000000\n" +"X-POOTLE-MTIME: 1493286184.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -6536,7 +6536,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "Edita la vora" +msgstr "Edita el contorn" #: optcalculatepage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/ca/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/ca/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/ca/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/ca/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-05 10:38+0000\n" +"PO-Revision-Date: 2017-04-27 09:43+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1491388688.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493286196.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -3386,7 +3386,7 @@ "title\n" "string.text" msgid "Contour Editor" -msgstr "Editor de la vora" +msgstr "Editor del contorn" #: floatingcontour.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "_Reinicia en mode normal" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "_Aplica els canvis i reinicia" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/cy/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/cy/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-07 08:20+0000\n" +"PO-Revision-Date: 2017-04-28 09:13+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1491553222.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370835.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "Hawlfraint © 2000 - 2017 cyfranwyr LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/cy/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/cy/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-30 11:20+0000\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1483096840.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370848.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Modd Fformat Llanw" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Arddull Newydd o'r Dewis" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Diweddaru Arddull" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/sfx2/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/cy/sfx2/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/cy/sfx2/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-19 10:51+0000\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: none\n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484823107.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370861.000000\n" #: alienwarndialog.ui msgctxt "" @@ -798,6 +798,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" +"Mae %PRODUCTNAME ar gael yn unol ag amodau'r Mozilla Public License, v. 2.0. Mae copi o drwydded MPL ar gael yn http://mozilla.org/MPL/2.0/.\n" +"\n" +"Mae hysbysiadau hawlfraint at Third Party Code Additional ac amodau trwyddedu darnau perthnasol y Feddalwedd ar gael yn y ffeil LICENSE.html file; dewiswch Dangos y Drwydded i weld y manylion yn Saesneg.\n" +"\n" +"Eiddo eu perchnogion yw'r holl nodau masnach a nodau masnach cofrestredig nodir yma.\n" +"\n" +"Hawlfraint © 2000–2017 cyfranwyr LibreOffice a'u cysylltiadau. Diogelir pob hawl.\n" +"\n" +"Crëwyd y cynnyrch hwn gan %OOOVENDOR, ar sail OpenOffice.org, Hawlfraint 2000, 2011 Oracle a/neu ei gysylltiadau. Mae %OOOVENDOR yn cydnabod pob aelod cymunedol, gweler http://www.libreoffice.org/ am wybodaeth bellach." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/svtools/source/dialogs.po libreoffice-5.3.3~rc2/translations/source/cy/svtools/source/dialogs.po --- libreoffice-5.3.3~rc1/translations/source/cy/svtools/source/dialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-19 10:52+0000\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484823172.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370868.000000\n" #: addresstemplate.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "Testun fformatiwyd [Richtext]" #: formats.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/cy/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/cy/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-19 10:53+0000\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484823180.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370877.000000\n" #: imagemgr.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "Saesneg (Malaysia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/cy/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/cy/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-01 15:41+0000\n" -"Last-Translator: Aled Powell \n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" +"Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480606911.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370880.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Methu llwytho'r holl SmartArts. Bydd cadw yn Microsoft Office 2010 neu hwyrach yn osgoi'r mater yma." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/cy/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/cy/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/cy/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/cy/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-19 11:04+0000\n" +"PO-Revision-Date: 2017-04-28 09:14+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484823848.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493370889.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "_Ail gychwyn yn y Modd Arferol" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "_Gosod Newidiadau ac Ail-gychwyn" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/da/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/da/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-01 20:08+0000\n" +"PO-Revision-Date: 2017-04-29 12:39+0000\n" "Last-Translator: Leif Lodahl \n" "Language-Team: none\n" "Language: da\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480622883.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469583.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "Copyright © 2000 - 2017 LibreOffice bidragydere." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/da/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-30 20:16+0000\n" -"Last-Translator: Leif Lodahl \n" +"PO-Revision-Date: 2017-04-24 07:14+0000\n" +"Last-Translator: David Lamhauge \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1483128993.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493018093.000000\n" #: 01120000.xhp msgctxt "" @@ -5678,7 +5678,7 @@ "par_id231020162315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060102.xhp msgctxt "" @@ -5686,7 +5686,7 @@ "par_id231020163315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/da/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/da/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-12 20:01+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2017-04-29 12:39+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481572872.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469589.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Fyldformattilstand" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Ny typografi fra markeringen" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Opdater typografi" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/sfx2/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/da/sfx2/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/da/sfx2/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-12 20:04+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2017-04-29 12:40+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481573048.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469601.000000\n" #: alienwarndialog.ui msgctxt "" @@ -798,6 +798,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" +"%PRODUCTNAME er gjort tilgængelig under betingelserne i Mozilla Public License, v. 2.0. En kopi af MPL-licensen kan fås på http://mozilla.org/MPL/2.0/.\n" +"\n" +"Beskeder om ophavsret på kode fra tredjepart og licensbetingelser, der anvendes på dele af softwaren, fremgår af filen LICENSE.html; vælg Vis licens for at se de præcise detaljer på engelsk.\n" +"\n" +"Alle varemærker og registrerede varemærker som nævnes heri, tilhører de respektive ejere.\n" +"\n" +"Ophavsret © 2000 - 2017 LibreOffice-bidragydere. Alle rettigheder forbeholdes.\n" +"\n" +"Dette produkt blev skabt af %OOOVENDOR, baseret på OpenOffice.org, der er underlagt ophavsret 2000, 2011 af Oracle og/eller dets partnere. %OOOVENDOR takker alle medlemmer af fællesskabet, se venligst http://www.libreoffice.org/ for flere detaljer." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/svtools/source/dialogs.po libreoffice-5.3.3~rc2/translations/source/da/svtools/source/dialogs.po --- libreoffice-5.3.3~rc1/translations/source/da/svtools/source/dialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/svtools/source/dialogs.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-01-06 21:29+0000\n" -"Last-Translator: Jeppe Bundsgaard \n" +"PO-Revision-Date: 2017-04-26 10:06+0000\n" +"Last-Translator: laugesen \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1452115748.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493201194.000000\n" #: addresstemplate.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "Formateret tekst [RTF]" #: formats.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/svtools/source/java.po libreoffice-5.3.3~rc2/translations/source/da/svtools/source/java.po --- libreoffice-5.3.3~rc1/translations/source/da/svtools/source/java.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/svtools/source/java.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 20:05+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2017-04-29 12:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481573111.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469691.000000\n" #: javaerror.src msgctxt "" @@ -38,7 +38,7 @@ "STR_WARNING_INVALIDJAVASETTINGS_MAC\n" "string.text" msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME." -msgstr "Indstillingerne for %PRODUCTNAME er ændret. Vælg det Java-afviklingsmiljø du ønsker at benytte for %PRODUCTNAME under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret." +msgstr "Indstillingerne for %PRODUCTNAME er ændret. Vælg det Java-afviklingsmiljø du ønsker at %PRODUCTNAME skal benytte under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret." #: javaerror.src msgctxt "" @@ -54,7 +54,7 @@ "STR_ERROR_JVMCREATIONFAILED_MAC\n" "string.text" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced." -msgstr "%PRODUCTNAME forudsætter et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Det valgte Java-afviklingsmiljø er defekt. Vælg venligst en anden version, eller installer et nyt Java-afviklingsmiljø og vælg det under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret." +msgstr "%PRODUCTNAME forudsætter et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Det valgte Java-afviklingsmiljø er defekt. Vælg venligst en anden version, eller installer et nyt Java-afviklingsmiljø og vælg det under %PRODUCTNAME - Indstillinger - %PRODUCTNAME - Avanceret." #: javaerror.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/da/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/da/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/svtools/source/misc.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-12 20:05+0000\n" -"Last-Translator: David Lamhauge \n" +"PO-Revision-Date: 2017-04-29 12:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481573122.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469700.000000\n" #: imagemgr.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "Engelsk (Malaysia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/da/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/da/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-11-27 16:26+0000\n" +"PO-Revision-Date: 2017-04-29 12:41+0000\n" "Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480263982.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469714.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Kunne ikke indlæse SmartArts. At gemme i Microsoft Office 2010 eller senere vil omgå dette problem." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/da/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/da/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/da/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/da/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-15 20:35+0000\n" -"Last-Translator: scootergrisen \n" +"PO-Revision-Date: 2017-04-29 12:42+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1489610128.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493469720.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "_Genstart i Normal Tilstand" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "_Anvend ændringerne og genstart" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/editeng/source/items.po libreoffice-5.3.3~rc2/translations/source/de/editeng/source/items.po --- libreoffice-5.3.3~rc1/translations/source/de/editeng/source/items.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/editeng/source/items.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-02-23 20:05+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-29 14:48+0000\n" +"Last-Translator: Thomas Hackert \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487880300.000000\n" +"X-POOTLE-MTIME: 1493477307.000000\n" #: page.src msgctxt "" @@ -1655,7 +1655,7 @@ "RID_SVXITEMS_FORBIDDEN_RULE_OFF\n" "string.text" msgid "Apply list of forbidden characters to beginning and end of lines" -msgstr "Verbotene Zeichen an Zeilenanfang und -ende berücksichtigen" +msgstr "Verbotene Zeichen am Zeilenanfang und -ende berücksichtigen" #: svxitems.src msgctxt "" @@ -1663,7 +1663,7 @@ "RID_SVXITEMS_FORBIDDEN_RULE_ON\n" "string.text" msgid "Don't apply list of forbidden characters to beginning and end of lines" -msgstr "Verbotene Zeichen an Zeilenanfang und -ende nicht berücksichtigen" +msgstr "Verbotene Zeichen am Zeilenanfang und -ende nicht berücksichtigen" #: svxitems.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/formula/source/core/resource.po libreoffice-5.3.3~rc2/translations/source/de/formula/source/core/resource.po --- libreoffice-5.3.3~rc1/translations/source/de/formula/source/core/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-18 19:51+0000\n" +"PO-Revision-Date: 2017-04-26 04:35+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479498686.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493181335.000000\n" #: core_resource.src msgctxt "" @@ -86,7 +86,7 @@ "SC_OPCODE_TABLE_REF_ITEM_TOTALS\n" "string.text" msgid "#Totals" -msgstr "#Summen" +msgstr "#Summe" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/auxiliary.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/auxiliary.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/auxiliary.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/auxiliary.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 20:01+0000\n" +"PO-Revision-Date: 2017-05-03 04:00+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490385679.000000\n" +"X-POOTLE-MTIME: 1493784021.000000\n" #: sbasic.tree msgctxt "" @@ -342,7 +342,7 @@ "1009\n" "node.text" msgid "Drag & Drop" -msgstr "Ziehen & Ablegen" +msgstr "Ziehen und Ablegen" #: shared.tree msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-01-02 04:47+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-05-03 04:02+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483332450.000000\n" +"X-POOTLE-MTIME: 1493784129.000000\n" #: 06130000.xhp msgctxt "" @@ -219,7 +219,7 @@ "31\n" "help.text" msgid "You can drag-and-drop a module or a dialog between libraries." -msgstr "Module und Dialoge lassen sich per Ziehen & Ablegen zwischen Bibliotheken verschieben und kopieren." +msgstr "Module und Dialoge lassen sich per Ziehen und Ablegen zwischen Bibliotheken verschieben und kopieren." #: 06130000.xhp msgctxt "" @@ -228,7 +228,7 @@ "33\n" "help.text" msgid "To copy a dialog or a module, hold down the CommandCtrl key while you drag-and-drop." -msgstr "Zum Kopieren eines Dialogs oder Moduls halten Sie beim Ziehen & Ablegen die Taste BefehlStrg gedrückt." +msgstr "Zum Kopieren eines Dialogs oder Moduls halten Sie beim Ziehen-und- Ablegen die Taste BefehlStrg gedrückt." #: 06130000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-04-01 08:01+0000\n" +"PO-Revision-Date: 2017-04-30 05:05+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491033669.000000\n" +"X-POOTLE-MTIME: 1493528741.000000\n" #: 00000004.xhp msgctxt "" @@ -47,7 +47,7 @@ "par_idN105AF\n" "help.text" msgid "In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. " -msgstr "In %PRODUCTNAME Calc Funktionen dürfen Parameter, die als \"optional\" gekennzeichnet sind, nur dann ausgelassen werden, wenn ihnen kein weiterer Parameter mehr folgt. So können Sie beispielsweise in einer Funktion mit vier Parametern, von denen die letzten beiden als \"optional\" gekennzeichnet sind, die Parameter 4 bzw. 3 und 4 auslassen, jedoch nicht Parameter 3 allein. " +msgstr "In %PRODUCTNAME Calc Funktionen dürfen Parameter, die als \"optional\" gekennzeichnet sind, nur dann ausgelassen werden, wenn ihnen kein weiterer Parameter mehr folgt. So können Sie beispielsweise in einer Funktion mit vier Parametern, von denen die letzten beiden als \"optional\" gekennzeichnet sind, den Parameter 4 oder die Parameter 3 und 4 auslassen, jedoch nicht den Parameter 3 allein. " #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-15 14:05+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2017-05-03 09:09+0000\n" +"Last-Translator: Sophia Schröder \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492265101.000000\n" +"X-POOTLE-MTIME: 1493802559.000000\n" #: 01120000.xhp msgctxt "" @@ -460,7 +460,7 @@ "30\n" "help.text" msgid "Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document. You can later click the created hyperlink to set the cursor and the view to the respective object." -msgstr "Fügt ein per Ziehen & Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Hyperlink ein. Anschließend können Sie auf den erzeugten Hyperlink klicken und Cursor und Ansicht auf das entsprechende Objekt setzen." +msgstr "Fügt ein per Ziehen-und-Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Hyperlink ein. Anschließend können Sie auf den erzeugten Hyperlink klicken und Cursor und Ansicht auf das entsprechende Objekt setzen." #: 02110000.xhp msgctxt "" @@ -486,7 +486,7 @@ "32\n" "help.text" msgid "Creates a link when you drag-and-drop an object from the Navigator into a document." -msgstr "Fügt ein per Ziehen & Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Verknüpfung ein." +msgstr "Fügt ein mittels Ziehen und Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Verknüpfung ein." #: 02110000.xhp msgctxt "" @@ -504,7 +504,7 @@ "34\n" "help.text" msgid "Generates a copy when you drag-and-drop an object from the Navigator into a document." -msgstr "Fügt ein per Ziehen & Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Kopie ein." +msgstr "Fügt ein mittels Ziehen und Ablegen aus dem Navigator in ein Dokument gezogenes Objekt als Kopie ein." #: 02110000.xhp msgctxt "" @@ -7498,7 +7498,7 @@ "107\n" "help.text" msgid "Period states the period for which the value is to be calculated." -msgstr "Zeitraum steht für dieZeitraum, für die der Wert berechnet werden soll." +msgstr "Zeitraum steht für den Zeitraum, für den der Wert berechnet werden soll." #: 04060103.xhp msgctxt "" @@ -7756,7 +7756,7 @@ "135\n" "help.text" msgid "Under the assumption that cell contents are A1=-10000, A2=3500, A3=7600 and A4=1000, the formula =IRR(A1:A4) gives a result of 11,33%." -msgstr "Unter der Annahme, dass die Zellinhalt ist A1=-10000, A2=3500, A3=7600 and A4=1000, tergibt die Formel =IKV(A1:A4) ein Ergebnis von 11,33%." +msgstr "Unter der Annahme, dass die Zellinhalte A1=-10000, A2=3500, A3=7600 and A4=1000 sind, ergibt die Formel =IKV(A1:A4) ein Ergebnis von 11,33%." #: 04060103.xhp msgctxt "" @@ -7827,7 +7827,7 @@ "320\n" "help.text" msgid "TotalPeriods is the total number of installment periods." -msgstr "SummeZeiträumes iist die Summe der Tilgungszeiträume." +msgstr "SummeZeiträume ist die Summe der Tilgungszeiträume." #: 04060103.xhp msgctxt "" @@ -9065,7 +9065,7 @@ "par_id3155330\n" "help.text" msgid "Tests if the cell contents are text or numbers, and returns FALSE if the contents are text." -msgstr "Prüft, ob es sich beim Zellinhalt um Text oder Zahlen handelt, und ergibt FASLCH, wenn der Inhalt Text ist." +msgstr "Prüft, ob es sich beim Zellinhalt um Text oder Zahlen handelt, und ergibt FALSCH, wenn der Inhalt Text ist." #: 04060104.xhp msgctxt "" @@ -10217,7 +10217,7 @@ "par_id3151069\n" "help.text" msgid "TYPE" -msgstr "TYPE" +msgstr "TYP" #: 04060104.xhp msgctxt "" @@ -11391,7 +11391,7 @@ "par_id3157993\n" "help.text" msgid "Returns the inverse hyperbolic cosine of a number." -msgstr "Ergibt den Arkuskosinus Hyperbolikus (den inversen hyperbolischen Kosinus oder inversen Hyperbelkosinus) einer Zahl." +msgstr "Ergibt den Arkuskosinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11415,7 +11415,7 @@ "par_id3149000\n" "help.text" msgid "This function returns the inverse hyperbolic cosine of Number, that is the number whose hyperbolic cosine is Number." -msgstr "Diese Funktion ergibt den Arkuskosinus Hyperbolikus von Zahl, d.h. die Zahl, deren Kosinus Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkuskosinus Hyperbolicus von Zahl, das heißt die Zahl, deren Kosinus Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -11551,7 +11551,7 @@ "par_id3147478\n" "help.text" msgid "Returns the inverse hyperbolic cotangent of the given number." -msgstr "Ergibt den Arkuskotangens Hyperbolikus (inversen hyperbolischen Kotangens oder inversen Hyperbelkotangens) einer Zahl." +msgstr "Ergibt den Arkuskotangens Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11575,7 +11575,7 @@ "par_id3146155\n" "help.text" msgid "This function returns the inverse hyperbolic cotangent of Number, that is the number whose hyperbolic cotangent is Number." -msgstr "Diese Funktion ergibt den Arkuskotangens Hyperbolikus von Zahl, d.h. die Zahl, deren Kotangens Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkuskotangens Hyperbolicus von Zahl, das heißt die Zahl, deren Kotangens Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -11599,7 +11599,7 @@ "par_id3150608\n" "help.text" msgid "=ACOTH(1.1) returns inverse hyperbolic cotangent of 1.1, approximately 1.52226." -msgstr "=ARCCOTHYP(1,1) ergibt einen Arkuskotangens Hyperbolikus von 1,1, etwa 1,52226." +msgstr "=ARCCOTHYP(1,1) ergibt einen Arkuskotangens Hyperbolicus von 1,1, also etwa 1,52226." #: 04060106.xhp msgctxt "" @@ -11711,7 +11711,7 @@ "par_id3147077\n" "help.text" msgid "Returns the inverse hyperbolic sine of a number." -msgstr "Ergibt den Arkussinus Hyperbolikus (inversen hyperbolischen Sinus oder inversen Hyperbelsinus) einer Zahl." +msgstr "Ergibt den Arkussinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11735,7 +11735,7 @@ "par_id3147621\n" "help.text" msgid "This function returns the inverse hyperbolic sine of Number, that is the number whose hyperbolic sine is Number." -msgstr "Diese Funktion ergibt den Arkussinus Hyperbolikus von Zahl, d.h. die Zahl, deren Sinus Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkussinus Hyperbolicus von Zahl, das heißt die Zahl, deren Sinus Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -11959,7 +11959,7 @@ "par_id3148829\n" "help.text" msgid "Returns the inverse hyperbolic tangent of a number." -msgstr "Ergibt den Arkustangens Hyperbolikus (inversen hyperbolischen Tangens oder inversen Hyperbeltangens) einer Zahl." +msgstr "Ergibt den Arkustangens Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -11983,7 +11983,7 @@ "par_id3150521\n" "help.text" msgid "This function returns the inverse hyperbolic tangent of Number, that is the number whose hyperbolic tangent is Number." -msgstr "Diese Funktion ergibt den Arkustangens Hyperbolikus von Zahl, d.h. die Zahl, deren Tangens Hyperbolikus Zahl ist." +msgstr "Diese Funktion ergibt den Arkustangens Hyperbolicus von Zahl, das heißt die Zahl, deren Tangens Hyperbolicus Zahl ist." #: 04060106.xhp msgctxt "" @@ -12111,7 +12111,7 @@ "par_id3146946\n" "help.text" msgid "Returns the hyperbolic cosine of a number." -msgstr "Ergibt den Kosinus Hyperbolikus einer Zahl." +msgstr "Ergibt den Kosinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -12135,7 +12135,7 @@ "par_id3150710\n" "help.text" msgid "Returns the hyperbolic cosine of Number." -msgstr "Ergibt den Kosinus Hyperbolikus von Zahl." +msgstr "Ergibt den Kosinus Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -12151,7 +12151,7 @@ "par_id3154099\n" "help.text" msgid "=COSH(0) returns 1, the hyperbolic cosine of 0." -msgstr "=COSHYP(0) ergibt 1, den Kosinus Hyperbolikus von 0." +msgstr "=COSHYP(0) ergibt 1, den Kosinus Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -12263,7 +12263,7 @@ "par_id3149419\n" "help.text" msgid "Returns the hyperbolic cotangent of a given number (angle)." -msgstr "Ergibt den Kotangens Hyperbolikus einer Zahl (Winkel)." +msgstr "Ergibt den Kotangens Hyperbolicus einer Zahl (Winkel)." #: 04060106.xhp msgctxt "" @@ -12287,7 +12287,7 @@ "par_id3154799\n" "help.text" msgid "Returns the hyperbolic cotangent of Number." -msgstr "Ergibt den Kotangens Hyperbolikus von Zahl." +msgstr "Ergibt den Kotangens Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -12303,7 +12303,7 @@ "par_id3144754\n" "help.text" msgid "=COTH(1) returns the hyperbolic cotangent of 1, approximately 1.3130." -msgstr "=COTHYP(1) ergibt den Kotangens Hyperbolikus von 1, etwa 1,3130." +msgstr "=COTHYP(1) ergibt den Kotangens Hyperbolicus von 1, also etwa 1,3130." #: 04060106.xhp msgctxt "" @@ -12407,7 +12407,7 @@ "par_id579916\n" "help.text" msgid "Returns the hyperbolic cosecant of a number." -msgstr "Ergibt den Kosekans Hyperbolikus einer Zahl." +msgstr "Ergibt den Kosekans Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -12447,7 +12447,7 @@ "par_id5426085\n" "help.text" msgid "=CSCH(1) returns approximately 0.8509181282, the hyperbolic cosecant of 1." -msgstr "=COSECHYP(1) ergibt etwas 0,8509181282, den Kosekans Hyperbolikus von 1." +msgstr "=COSECHYP(1) ergibt etwa 0,8509181282, den Kosekans Hyperbolicus von 1." #: 04060106.xhp msgctxt "" @@ -14879,7 +14879,7 @@ "par_id408174\n" "help.text" msgid "Returns the hyperbolic secant of a number." -msgstr "Ergibt den Sekans Hyperbolikus einer Zahl." +msgstr "Ergibt den Sekans Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -14903,7 +14903,7 @@ "par_id1952124\n" "help.text" msgid "Returns the hyperbolic secant of Number." -msgstr "Ergibt den Sekans Hyperbolikus von Zahl." +msgstr "Ergibt den Sekans Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -14919,7 +14919,7 @@ "par_id1187764\n" "help.text" msgid "=SECH(0) returns 1, the hyperbolic secant of 0." -msgstr "=SECHYP(0) ergibt 1, den Sekans Hyperbolikus von 0." +msgstr "=SECHYP(0) ergibt 1, den Sekans Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -15023,7 +15023,7 @@ "par_id3163426\n" "help.text" msgid "Returns the hyperbolic sine of a number." -msgstr "Ergibt den Sinus Hyperbolikus einer Zahl." +msgstr "Ergibt den Sinus Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -15047,7 +15047,7 @@ "par_id3163471\n" "help.text" msgid "Returns the hyperbolic sine of Number." -msgstr "Ergibt den Sinus Hyperbolikus von Zahl." +msgstr "Ergibt den Sinus Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -15063,7 +15063,7 @@ "par_id3163504\n" "help.text" msgid "=SINH(0) returns 0, the hyperbolic sine of 0." -msgstr "=SINHYP(0) ergibt 0, den Sinus Hyperbolikus von 0." +msgstr "=SINHYP(0) ergibt 0, den Sinus Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -15399,7 +15399,7 @@ "par_id3165462\n" "help.text" msgid "Returns the hyperbolic tangent of a number." -msgstr "Ergibt den Tangens Hyperbolikus einer Zahl." +msgstr "Ergibt den Tangens Hyperbolicus einer Zahl." #: 04060106.xhp msgctxt "" @@ -15423,7 +15423,7 @@ "par_id3165508\n" "help.text" msgid "Returns the hyperbolic tangent of Number." -msgstr "Ergibt den Tangens Hyperbolikus von Zahl." +msgstr "Ergibt den Tangens Hyperbolicus von Zahl." #: 04060106.xhp msgctxt "" @@ -15439,7 +15439,7 @@ "par_id3165541\n" "help.text" msgid "=TANH(0) returns 0, the hyperbolic tangent of 0." -msgstr "=TANHYP(0) ergibt 0, den Tangens Hyperbolikus von 0." +msgstr "=TANHYP(0) ergibt 0, den Tangens Hyperbolicus von 0." #: 04060106.xhp msgctxt "" @@ -16503,7 +16503,7 @@ "par_id2855616\n" "help.text" msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+CommandCtrl+F9." -msgstr "Diese Funktion erzeugt jedes mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie Umschalt+BefehlStrg+F9." +msgstr "Diese Funktion erzeugt jedes Mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie Umschalt+BefehlStrg+F9." #: 04060106.xhp msgctxt "" @@ -16575,7 +16575,7 @@ "par_id5092318\n" "help.text" msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press F9." -msgstr "Diese Funktion erzeugt jedes mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie die Taste F9." +msgstr "Diese Funktion erzeugt jedes Mal, wenn Calc neu berechnet, eine neue Zufallszahl. Um die Neuberechnung in Calc zu erzwingen, drücken Sie die Taste F9." #: 04060106.xhp msgctxt "" @@ -26761,7 +26761,7 @@ "54\n" "help.text" msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16." -msgstr "Output: Anzahl der Parameter der AddIn-Funktion. Diese Anzahl muss größer 0 sein, da es immer einen Ergebniswert gibt, der Maximalwert ist16." +msgstr "Output: Anzahl der Parameter der AddIn-Funktion. Diese Anzahl muss größer 0 sein, da es immer einen Ergebniswert gibt, der Maximalwert ist 16." #: 04060112.xhp msgctxt "" @@ -29018,7 +29018,7 @@ "bm_id3083446\n" "help.text" msgid "ERF functionGaussian error integral" -msgstr "GAUSSFEHLER (Funktion) Gauss'sche Fehlerfunktion" +msgstr "GAUSSFEHLER (Funktion) Gauß'sche Fehlerfunktion" #: 04060115.xhp msgctxt "" @@ -29036,7 +29036,7 @@ "136\n" "help.text" msgid "Returns values of the Gaussian error integral." -msgstr "Ergibt Werte der Gauss'schen Fehlerfunktion." +msgstr "Ergibt Werte der Gauß'schen Fehlerfunktion." #: 04060115.xhp msgctxt "" @@ -29115,7 +29115,7 @@ "par_id2950381\n" "help.text" msgid "Returns values of the Gaussian error integral between 0 and the given limit." -msgstr "Liefert die Werte zur Gauss'schen Fehlerfunktion zwischen 0 und gegebener Grenze." +msgstr "Liefert die Werte zur Gauß'schen Fehlerfunktion zwischen 0 und gegebener Grenze." #: 04060115.xhp msgctxt "" @@ -29326,7 +29326,7 @@ "151\n" "help.text" msgid "The result is 1 if Number is greater than or equal to Step." -msgstr "Das Ergebnis ist 1, wenn Zahl größer als Schwellenwert oder gleichgroß ist." +msgstr "Das Ergebnis ist 1, wenn Zahl größer als oder gleich groß wie Schwellenwert." #: 04060115.xhp msgctxt "" @@ -37243,7 +37243,7 @@ "par_id3155827\n" "help.text" msgid "Value1; Value2, ... are 1 to 30 values or ranges representing the values to be counted." -msgstr "Wet1; Wert2, ... sind 1 bis 30 Werte oder Bereiche, die die Werte darstellen, die gezählt werden sollen." +msgstr "Wert1; Wert2; ... sind 1 bis 30 Werte oder Bereiche, die die Werte darstellen, die gezählt werden sollen." #: 04060181.xhp msgctxt "" @@ -37315,7 +37315,7 @@ "par_id3150001\n" "help.text" msgid "Value1; Value2, ... are 1 to 30 arguments representing the values to be counted." -msgstr "Wet1; Wert2, ... sind 1 bis 30 Argumente, die die Werte darstellen, die gezählt werden sollen." +msgstr "Wert1; Wert2; ... sind 1 bis 30 Argumente, die die Werte darstellen, die gezählt werden sollen." #: 04060181.xhp msgctxt "" @@ -53742,7 +53742,7 @@ "5\n" "help.text" msgid "If Tools - Detective - Update Automatically is turned on, every time formulas are changed in the document." -msgstr "Wenn Extras -Detektiv - Automatisch aktualisieren eingeschaltet ist, bei jeder Änderung von Formeln im Dokument." +msgstr "Wenn Extras - Detektiv - Automatisch aktualisieren eingeschaltet ist, bei jeder Änderung von Formeln im Dokument." #: 06031000.xhp msgctxt "" @@ -57348,7 +57348,7 @@ "34\n" "help.text" msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table." -msgstr "Die Pivot-Tabelle zeigt die Datenfelder in Form von Schaltflächen an, über welche Sie per Ziehen & Ablegen die Pivot-Tabelle gestalten können." +msgstr "Die Pivot-Tabelle zeigt die Datenfelder in Form von Schaltflächen an, über welche Sie mittels Ziehen und Ablegen die Pivot-Tabelle gestalten können." #: 12090102.xhp msgctxt "" @@ -60900,7 +60900,7 @@ "par_id2309201520064118\n" "help.text" msgid "=AGGREGATE(9;5;B2:B9)
Returns sum of the column B = 115. If any row is hidden, the function omit its value, for example if the 7th row is hidden, the function returns 95." -msgstr "=AGGREGAT(9;5;B2:B9)
Ergibt die Summe der Spalte B = 115. Wenn einige Zeilen versteckt sind, lässt die Funktion diese aus, beispielsweise ergibt die Funktion 95, wenn die 7. Zeile versteckt ist." +msgstr "=AGGREGAT(9;5;B2:B9)
Ergibt die Summe der Spalte B = 115. Falls irgendeine Zeile ausgeblendet ist, wird deren Wert nicht berücksichtigt, falls beispielsweise die 7. Zeile ausgeblendet ist, ergibt die Funktion 95." #: func_aggregate.xhp msgctxt "" @@ -60932,7 +60932,7 @@ "par_id2309201520395380\n" "help.text" msgid "=AGGREGATE(E3;E5;'ColumnOne')
If E3 = 13 and E5 = 5, the function returns mode of the first column = 10." -msgstr "=AGGREGAT(E3;E5;'SpalteEins')
Wenn E3 = 13 und E5 = 5, ergibt die Funktion den Modalwert der ersten Saplte = 10." +msgstr "=AGGREGAT(E3;E5;'SpalteEins')
Wenn E3 = 13 und E5 = 5, ergibt die Funktion den Modalwert der ersten Spalte = 10." #: func_aggregate.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-04-15 14:07+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2017-05-03 04:18+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492265262.000000\n" +"X-POOTLE-MTIME: 1493785085.000000\n" #: address_auto.xhp msgctxt "" @@ -1695,7 +1695,7 @@ "par_id2011780\n" "help.text" msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area." -msgstr "Verwenden Sie Ziehen & Ablegen, um den Bereich zu markieren, in den Sie Werte eingeben möchten. Beginnen Sie die Auswahl bei der letzten Zelle des Bereichs und lassen die Maustaste los, sobald Sie bis zur ersten Zelle markiert haben. Nun können Sie mit der Eingabe der Werte beginnen. Drücken Sie jeweils die Tab-Taste, um zur nächsten Zelle zu gelangen. Sie werden den markierten Bereich nicht verlassen." +msgstr "Verwenden Sie Ziehen-und-Ablegen, um den Bereich zu markieren, in den Sie Werte eingeben möchten. Beginnen Sie die Auswahl bei der letzten Zelle des Bereichs und lassen die Maustaste los, sobald Sie bis zur ersten Zelle markiert haben. Nun können Sie mit der Eingabe der Werte beginnen. Drücken Sie jeweils die Tab-Taste, um zur nächsten Zelle zu gelangen. Sie werden den markierten Bereich nicht verlassen." #: cell_enter.xhp msgctxt "" @@ -1761,7 +1761,7 @@ "17\n" "help.text" msgid "In %PRODUCTNAME Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed." -msgstr "In %PRODUCTNAME Calc können Sie einzelne Tabellen und ganze Dokumente. Sie können wählen, ob die Zellen gegen versehentliche Änderungen geschützt werden sollen, ob die Formeln in Calc angesehen werden können, ob die Zellen sichtbar sind oder ob die Zellen gedruckt werden können." +msgstr "In %PRODUCTNAME Calc können Sie einzelne Tabellen und ganze Dokumente schützen. Sie können wählen, ob die Zellen gegen versehentliche Änderungen geschützt werden sollen, ob die Formeln in Calc angesehen werden können, ob die Zellen sichtbar sind oder ob die Zellen gedruckt werden können." #: cell_protect.xhp msgctxt "" @@ -2044,7 +2044,7 @@ "7\n" "help.text" msgid "Copy, delete, move, or format a selection of currently visible cells." -msgstr "Kopieren Sie die sichtbaren Zellen entweder per „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder per Ziehen&Ablegen bei gedrückter Strg-Taste." +msgstr "Kopieren Sie die sichtbaren Zellen entweder mittels „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder mittels Ziehen und Ablegen bei gedrückter Strg-Taste." #: cellcopy.xhp msgctxt "" @@ -2071,7 +2071,7 @@ "13\n" "help.text" msgid "Copy, delete, move, or format a selection of currently visible cells." -msgstr "Kopieren Sie die sichtbaren Zellen entweder per „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder per Ziehen&Ablegen bei gedrückter Strg-Taste." +msgstr "Kopieren Sie die sichtbaren Zellen entweder mittels „Kopieren“ und „Einfügen“ über die Zwischenablage, mit der mittleren Maustaste oder mittela Ziehen und Ablegen bei gedrückter Strg-Taste." #: cellcopy.xhp msgctxt "" @@ -2088,7 +2088,7 @@ "tit\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "Referenzieren von Zellen durch Ziehen & Ablegen" +msgstr "Zellbezüge beim Ziehen und Ablegen" #: cellreference_dragdrop.xhp msgctxt "" @@ -2096,7 +2096,7 @@ "bm_id3154686\n" "help.text" msgid "drag and drop; referencing cells cells; referencing by drag and drop references;inserting by drag and drop inserting;references, by drag and drop" -msgstr "Ziehen & Ablegen;Zellen referenzieren Zellen;durch Ziehen & Ablegen referenzieren Bezüge;durch Ziehen & Ablegen einfügen Einfügen;Bezüge (durch Ziehen & Ablegen)" +msgstr "Ziehen und Ablegen;Zellbezüge Zellen;Bezüge beim Ziehen und Ablegen Bezüge;beim Ziehen und Ablegen Einfügen;Bezüge beim Ziehen und Ablegen" #: cellreference_dragdrop.xhp msgctxt "" @@ -2105,7 +2105,7 @@ "16\n" "help.text" msgid "Referencing Cells by Drag-and-Drop" -msgstr "Referenzieren von Zellen durch Ziehen & Ablegen" +msgstr "Referenzieren von Zellen durch Ziehen-und-Ablegen" #: cellreference_dragdrop.xhp msgctxt "" @@ -3725,7 +3725,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 "Sie können das Währungsformat im Dialog Zellen formatierenändern (wählen Sie Format - Zellen... - Zahlen). Im Listenfeld Sprache können Sie die Grundeinstellung für das Dezimalzeichen und den Tausendertrenner festlegen. Im Feld Format können Sie das Währungsymbol und dessen Position wählen." +msgstr "Sie können das Währungsformat im Dialog Zellen formatieren ändern (wählen Sie Format - Zellen... - Zahlen). Im Listenfeld Sprache können Sie die Grundeinstellung für das Dezimalzeichen und den Tausendertrenner festlegen. Im Feld Format können Sie das Währungsymbol und dessen Position wählen." #: currency_format.xhp msgctxt "" @@ -4207,7 +4207,7 @@ "9\n" "help.text" msgid "Choose Insert - Pivot Table. The Select Source dialog appears. Choose Current selection and confirm with OK. The table headings are shown as buttons in the Pivot Table dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"." -msgstr "Wählen Sie Einfügen - Pivot-Tabelle.... Der Dialog Quelle auswählen wird geöffnet. Wählen Sie Aktuelle Auswahl und bestätigen Sie mit OK. Im Dialog Pivot-Tabelle werden die Spaltenköpfe der Tabelle als Schaltflächen angezeigt, die Sie per Ziehen & Ablegen frei in den Layoutbereichen \"Seitenfelder\", \"Spaltenfelder\", \"Zeilenfelder\" und \"Datenfelder\" positionieren können." +msgstr "Wählen Sie Einfügen - Pivot-Tabelle.... Der Dialog Quelle auswählen wird geöffnet. Wählen Sie Aktuelle Auswahl und bestätigen Sie mit OK. Im Dialog Pivot-Tabelle werden die Spaltenköpfe der Tabelle als Schaltflächen angezeigt, die Sie mittels Ziehen und Ablegen frei in den Layoutbereichen \"Seitenfelder\", \"Spaltenfelder\", \"Zeilenfelder\" und \"Datenfelder\" positionieren können." #: datapilot_createtable.xhp msgctxt "" @@ -4224,7 +4224,7 @@ "par_id7599414\n" "help.text" msgid "Drag a button to the Page Fields area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter." -msgstr "Ziehen Sie eine Schaltfläche in den Bereich Seitenfelder, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen & Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." +msgstr "Ziehen Sie eine Schaltfläche in den Bereich Seitenfelder, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen-und-Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." #: datapilot_createtable.xhp msgctxt "" @@ -4372,7 +4372,7 @@ "par_id1648915\n" "help.text" msgid "In the Pivot Table dialog, you can drag a button to the Page Fields area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter." -msgstr "Im Dialog Pivot-Tabelle können Sie eine Schaltfläche in den Bereich Seitenfelder ziehen, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen & Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." +msgstr "Im Dialog Pivot-Tabelle können Sie eine Schaltfläche in den Bereich Seitenfelder ziehen, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen-und-Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." #: datapilot_edittable.xhp msgctxt "" @@ -4398,7 +4398,7 @@ "par_id2666096\n" "help.text" msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields." -msgstr "Verwenden Sie in der Pivot-Tabelle Ziehen & Ablegen oder Ausschneiden und Einfügen, um die Reihenfolge der Datenfelder festzulegen." +msgstr "Verwenden Sie in der Pivot-Tabelle Ziehen-und-Ablegen oder Ausschneiden und Einfügen, um die Reihenfolge der Datenfelder festzulegen." #: datapilot_edittable.xhp msgctxt "" @@ -7320,7 +7320,7 @@ "5\n" "help.text" msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop." -msgstr "Ziehen Sie mit ständig gedrückter Maustaste über einen Bereich von zwei Zellen und wieder zurück. Lassen Sie die Maustaste wieder los. Nun können Sie die einzelne Zelle durch Ziehen & Ablegen verschieben." +msgstr "Ziehen Sie mit ständig gedrückter Maustaste über einen Bereich von zwei Zellen und wieder zurück. Lassen Sie die Maustaste wieder los. Nun können Sie die einzelne Zelle durch Ziehen-und-Ablegen verschieben." #: mark_cells.xhp msgctxt "" @@ -7576,7 +7576,7 @@ "tit\n" "help.text" msgid "Moving Cells by Drag-and-Drop" -msgstr "Zellen per Ziehen & Ablegen verschieben" +msgstr "Zellen per Ziehen-und-Ablegen verschieben" #: move_dragdrop.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/scalc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/scalc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2017-02-23 05:21+0000\n" +"PO-Revision-Date: 2017-05-03 04:02+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487827260.000000\n" +"X-POOTLE-MTIME: 1493784146.000000\n" #: main0000.xhp msgctxt "" @@ -1536,7 +1536,7 @@ "25\n" "help.text" msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer." -msgstr "$[officename] Calc erlaubt es, Tabellen durch Ziehen & Ablegen aus Datenbanken zu übernehmen und Tabellendokumente als Datenquelle zum Erstellen von Serienbriefen in $[officename] Writer einzusetzen." +msgstr "$[officename] Calc erlaubt es, Tabellen durch Ziehen-und-Ablegen aus Datenbanken zu übernehmen und Tabellendokumente als Datenquelle zum Erstellen von Serienbriefen in $[officename] Writer einzusetzen." #: main0503.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/schart/01.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/schart/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-26 04:55+0000\n" +"PO-Revision-Date: 2017-04-30 05:50+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488084903.000000\n" +"X-POOTLE-MTIME: 1493531446.000000\n" #: 03010000.xhp msgctxt "" @@ -888,7 +888,7 @@ "37\n" "help.text" msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis." -msgstr "In diesem Bereich können Sie Ihrem Diagramm eine zweite Achse zuweisen. Ist bereits eine Datenreihe dieser Achse zugeordnet, zeigt $[officename] automatisch Achse und Beschriftung an. Sie können diese Standardeinstellung nachträglich abschalten. Wenn Sie diesen Bereich aktivieren und der Achse keine Daten zugeordnet sind, werden für die sekundäre die Werte der primären Y-Achse übernommen." +msgstr "In diesem Bereich können Sie Ihrem Diagramm eine zweite Achse zuweisen. Ist bereits eine Datenreihe dieser Achse zugeordnet, zeigt $[officename] automatisch Achse und Beschriftung an. Sie können diese Standardeinstellung nachträglich abschalten. Wenn Sie diesen Bereich aktivieren und der Achse keine Daten zugeordnet sind, werden für die sekundäre Achse die Werte der primären Y-Achse übernommen." #: 04040000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.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: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-04-01 08:44+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-05-03 07:27+0000\n" +"Last-Translator: Sophia Schröder \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491036252.000000\n" +"X-POOTLE-MTIME: 1493796441.000000\n" #: 00000001.xhp msgctxt "" @@ -1963,7 +1963,7 @@ "7\n" "help.text" msgid "Some windows in $[officename], for example the Styles and Formatting window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows." -msgstr "Einige Fenster in $[officename], zum Beispiel das Formatvorlagenfenster und der Navigator, sind \"andockbare\" Fenster. Sie können diese Fenster verschieben, vergrößern oder sie an eine Kante des Arbeitsbereichs andocken. An jeder Kante können Sie mehrere Fenster über, oder nebeneinander andocken. Sie können dann durch das Verschieben der Umrandungslinien die relativen Proportionen der Fenster verändern." +msgstr "Einige Fenster in $[officename], zum Beispiel das Formatvorlagenfenster und der Navigator, sind \"andockbare\" Fenster. Sie können diese Fenster verschieben, vergrößern oder sie an eine Kante des Arbeitsbereichs andocken. An jeder Kante können Sie mehrere Fenster über- oder nebeneinander andocken. Sie können dann durch das Verschieben der Umrandungslinien die relativen Proportionen der Fenster verändern." #: 00000005.xhp msgctxt "" @@ -1972,7 +1972,7 @@ "127\n" "help.text" msgid "To undock and re-dock, holding down the CommandCtrl key, double-click a vacant area in the window. In the Styles and Formatting window, you can also double-click a gray part of the window next to the icons, while you hold down the CommandCtrl key." -msgstr "Zum Ab- und wieder andocken halten Sie die BefehlStrg-Taste gedrückt und klicken doppelt in einem freien Fensterbereich. Im Formatvorlagenfenster können Sie auch doppelt in einem grauen Teil des Fensters nahe der Symbole klicken, während Sie die BefehlStrg-Taste gedrückt halten." +msgstr "Zum Ab- und wieder Andocken halten Sie die BefehlStrg-Taste gedrückt und klicken doppelt in einem freien Fensterbereich. Im Formatvorlagenfenster können Sie auch doppelt in einem grauen Teil des Fensters nahe der Symbole klicken, während Sie die BefehlStrg-Taste gedrückt halten." #: 00000005.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-16 14:56+0000\n" +"PO-Revision-Date: 2017-05-01 12:34+0000\n" "Last-Translator: Thomas Hackert \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492354595.000000\n" +"X-POOTLE-MTIME: 1493642077.000000\n" #: 01010000.xhp msgctxt "" @@ -8244,7 +8244,7 @@ "par_id3149551\n" "help.text" msgid "For example, a similarity search can find words that differ from the Find text by two characters." -msgstr "So kann eine Ähnlichkeitssuche beispielsweise Wörter suchen, die sich von dem Suchbegriff im Texteld Suchen um zwei Zeichen unterscheidet." +msgstr "So kann eine Ähnlichkeitssuche beispielsweise Wörter suchen, die sich von dem Suchbegriff im Textfeld Suchen um zwei Zeichen unterscheiden." #: 02100100.xhp msgctxt "" @@ -11309,7 +11309,7 @@ "6\n" "help.text" msgid "When you rest the mouse pointer over a change markup in the document, a Tip displays the author and the date and time that the change was made. If the Extended Tips are activated, the type of change and any attached comments are also displayed." -msgstr "Wenn Sie den Mauszeiger über eine Änderungsmarkierung im Dokument setzen, wird ein Tipp angezeigt, aus dem Autor, Datum und Uhrzeit der Änderung hervorgehen. Ist die Funktion Aktive Hilfe eingeschaltet, so werden auch Art der Änderung und etwaige Kommentare angezeigt." +msgstr "Wenn Sie den Mauszeiger über eine Änderungsmarkierung im Dokument setzen, wird ein Tipp angezeigt, aus dem Autor, Datum und Uhrzeit der Änderung hervorgehen. Ist die Funktion Erweiterte Tipps eingeschaltet, so werden auch Art der Änderung und etwaige Kommentare angezeigt." #: 02230200.xhp msgctxt "" @@ -19366,7 +19366,7 @@ "9\n" "help.text" msgid "Apply list of forbidden characters to the beginning and end of line" -msgstr "Liste der verbotenen Zeichen an Zeilenanfang und -ende berücksichtigen" +msgstr "Liste der verbotenen Zeichen am Zeilenanfang und -ende berücksichtigen" #: 05020700.xhp msgctxt "" @@ -34033,7 +34033,7 @@ "par_id1416974\n" "help.text" msgid "If the hyphens are there between digits or the text has the Hungarian or Finnish language attribute, then two hyphens in the sequence A--B are replaced by an en-dash instead of an em-dash." -msgstr "Falls die Trennstriche zwischen Ziffern sind oder der Text ungarische bzw. finnische Sprachattribute hat, dann werden zwei Trennstriche in der Sequenz A--B durch einen Halbgeviertstrich statt einen Geviertstrich ersetzt." +msgstr "Falls die Trennstriche zwischen Ziffern sind oder der Text ungarische bzw. finnische Sprachattribute hat, dann werden zwei Trennstriche in der Sequenz A--B durch einen Halbgeviertstrich statt einen Geviertstrich ersetzt." #: 06040100.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.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: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-24 20:03+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-05-03 07:33+0000\n" +"Last-Translator: Sophia Schröder \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490385780.000000\n" +"X-POOTLE-MTIME: 1493796826.000000\n" #: 02000000.xhp msgctxt "" @@ -13481,7 +13481,7 @@ "par_id3479415\n" "help.text" msgid "Select to show the page numbers in the Page Header area or in the Page Footer area." -msgstr "Wählen Sie, ob die Seitenzahlen im Seitenkopf-oder Seitenfußbereich angezeigt werden." +msgstr "Wählen Sie, ob die Seitenzahlen im Seitenkopf- oder im Seitenfußbereich angezeigt werden." #: rep_pagenumbers.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.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: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-04-16 15:22+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2017-05-03 06:50+0000\n" +"Last-Translator: Sophia Schröder \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492356131.000000\n" +"X-POOTLE-MTIME: 1493794217.000000\n" #: aaa_start.xhp msgctxt "" @@ -831,7 +831,7 @@ "68\n" "help.text" msgid "Double-click inside a vacant area of the window while holding down the CommandCtrl key. In the Styles and Formatting window, double-click a gray part of the window next to the icons while holding down the CommandCtrl key. Alternatively, press CommandCtrl+Shift+F10." -msgstr "Doppelklicken Sie auf eine freie Stelle des Fensters, während Sie die Taste BefehlStrg gedrückt halten. Im Fenster Formatvorlagen doppelklicken Sie auf einen grauen Teil des Fensters neben den Symbolen, während Sie die Taste BefehlStrg gedrückt halten. Alternativ drücken Sie die die Taste BefehlStrg+Umschalt+F10." +msgstr "Doppelklicken Sie auf eine freie Stelle des Fensters, während Sie die Taste BefehlStrg gedrückt halten. Im Fenster Formatvorlagen doppelklicken Sie auf einen grauen Teil des Fensters neben den Symbolen, während Sie die Taste BefehlStrg gedrückt halten. Alternativ drücken Sie die Tasten BefehlStrg+Umschalt+F10." #: autohide.xhp msgctxt "" @@ -8283,7 +8283,7 @@ "tit\n" "help.text" msgid "Sending Faxes and Configuring $[officename] for Faxing" -msgstr "Fax versenden und $[officename] zum Faxen konfigurieren" +msgstr "Faxe versenden und $[officename] zum Faxen konfigurieren" #: fax.xhp msgctxt "" @@ -8300,7 +8300,7 @@ "5\n" "help.text" msgid "Sending Faxes and Configuring $[officename] for Faxing" -msgstr "Fax versenden und $[officename] zum Faxen konfigurieren" +msgstr "Faxe versenden und $[officename] zum Faxen konfigurieren" #: fax.xhp msgctxt "" @@ -8957,7 +8957,7 @@ "par_idN1069C\n" "help.text" msgid "On the Drawing toolbar or on the Fontwork toolbar, click the Fontwork Gallery icon.Icon" -msgstr "In der Symbolleiste Zeichnung oder in de Symbolleiste Fontwork, klicken Sie auf das Symbol Fontwork Gallery.Symbol" +msgstr "In der Symbolleiste Zeichnung oder in der Symbolleiste Fontwork, klicken Sie auf das Symbol Fontwork Gallery.Symbol" #: fontwork.xhp msgctxt "" @@ -10107,7 +10107,7 @@ "par_idN10682\n" "help.text" msgid "Choose Insert - Image, select and insert a bitmap image." -msgstr "Wählen Sie Einfügen - Bildbzw. eine Bitmap-Grafik aus und fügen Sie diese ein." +msgstr "Wählen Sie Einfügen - Bild bzw. eine Bitmap-Grafik aus und fügen Sie diese ein." #: imagemap.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-04-16 04:25+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-05-03 07:34+0000\n" +"Last-Translator: Sophia Schröder \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492316709.000000\n" +"X-POOTLE-MTIME: 1493796840.000000\n" #: 01000000.xhp msgctxt "" @@ -7236,7 +7236,7 @@ "36\n" "help.text" msgid "Specifies that non-breaking spaces are shown as gray boxes. Non-breaking spaces are not broken at the end of a line and are entered with the Command+Shift+Spacebar Ctrl+Shift+Spacebar shortcut keys." -msgstr "Geschützte Zeichen werden grau hinterlegt dargestellt und am Zeilenende nicht umgebrochen. Geschützte Leereichen bzw. geschützte Bindestriche werden mit Umschalt+BefehlStrg+Leertaste bzw. +Minus (-) eingegeben." +msgstr "Geschützte Zeichen werden grau hinterlegt dargestellt und am Zeilenende nicht umgebrochen. Geschützte Leerzeichen bzw. geschützte Bindestriche werden mit Umschalt+BefehlStrg+Leertaste bzw. +Minus (-) eingegeben." #: 01040600.xhp msgctxt "" @@ -9271,7 +9271,7 @@ "15\n" "help.text" msgid "Specifies whether the anchor icon is displayed when an inserted object, such as a graphic, is selected." -msgstr "Legt fest, ob beim auswählen eines eingefügten Objekts, z.B. einer Grafik, das Ankersymbol angezeigt wird." +msgstr "Legt fest, ob beim Auswählen eines eingefügten Objekts, z.B. einer Grafik, das Ankersymbol angezeigt wird." #: 01060100.xhp msgctxt "" @@ -10376,7 +10376,7 @@ "34\n" "help.text" msgid "* in following position:" -msgstr ".* an folgender Stelle:" +msgstr "* an folgender Stelle:" #: 01060500.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/smath/01.po libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po --- libreoffice-5.3.3~rc1/translations/source/de/helpcontent2/source/text/smath/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-16 15:30+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2017-04-30 05:23+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492356642.000000\n" +"X-POOTLE-MTIME: 1493529821.000000\n" #: 02080000.xhp msgctxt "" @@ -2586,7 +2586,7 @@ "53\n" "help.text" msgid "Inserts a hyperbolic sine with one placeholder. You can also type sinh() in the Commands window." -msgstr "Fügt eine Sinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch sinh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Sinus Hyperbolicus mit einem Platzhalter ein. Sie können auch sinh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2638,7 +2638,7 @@ "54\n" "help.text" msgid "Inserts a hyperbolic cosine symbol with one placeholder. You can also type cosh() in the Commands window." -msgstr "Fügt eine Kosinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch cosh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kosinus Hyperbolicus mit einem Platzhalter ein. Sie können auch cosh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2664,7 +2664,7 @@ "55\n" "help.text" msgid "Inserts a hyperbolic tangent symbol with one placeholder. You can also type tanh() in the Commands window." -msgstr "Fügt eine Tangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch tanh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Tangens Hyperbolicus mit einem Platzhalter ein. Sie können auch tanh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2690,7 +2690,7 @@ "56\n" "help.text" msgid "Inserts a hyperbolic cotangent symbol with one placeholder. You can directly type coth() in the Commands window." -msgstr "Fügt eine Kotangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch coth() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kotangens Hyperbolicus mit einem Platzhalter ein. Sie können auch coth() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2872,7 +2872,7 @@ "61\n" "help.text" msgid "Inserts an area hyperbolic sine function with one placeholder. You can also type arsinh() in the Commands window." -msgstr "Fügt eine Sinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch arsinh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Sinus Hyperbolicus mit einem Platzhalter ein. Sie können auch arsinh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2898,7 +2898,7 @@ "63\n" "help.text" msgid "Inserts an area hyperbolic cosine function with one placeholder. You can also type arcosh() in the Commands window." -msgstr "Fügt eine Kosinus Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch arcosh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kosinus Hyperbolicus mit einem Platzhalter ein. Sie können auch arcosh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2924,7 +2924,7 @@ "65\n" "help.text" msgid "Inserts an area hyperbolic tangent function with one placeholder. You can also type artanh() in the Commands window." -msgstr "Fügt eine Tangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch artanh() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Tangens Hyperbolicus mit einem Platzhalter ein. Sie können auch artanh() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" @@ -2950,7 +2950,7 @@ "67\n" "help.text" msgid "Inserts an area hyperbolic cotangent function with one placeholder. You can also type arcoth() in the Commands window." -msgstr "Fügt eine Kotangens Hyperbolikus-Funktion mit einem Platzhalter ein. Sie können auch arcoth() direkt in das Fenster Kommandos eingeben." +msgstr "Fügt eine Funktion Kotangens Hyperbolicus mit einem Platzhalter ein. Sie können auch arcoth() direkt in das Fenster Kommandos eingeben." #: 03090400.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.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: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-04-06 04:17+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-30 09:55+0000\n" +"Last-Translator: Sophia Schröder \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491452243.000000\n" +"X-POOTLE-MTIME: 1493546123.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -25351,7 +25351,7 @@ "Label\n" "value.text" msgid "~Track Changes" -msgstr "Änderungen v~erfolgen" +msgstr "Änd~erungen" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/de/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/de/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-04-01 08:36+0000\n" +"PO-Revision-Date: 2017-05-03 03:34+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491035798.000000\n" +"X-POOTLE-MTIME: 1493782464.000000\n" #: filter.src msgctxt "" @@ -99,7 +99,7 @@ "STR_UNDO_DRAGDROP\n" "string.text" msgid "Drag and Drop" -msgstr "Ziehen&Ablegen" +msgstr "Ziehen und Ablegen" #: globstr.src msgctxt "" @@ -19830,7 +19830,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "Konfidenzintervall (Standartdwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." +msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." #: scfuncs.src msgctxt "" @@ -19965,7 +19965,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "Konfidenzintervall (Standartdwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." +msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/sd/source/ui/app.po libreoffice-5.3.3~rc2/translations/source/de/sd/source/ui/app.po --- libreoffice-5.3.3~rc1/translations/source/de/sd/source/ui/app.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-23 05:16+0000\n" +"PO-Revision-Date: 2017-05-03 03:36+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490246187.000000\n" +"X-POOTLE-MTIME: 1493782595.000000\n" #: popup.src msgctxt "" @@ -392,7 +392,7 @@ "STR_UNDO_DRAGDROP\n" "string.text" msgid "Drag and Drop" -msgstr "Ziehen&Ablegen" +msgstr "Ziehen und Ablegen" #: strings.src msgctxt "" @@ -2554,7 +2554,7 @@ "STRING_DRAG_AND_DROP_PAGES\n" "string.text" msgid "Drag and Drop Pages" -msgstr "Seiten Ziehen&Ablegen" +msgstr "Seiten Ziehen und Ablegen" #: strings.src msgctxt "" @@ -2562,7 +2562,7 @@ "STRING_DRAG_AND_DROP_SLIDES\n" "string.text" msgid "Drag and Drop Slides" -msgstr "Folien Ziehen&Ablegen" +msgstr "Folien Ziehen und Ablegen" #: strings.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/sw/source/ui/utlui.po libreoffice-5.3.3~rc2/translations/source/de/sw/source/ui/utlui.po --- libreoffice-5.3.3~rc1/translations/source/de/sw/source/ui/utlui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/sw/source/ui/utlui.po 2017-05-03 16:46:29.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: 2017-03-29 20:56+0200\n" +"POT-Creation-Date: 2017-05-03 12:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1962,7 +1962,7 @@ "STR_CONTENT_TYPE_REFERENCE\n" "string.text" msgid "References" -msgstr "Bezüge" +msgstr "Verweise" #: utlui.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/sw/uiconfig/swriter/ui.po libreoffice-5.3.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po --- libreoffice-5.3.3~rc1/translations/source/de/sw/uiconfig/swriter/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-23 04:56+0000\n" +"PO-Revision-Date: 2017-05-03 03:45+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490244990.000000\n" +"X-POOTLE-MTIME: 1493783104.000000\n" #: abstractdialog.ui msgctxt "" @@ -17081,7 +17081,7 @@ "0\n" "stringlist.text" msgid "References" -msgstr "Bezüge" +msgstr "Verweise" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/swext/mediawiki/help.po libreoffice-5.3.3~rc2/translations/source/de/swext/mediawiki/help.po --- libreoffice-5.3.3~rc1/translations/source/de/swext/mediawiki/help.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/swext/mediawiki/help.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-14 11:23+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-04-26 04:38+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484392992.000000\n" +"X-POOTLE-MTIME: 1493181535.000000\n" #: help.tree msgctxt "" @@ -646,7 +646,7 @@ "par_id664082\n" "help.text" msgid "Select the MediaWiki server where you want to publish your document. Click Add to add a new server to the list." -msgstr "Wählen Sie den MediaWiki-Server aus, auf dem Sie Ihr Dokument bereitstellen möchten. Klicken Sie auf HInzufügen, um einen neuen Server hinzuzufügen." +msgstr "Wählen Sie den MediaWiki-Server aus, auf dem Sie Ihr Dokument veröffentlichen möchten. Klicken Sie auf Hinzufügen, um einen neuen Server zur Liste hinzuzufügen." #: wikisend.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/de/vcl/source/src.po libreoffice-5.3.3~rc2/translations/source/de/vcl/source/src.po --- libreoffice-5.3.3~rc1/translations/source/de/vcl/source/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/de/vcl/source/src.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-04-01 08:39+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-04-30 08:17+0000\n" +"Last-Translator: Thomas Hackert \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491035999.000000\n" +"X-POOTLE-MTIME: 1493540268.000000\n" #: app.src msgctxt "" @@ -626,7 +626,7 @@ "SV_SHORTCUT_ACTIVEHELP\n" "string.text" msgid "Extended Tips" -msgstr "Aktive Hilfe" +msgstr "Erweiterte Tipps" #: helptext.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/en-GB/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-15 14:28+0000\n" +"PO-Revision-Date: 2017-04-24 14:56+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484490483.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493045787.000000\n" #: 01120000.xhp msgctxt "" @@ -5678,7 +5678,7 @@ "par_id231020162315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060102.xhp msgctxt "" @@ -5686,7 +5686,7 @@ "par_id231020163315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-01-17 11:28+0000\n" +"PO-Revision-Date: 2017-04-24 14:56+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484652520.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493045792.000000\n" #: 01000000.xhp msgctxt "" @@ -2454,7 +2454,7 @@ "hd_id3154754\n" "help.text" msgid "Pick" -msgstr "" +msgstr "Pick" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/basic/source/classes.po libreoffice-5.3.3~rc2/translations/source/es/basic/source/classes.po --- libreoffice-5.3.3~rc1/translations/source/es/basic/source/classes.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2016-08-26 10:32+0000\n" +"PO-Revision-Date: 2017-04-28 18:59+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1472207569.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493405988.000000\n" #: sb.src msgctxt "" @@ -1214,7 +1214,7 @@ "ERRCODE_BASMGR_MGRSAVE & ERRCODE_RES_MASK\n" "string.text" msgid "Error saving BASIC: '$(ARG1)'." -msgstr "Error al guardar BASIC: '$(ARG1)'." +msgstr "Error al guardar BASIC: «$(ARG1)»." #: sb.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/connectivity/source/resource.po libreoffice-5.3.3~rc2/translations/source/es/connectivity/source/resource.po --- libreoffice-5.3.3~rc1/translations/source/es/connectivity/source/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/connectivity/source/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-06-26 21:58+0000\n" +"PO-Revision-Date: 2017-04-28 19:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435355934.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493406041.000000\n" #: conn_error_message.src msgctxt "" @@ -368,7 +368,7 @@ "STR_NO_ELEMENT_NAME\n" "string.text" msgid "There is no element named '$name$'." -msgstr "No hay un elmento llamado '$name$'." +msgstr "No hay ningún elemento llamado «$name$»." #: conn_shared_res.src msgctxt "" @@ -400,7 +400,7 @@ "STR_UNKNOWN_COLUMN_NAME\n" "string.text" msgid "The column name '$columnname$' is unknown." -msgstr "El nombre de la columna '$columnname$' es desconocida." +msgstr "Se desconoce el nombre de la columna «$columnname$»." #: conn_shared_res.src msgctxt "" @@ -544,7 +544,7 @@ "STR_COLUMN_NOT_UPDATEABLE\n" "string.text" msgid "The column at position '$position$' could not be updated." -msgstr "La columna en la posición '$position$' no puede ser actualizada." +msgstr "No se puede actualizar la columna en la posición «$position$»." #: conn_shared_res.src msgctxt "" @@ -980,7 +980,7 @@ "STR_UNKNOWN_PARA_TYPE\n" "string.text" msgid "The type of parameter at position '$position$' is unknown." -msgstr "La tipo de parámetro en la posición '$position$' es desconocido." +msgstr "Se desconoce el tipo de parámetro en la posición «$position$»." #: conn_shared_res.src msgctxt "" @@ -988,7 +988,7 @@ "STR_UNKNOWN_COLUMN_TYPE\n" "string.text" msgid "The type of column at position '$position$' is unknown." -msgstr "El tipo de columna en la posición '$position$' es desconocido." +msgstr "Se desconoce el tipo de columna en la posición «$position$»." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/cui/source/tabpages.po libreoffice-5.3.3~rc2/translations/source/es/cui/source/tabpages.po --- libreoffice-5.3.3~rc1/translations/source/es/cui/source/tabpages.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/cui/source/tabpages.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-08 11:28+0000\n" +"PO-Revision-Date: 2017-04-25 13:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483874930.000000\n" +"X-POOTLE-MTIME: 1493126011.000000\n" #: border.src msgctxt "" @@ -438,7 +438,7 @@ "RID_SVXSTR_CPTL_STT_WORD\n" "string.text" msgid "Correct TWo INitial CApitals" -msgstr "Corregir DOs MAyúsculas SEguidas" +msgstr "Corregir DOs MAyúsculas INiciales" #: strings.src msgctxt "" @@ -470,7 +470,7 @@ "RID_SVXSTR_DETECT_URL\n" "string.text" msgid "URL Recognition" -msgstr "Reconocer los URL" +msgstr "Reconocer URL" #: strings.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/es/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-20 23:24+0000\n" +"PO-Revision-Date: 2017-05-01 19:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1490052282.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493668168.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "© 2000–2017 de los colaboradores de LibreOffice." #: aboutdialog.ui msgctxt "" @@ -9730,7 +9730,7 @@ "label\n" "string.text" msgid "_Western characters only" -msgstr "Solo caracteres _occidentales" +msgstr "Solo texto _occidental" #: optasianpage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/filter/source/xsltdialog.po libreoffice-5.3.3~rc2/translations/source/es/filter/source/xsltdialog.po --- libreoffice-5.3.3~rc1/translations/source/es/filter/source/xsltdialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/filter/source/xsltdialog.po 2017-05-03 16:46:29.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: 2013-05-27 04:36+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-28 21:52+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369629379.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493416323.000000\n" #: xmlfilterdialogstrings.src msgctxt "" @@ -86,7 +86,7 @@ "STR_ERROR_TYPE_NAME_EXISTS\n" "string.text" msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name." -msgstr "El nombre para la interfaz de usuario '%s1' ya fue utilizado por el filtro XML '%s2'. Introduzca otro nombre." +msgstr "El filtro XML «%s2» ya utiliza el nombre para la interfaz de usuario «%s1». Escoja otro nombre." #: xmlfilterdialogstrings.src msgctxt "" @@ -150,7 +150,7 @@ "STR_FILTER_HAS_BEEN_SAVED\n" "string.text" msgid "The XML filter '%s' has been saved as package '%s'. " -msgstr "El filtro XML '%s' se ha guardado como paquete '%s'. " +msgstr "Se ha guardado el filtro XML «%s» como el paquete «%s». " #: xmlfilterdialogstrings.src msgctxt "" @@ -174,7 +174,7 @@ "STR_FILTER_INSTALLED\n" "string.text" msgid "The XML filter '%s' has been installed successfully." -msgstr "La instalación del filtro XML '%s' ha finalizado." +msgstr "Ha finalizado la instalación del filtro XML «%s» correctamente." #: xmlfilterdialogstrings.src msgctxt "" @@ -190,7 +190,7 @@ "STR_NO_FILTERS_FOUND\n" "string.text" msgid "No XML filter could be installed because the package '%s' does not contain any XML filters." -msgstr "No se ha podido instalar ningún filtro XML porque el paquete '%s' no contiene ningún filtro XML." +msgstr "No se ha podido instalar ningún filtro XML porque el paquete «%s» no contiene ninguno." #: xmlfilterdialogstrings.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/forms/source/resource.po libreoffice-5.3.3~rc2/translations/source/es/forms/source/resource.po --- libreoffice-5.3.3~rc1/translations/source/es/forms/source/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/forms/source/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-12 16:53+0000\n" +"PO-Revision-Date: 2017-04-28 19:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481561639.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493406045.000000\n" #: strings.src msgctxt "" @@ -274,7 +274,7 @@ "RID_STR_XFORMS_INVALID_CONSTRAINT\n" "string.text" msgid "The constraint '$1' not validated." -msgstr "La limitación '$1' no está validada." +msgstr "La limitación «$1» no está validada." #: xforms.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/formula/source/core/resource.po libreoffice-5.3.3~rc2/translations/source/es/formula/source/core/resource.po --- libreoffice-5.3.3~rc1/translations/source/es/formula/source/core/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +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: 2016-12-10 20:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-28 18:42+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493404942.000000\n" #: core_resource.src msgctxt "" @@ -929,6 +932,15 @@ "SC_OPCODE_ERROR_TYPE\n" "string.text" msgid "ERRORTYPE" +msgstr "TIPO.DE.ERROR.OOO" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_ERROR_TYPE_ODF\n" +"string.text" +msgid "ERROR.TYPE" msgstr "TIPO.DE.ERROR" #: core_resource.src @@ -2447,6 +2459,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_WEIBULL_MS\n" +"string.text" +msgid "WEIBULL.DIST" +msgstr "DISTR.WEIBULL" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_NEG_BINOM_VERT\n" "string.text" msgid "NEGBINOMDIST" @@ -2627,6 +2648,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_T_TEST_MS\n" +"string.text" +msgid "T.TEST" +msgstr "PRUEBA.T.N" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_RANK\n" "string.text" msgid "RANK" @@ -3503,7 +3533,7 @@ "SC_OPCODE_BITLSHIFT\n" "string.text" msgid "BITLSHIFT" -msgstr "BITLSHIFT" +msgstr "BIT.DESPLIZQDA" #: core_resource.src msgctxt "" @@ -3512,7 +3542,7 @@ "SC_OPCODE_ERROR_NULL\n" "string.text" msgid "#NULL!" -msgstr "#NULO!" +msgstr "#¡NULO!" #: core_resource.src msgctxt "" @@ -3521,7 +3551,7 @@ "SC_OPCODE_ERROR_DIVZERO\n" "string.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: core_resource.src msgctxt "" @@ -3530,7 +3560,7 @@ "SC_OPCODE_ERROR_VALUE\n" "string.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: core_resource.src msgctxt "" @@ -3539,7 +3569,7 @@ "SC_OPCODE_ERROR_REF\n" "string.text" msgid "#REF!" -msgstr "#REF!" +msgstr "#¡REF!" #: core_resource.src msgctxt "" @@ -3548,7 +3578,7 @@ "SC_OPCODE_ERROR_NAME\n" "string.text" msgid "#NAME?" -msgstr "#NOMBRE?" +msgstr "#¿NOMBRE?" #: core_resource.src msgctxt "" @@ -3557,7 +3587,7 @@ "SC_OPCODE_ERROR_NUM\n" "string.text" msgid "#NUM!" -msgstr "#NUM!" +msgstr "#¡NUM!" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/fpicker/source/office.po libreoffice-5.3.3~rc2/translations/source/es/fpicker/source/office.po --- libreoffice-5.3.3~rc1/translations/source/es/fpicker/source/office.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/fpicker/source/office.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:34+0200\n" -"PO-Revision-Date: 2015-09-05 07:56+0000\n" +"PO-Revision-Date: 2017-04-28 18:44+0000\n" "Last-Translator: Adolfo Jayme Barrientos \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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441439796.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493405077.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -22,7 +22,7 @@ "STR_SVT_FILEPICKER_AUTO_EXTENSION\n" "string.text" msgid "~Automatic file name extension" -msgstr "Extensión de archivo ~automática" +msgstr "~Extensión de nombre de archivo automática" #: OfficeFilePicker.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-18 03:33+0000\n" +"PO-Revision-Date: 2017-04-28 18:42+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492486396.000000\n" +"X-POOTLE-MTIME: 1493404938.000000\n" #: 01120000.xhp msgctxt "" @@ -4711,7 +4711,7 @@ "105\n" "help.text" msgid "DGET returns the contents of the referenced cell in a database which matches the specified search criteria. In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found." -msgstr "BDEXTRAER devuelve el contenido de la celda a la que se hace referencia en una base de datos que coincide con los criterios de búsqueda especificados. Si se detecta un error, la función devuelve #VALOR! si no se encuentra ninguna fila, o Err502 si se encuentra más de una celda." +msgstr "BDEXTRAER devuelve el contenido de la celda a la que se hace referencia en una base de datos que coincide con los criterios de búsqueda especificados. Si se detecta un error, la función devuelve #¡VALOR! si no se encuentra ninguna fila, o Err502 si se encuentra más de una celda." #: 04060101.xhp msgctxt "" @@ -9825,7 +9825,7 @@ "par_id3519089\n" "help.text" msgid "=N(1/0) returns #DIV/0!" -msgstr "=N(1/0) devuelve #DIV/0!" +msgstr "=N(1/0) devuelve #¡DIV/0!" #: 04060104.xhp msgctxt "" @@ -10217,7 +10217,7 @@ "par_id3151069\n" "help.text" msgid "TYPE" -msgstr "TIPO" +msgstr "TYPE" #: 04060104.xhp msgctxt "" @@ -16863,7 +16863,7 @@ "par_id3152876\n" "help.text" msgid "You can also create a \"normal\" formula in which the reference range, such as parameters, indicate an array formula. The result is obtained from the intersection of the reference range and the rows or columns in which the formula is found. If there is no intersection or if the range at the intersection covers several rows or columns, a #VALUE! error message appears. The following example illustrates this concept:" -msgstr "También se puede crear una fórmula «normal» cuyo intervalo de referencia, como los parámetros, indique una fórmula matricial. El resultado se obtiene a partir de la intersección del intervalo de referencia y de las filas o columnas en las que se encuentra la fórmula. Si no hay intersección o si el intervalo de la intersección abarca varias filas o columnas se mostrará un mensaje de error #VALOR! En el ejemplo siguiente se ilustra este concepto:" +msgstr "También se puede crear una fórmula «normal» cuyo intervalo de referencia, como los parámetros, indique una fórmula matricial. El resultado se obtiene a partir de la intersección del intervalo de referencia y de las filas o columnas en las que se encuentra la fórmula. Si no hay intersección o si el intervalo de la intersección abarca varias filas o columnas se mostrará un mensaje de error #¡VALOR! En el ejemplo siguiente se ilustra este concepto:" #: 04060107.xhp msgctxt "" @@ -17463,7 +17463,7 @@ "par_idN10E6A\n" "help.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: 04060107.xhp msgctxt "" @@ -20473,7 +20473,7 @@ "bm_id3153114\n" "help.text" msgid "ERRORTYPE function" -msgstr "Función TIPO.DE.ERROR" +msgstr "Función TIPO.DE.ERROR.OOO" #: 04060109.xhp msgctxt "" @@ -20482,7 +20482,7 @@ "38\n" "help.text" msgid "ERRORTYPE" -msgstr "TIPO.DE.ERROR" +msgstr "TIPO.DE.ERROR.OOO" #: 04060109.xhp msgctxt "" @@ -20518,7 +20518,7 @@ "42\n" "help.text" msgid "ERRORTYPE(Reference)" -msgstr "TIPO.DE.ERROR(referencia)" +msgstr "TIPO.DE.ERROR.OOO(Referencia)" #: 04060109.xhp msgctxt "" @@ -20545,7 +20545,7 @@ "45\n" "help.text" msgid "If cell A1 displays Err:518, the function =ERRORTYPE(A1) returns the number 518." -msgstr "Si la celda A1 muestra el Error:518, la función =TIPO.DE.ERROR(A1) devuelve el número 518." +msgstr "Si la celda A1 muestra el Error:518, la función =TIPO.DE.ERROR.OOO(A1) devuelve el número 518." #: 04060109.xhp msgctxt "" @@ -36948,7 +36948,7 @@ "266\n" "help.text" msgid "BITLSHIFT" -msgstr "BITLSHIFT" +msgstr "BIT.DESPLIZQDA" #: 04060120.xhp msgctxt "" @@ -36975,7 +36975,7 @@ "269\n" "help.text" msgid "BITLSHIFT(number; shift)" -msgstr "BITLSHIFT( número ; desplazamiento )" +msgstr "BIT.DESPLIZQDA(número; desplazamiento)" #: 04060120.xhp msgctxt "" @@ -37011,7 +37011,7 @@ "278\n" "help.text" msgid "=BITLSHIFT(6;1) returns 12 (0110 << 1 = 1100)." -msgstr "=BITLSHIFT(6;1) devuelve 12 (0110 << 1 = 1100)." +msgstr "=BIT.DESPLIZQDA(6;1) devuelve 12 (0110 << 1 = 1100)." #: 04060120.xhp msgctxt "" @@ -37073,7 +37073,7 @@ "170\n" "help.text" msgid "Shift is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)." -msgstr "Desplazamiento es la cantidad de posiciones que los bits se desplazarán hacia la derecha. Si el desplazamiento es negativo, es equivalente a BITLSHIFT (número; -desplazamiento)." +msgstr "Desplazamiento es la cantidad de posiciones que los bits se desplazarán hacia la derecha. Si el desplazamiento es negativo, es equivalente a BIT.DESPLIZQDA (número; -desplazamiento)." #: 04060120.xhp msgctxt "" @@ -43914,7 +43914,7 @@ "629\n" "help.text" msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value." -msgstr "Si el conjunto de datos no contiene ningún duplicado, MODA.UNO devuelve el valor de error #VALOR!" +msgstr "Si el conjunto de datos no contiene ningún duplicado, MODA.UNO devuelve el valor de error #¡VALOR!" #: 04060184.xhp msgctxt "" @@ -48193,7 +48193,7 @@ "129\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Realiza una estimación de la varianza a partir de una muestra." +msgstr "Estima la varianza a partir de una muestra." #: 04060185.xhp msgctxt "" @@ -48264,7 +48264,7 @@ "129\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Realiza una estimación de la varianza a partir de una muestra." +msgstr "Estima la varianza a partir de una muestra." #: 04060185.xhp msgctxt "" @@ -48877,7 +48877,7 @@ "bm_id3150941\n" "help.text" msgid "WEIBULL function" -msgstr "DIST.WEIBULL" +msgstr "función DIST.WEIBULL" #: 04060185.xhp msgctxt "" @@ -48919,7 +48919,7 @@ "par_id0305200911372743\n" "help.text" msgid "If C is 1, WEIBULL calculates the cumulative distribution function." -msgstr "Si C es 1, DIST.WEIBULL calcula la función de distribución acumulativa." +msgstr "Si C es 1, DIST.WEIBULL calcula la función de distribución acumulada." #: 04060185.xhp msgctxt "" @@ -48937,7 +48937,7 @@ "178\n" "help.text" msgid "WEIBULL(Number; Alpha; Beta; C)" -msgstr "DIST.WEIBULL(x; alfa ; beta ; acumulado)" +msgstr "DIST.WEIBULL(Número; Alfa; Beta; C)" #: 04060185.xhp msgctxt "" @@ -51094,7 +51094,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 "Por ejemplo, para mostrar la columna B, pulse en el encabezamiento de la columna A, expanda la selección a la columna C y elija Formato - Columna - Mostrar. Para mostrar la columna A ocultada anteriormente, pulse en el encabezamiento de la columna B, mantenga oprimido el botón del ratón y arrastre hacia la izquierda. El intervalo seleccionado mostrado en el área de nombres cambiará de B1:B1048576 a A1:B1048576. Elija Formato - Columna - Mostrar. Proceda de la misma manera con las filas." +msgstr "Por ejemplo, para mostrar la columna B, pulse en la cabecera de la columna A, expanda la selección a la columna C y vaya a Formato ▸ Columna ▸ Mostrar. Para mostrar la columna A ocultada anteriormente, pulse en la cabecera de la columna B, mantenga oprimido el botón del ratón y arrastre hacia la izquierda. El intervalo seleccionado mostrado en el área de nombres cambiará de B1:B1048576 a A1:B1048576. Vaya a Formato ▸ Columna ▸ Mostrar. Proceda de la misma manera con las filas." #: 05030400.xhp msgctxt "" @@ -58739,7 +58739,7 @@ "par_idN105C8\n" "help.text" msgid "Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies." -msgstr "Seleccione la jerarquía que desee utilizar. El Piloto de datos debe basarse en datos de origen externo que contengan jerarquías de datos." +msgstr "Seleccione la jerarquía que desee utilizar. La tabla dinámica debe basarse en datos de origen externo que contengan jerarquías de datos." #: 12090200.xhp msgctxt "" @@ -60028,7 +60028,7 @@ "par_id040320161859450\n" "help.text" msgid "The time line doesn't have to to be sorted, the functions will sort it for calculations.
The time line values must have a consistent step between them.
If a constant step can't be identified in the sorted time line, the functions will return the #NUM! error.
If the ranges of the time line and historical values aren't of same size, the functions will return the #N/A error.
If the time line contains less than 2 periods of data, the functions will return the #VALUE! Error." -msgstr "No es necesario que el plazo esté ordenado, ya que las funciones lo ordenarán para realizar los cálculos.
Los avances entre los valores del plazo deben ser uniformes.
Si no se puede identificar un avance constante en el plazo ordenado, las funciones devolverán el error #NUM!
Si los intervalos del plazo y los valores históricos no tienen el mismo tamaño, las funciones devolverán el error #N/A.
Si el plazo contiene menos de dos períodos de datos, las funciones devolverán el error #VALOR!" +msgstr "No es necesario que el plazo esté ordenado, ya que las funciones lo ordenarán para realizar los cálculos.
Los avances entre los valores del plazo deben ser uniformes.
Si no se puede identificar un avance constante en el plazo ordenado, las funciones devolverán el error #¡NUM!
Si los intervalos del plazo y los valores históricos no tienen el mismo tamaño, las funciones devolverán el error #N/A.
Si el plazo contiene menos de dos períodos de datos, las funciones devolverán el error #¡VALOR!" #: exponsmooth_embd.xhp msgctxt "" @@ -60252,7 +60252,7 @@ "par_id0503201619582644\n" "help.text" msgid "With values <= 0 or >= 1, the functions will return the #NUM! Error." -msgstr "Con valores menores o iguales que 0 o mayores o iguales que 1, las funciones devolverán el error #NUM!" +msgstr "Con valores menores o iguales que 0 o mayores o iguales que 1, las funciones devolverán el error #¡NUM!" #: exponsmooth_embd.xhp msgctxt "" @@ -60268,7 +60268,7 @@ "par_id0603201609412399\n" "help.text" msgid "A value of 1 indicates that Calc is to determine the number of samples in a period automatically.
A value of 0 indicates no periodic effects, a forecast is calculated with EDS algorithms.
For all other positive values, forecasts are calculated with ETS algorithms.
For values that not being a positive whole number, the functions will return the #NUM! Error." -msgstr "Un valor de 1 indica que Calc determina el número de muestras en un periodo automáticamente.
Un valor 0 indica que no tiene efectos periodicos, se calcula una previsión con algoritmos EDS.
Para todos los demás valores positivos las previsiones se calculan con algoritmos ETS.
Para valores que no sean un número positivo las funciones devuelven el error #NUM!." +msgstr "Un valor de 1 indica que Calc determinará el número de muestras del período automáticamente.
Un valor de 0 indica que no existen efectos periódicos y que cualquier previsión se habrá de calcular con el algoritmo EDS.
Para el resto de los valores positivos, las previsiones se calcularán con el algoritmo ETS.
Para valores que no sean enteros positivos, la función devuelve el error #¡NUM!" #: exponsmooth_embd.xhp msgctxt "" @@ -60860,7 +60860,7 @@ "par_id27530261624700\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: func_aggregate.xhp msgctxt "" @@ -60876,7 +60876,7 @@ "id_par29987248418152\n" "help.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: func_aggregate.xhp msgctxt "" @@ -61036,7 +61036,7 @@ "par_id278275053653\n" "help.text" msgid "If a cell in a range of values for calculating the mean is empty or contains text, function AVERAGEIF ignores this cell.
If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error." -msgstr "Si en el intervalo de valores para calcular la media hay una celda vacía o que contiene texto, la función PROMEDIO.SI la ignorará.
Si todo el intervalo está vacío, contiene solo texto o ninguno de los valores satisfacen la condición (o cualquier combinación de estas circunstancias), la función devolverá el error #DIV/0!." +msgstr "Si en el intervalo de valores para calcular la media hay una celda vacía o que contiene texto, la función PROMEDIO.SI la ignorará.
Si todo el intervalo está vacío, contiene solo texto o ninguno de los valores satisfacen la condición (o cualquier combinación de estas circunstancias), la función devolverá el error #¡DIV/0!" #: func_averageif.xhp msgctxt "" @@ -61372,7 +61372,7 @@ "par_id51531273215056\n" "help.text" msgid "If a cell in a range of values for calculating the mean is empty or contains text, the function AVERAGEIFS ignores this cell.
If a cell contains TRUE, it is treated as 1, if a cell contains FALSE – as 0 (zero).
If the whole range is empty, contains only text or all values of the range do not satisfy the condition (or any combination of those), the function returns the #DIV/0! error.
If the range of values for calculating the mean and any range for finding criterion have unequal sizes, the function returns err:502." -msgstr "Si una celda en un intervalo de valores para calcular el promedio está vacío o contiene texto, la función PROMEDIO.SI.CONJUNTO ignora esa celda.
Si una celda contiene Verdadero se trata como 1; si contiene Falso se trata como 0 (cero).
Si el intervalo completo está vacío, contiene solo texto o ninguno de sus valores (o alguna combinación de lo anterior) satisface la condición, la función devuelve el error #DIV/0!
Si el intervalo o los valores para el cálculo del promedio y cualquier intervalo para encontrar el criterio tienen tamaños diferentes, la función devuelve err:502." +msgstr "Si una celda en un intervalo de valores para calcular el promedio está vacío o contiene texto, la función PROMEDIO.SI.CONJUNTO ignora esa celda.
Si una celda contiene Verdadero se trata como 1; si contiene Falso se trata como 0 (cero).
Si el intervalo completo está vacío, contiene solo texto o ninguno de sus valores (o alguna combinación de lo anterior) satisface la condición, la función devuelve el error #¡DIV/0!
Si el intervalo o los valores para el cálculo del promedio y cualquier intervalo para encontrar el criterio tienen tamaños diferentes, la función devuelve err:502." #: func_averageifs.xhp msgctxt "" @@ -62868,7 +62868,7 @@ "tit\n" "help.text" msgid "ERROR.TYPE function" -msgstr "TIPO.DE.ERROR" +msgstr "Función TIPO.DE.ERROR" #: func_error_type.xhp msgctxt "" @@ -62908,7 +62908,7 @@ "par_id1861223540440\n" "help.text" msgid "ERROR.TYPE(Error_value)" -msgstr "TIPO.DE.ERROR (Valor_error)" +msgstr "TIPO.DE.ERROR(Valor_error)" #: func_error_type.xhp msgctxt "" @@ -62948,7 +62948,7 @@ "par_id121020152053148760\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: func_error_type.xhp msgctxt "" @@ -62956,7 +62956,7 @@ "par_id121020152053296785\n" "help.text" msgid "#VALUE!" -msgstr "#VALOR!" +msgstr "#¡VALOR!" #: func_error_type.xhp msgctxt "" @@ -62964,7 +62964,7 @@ "par_id121020152053329868\n" "help.text" msgid "#REF!" -msgstr "#REF!" +msgstr "#¡REF!" #: func_error_type.xhp msgctxt "" @@ -62972,7 +62972,7 @@ "par_id121020152053353976\n" "help.text" msgid "#NAME?" -msgstr "#NOMBRE?" +msgstr "#¿NOMBRE?" #: func_error_type.xhp msgctxt "" @@ -62980,7 +62980,7 @@ "par_id121020152053408216\n" "help.text" msgid "#NUM!" -msgstr "#NUM!" +msgstr "#¡NUM!" #: func_error_type.xhp msgctxt "" @@ -63028,7 +63028,7 @@ "par_id15812966716957\n" "help.text" msgid "=ERROR.TYPE(#N/A)" -msgstr "=TIPO.DE.ERROR (#N/A)" +msgstr "=TIPO.DE.ERROR(#N/D)" #: func_error_type.xhp msgctxt "" @@ -63044,7 +63044,7 @@ "par_id1047088636291\n" "help.text" msgid "=ERROR.TYPE(A3)" -msgstr "=TIPO.DE.ERROR (A3)" +msgstr "=TIPO.DE.ERROR(A3)" #: func_error_type.xhp msgctxt "" @@ -63052,7 +63052,7 @@ "par_id24308515918391\n" "help.text" msgid "If A3 contains an expression equivalent to the division by zero, the function returns 2, because 2 is the index number of the error value #DIV/0!" -msgstr "Si A3 contiene una expresión equivalente a la división por cero, la función devuelve 2 porque 2 es el número del índice del valor del error #DIV/0!" +msgstr "Si A3 contiene una expresión equivalente a la división por cero, la función devuelve 2 porque 2 es el número del índice del valor del error #¡DIV/0!" #: func_error_type.xhp msgctxt "" @@ -63092,7 +63092,7 @@ "par_id26251175451270\n" "help.text" msgid "If the ERROR.TYPE function is used as condition of the IF function and the ERROR.TYPE returns #N/A, the IF function returns #N/A as well. Use ISERROR to avoid it as shown in the example above." -msgstr "Si se usa la función TIPO.DE.ERROR como condición de la función SI y el TIPO.DE.ERROR devuelve #N/A, la función SI devuelve #N/A también. Se debe utilizar ESERROR para evitarlo, como se muestra en el ejemplo anterior." +msgstr "Si se usa la función TIPO.DE.ERROR como condición de la función SI y el TIPO.DE.ERROR devuelve #N/D, la función SI devuelve #N/D también. Se debe utilizar ESERROR para evitarlo, como se muestra en el ejemplo anterior." #: func_error_type.xhp msgctxt "" @@ -69134,7 +69134,7 @@ "par_id1003080\n" "help.text" msgid "Observed Mean Difference" -msgstr "Diferencia media observada" +msgstr "Diferencia de media observada" #: statistics.xhp msgctxt "" @@ -69566,7 +69566,7 @@ "par_id1003870\n" "help.text" msgid "Observed Mean Difference" -msgstr "Diferencia media observada" +msgstr "Diferencia de media observada" #: statistics.xhp msgctxt "" @@ -69582,7 +69582,7 @@ "par_id1003900\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: statistics.xhp msgctxt "" @@ -69598,7 +69598,7 @@ "par_id1003920\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: statistics.xhp msgctxt "" @@ -69622,7 +69622,7 @@ "par_id1003960\n" "help.text" msgid "#DIV/0!" -msgstr "#DIV/0!" +msgstr "#¡DIV/0!" #: statistics.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/scalc/05.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/scalc/05.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-09-08 13:07+0000\n" +"PO-Revision-Date: 2017-04-28 19:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1473340043.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493406592.000000\n" #: 02140000.xhp msgctxt "" @@ -188,7 +188,7 @@ "12\n" "help.text" msgid "503
#NUM!" -msgstr "503
#NUM!" +msgstr "503
#¡NUM!" #: 02140000.xhp msgctxt "" @@ -674,7 +674,7 @@ "78\n" "help.text" msgid "525
#NAME?" -msgstr "525
#NOMBRE?" +msgstr "525
#¿NOMBRE?" #: 02140000.xhp msgctxt "" @@ -683,7 +683,7 @@ "79\n" "help.text" msgid "invalid names (instead of Err:525 cell contains #NAME?)" -msgstr "Nombre no válido (en la celda no aparece Err:525, sino #NOMBRE?)" +msgstr "Nombre no válido (en la celda no aparece Err:525, sino #¿NOMBRE?)" #: 02140000.xhp msgctxt "" @@ -692,7 +692,7 @@ "80\n" "help.text" msgid "An identifier could not be evaluated, for example, no valid reference, no valid domain name, no column/row label, no macro, incorrect decimal divider, add-in not found." -msgstr "No se ha podido evaluar un identificador; por ejemplo, no hay referencia válida, nombre de dominio válido, etiqueta de columna/fila, macro, separador de decimales incorrecto, no se ha encontrado add-in." +msgstr "No se ha podido evaluar un identificador; por ejemplo, no hay referencia válida, nombre de dominio válido, etiqueta de columna/fila, macro, el separador de decimales es incorrecto, no se ha encontrado el complemento." #: 02140000.xhp msgctxt "" @@ -754,7 +754,7 @@ "par_id5324564\n" "help.text" msgid "532
#DIV/0!" -msgstr "532
#DIV/0!" +msgstr "532
#¡DIV/0!" #: 02140000.xhp msgctxt "" @@ -867,7 +867,7 @@ "par_id4086428\n" "help.text" msgid "Generate #VALUE! error: Text found where numeric data is expected will generate #VALUE! error. Example: \"123.45\" will generate a #VALUE! error, while 123.45 not." -msgstr "Generar error #VALOR!: si se halla texto donde se esperarían datos numéricos, se generará un error #VALOR! Por ejemplo: \"123.45\" producirá un error #VALOR!, mientras que 123.45 no." +msgstr "Generar error #¡VALOR!: si se halla texto donde se esperarían datos numéricos, se generará un error #¡VALOR! Por ejemplo: \"123.45\" producirá un error #¡VALOR!, mientras que 123.45 no." #: OpenCL_options.xhp msgctxt "" @@ -883,7 +883,7 @@ "par_id3067110\n" "help.text" msgid "Convert only if unambiguous: If the text represents a valid and unambiguous numeric value, convert it. Example: \"123.456\" will generate a #VALUE! error because the text contains a separator, while \"123456\" will not." -msgstr "" +msgstr "Convertir solo si no hay ambigüedad: si el texto representa un valor numérico válido e inequívoco, se convertirá. Por ejemplo: \"123,456\" generará el error #¡VALOR! debido a que contiene un separador, mientras que \"123456\" no lo hará." #: OpenCL_options.xhp msgctxt "" @@ -907,7 +907,7 @@ "par_id9094515\n" "help.text" msgid "This option determines how an empty string is treated when used in arithmetic operations. If you have set \"Conversion from text to number\" to either \"Generate #VALUE! error\" or \"Treat as zero\", you cannot choose (here) if conversion of an empty string to a number will generate an error or if it will treat empty strings as zero. Otherwise this option determines how empty strings are treated." -msgstr "Esta opción determina cómo es tratada una cadena de texto vacía cuando se usa en operaciones aritméticas. Si se definió la opción «Conversión de texto a número» a «Generar error #VALOR!» o «Tratar como cero», no se puede elegir (aquí) si la conversión de una cadena vacía a número generará un error o se tratará como un cero. En caso contrario, esta opción determina cómo se tratan las cadenas vacías." +msgstr "Esta opción determina cómo es tratada una cadena de texto vacía cuando se usa en operaciones aritméticas. Si se definió la opción «Conversión de texto a número» a «Generar error #¡VALOR!» o «Tratar como cero», no se puede elegir (aquí) si la conversión de una cadena vacía a número generará un error o se tratará como un cero. En caso contrario, esta opción determina cómo se tratan las cadenas vacías." #: OpenCL_options.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/scalc/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-04-15 09:30+0000\n" +"PO-Revision-Date: 2017-04-28 19:14+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492248627.000000\n" +"X-POOTLE-MTIME: 1493406892.000000\n" #: address_auto.xhp msgctxt "" @@ -4164,7 +4164,7 @@ "9\n" "help.text" msgid "A table that has been created as a pivot table is an interactive table. Data can be arranged, rearranged or summarized according to different points of view." -msgstr "Las tablas creadas mediante el Piloto de datos son interactivas. Los datos se pueden disponer, redistribuir o resumir según distintos puntos de vista." +msgstr "Las tablas dinámicas son interactivas. Los datos se pueden disponer, redistribuir o resumir según distintos puntos de vista." #: datapilot_createtable.xhp msgctxt "" @@ -4446,7 +4446,7 @@ "par_id3150441\n" "help.text" msgid "Click the Filter button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the Filter command. The Filter dialog appears. Here you can filter the pivot table." -msgstr "Haga clic en el botón Filtro de la hoja para abrir el diálogo de condiciones de filtro. Otra posibilidad es abrir el menú contextual de la tabla del Piloto de datos y seleccionar el comando Filtrar. Se abre el diálogo Filtro. Puede utilizar dicho diálogo para filtrar la tabla del Piloto de datos." +msgstr "Pulse en el botón Filtro de la hoja para abrir el cuadro de diálogo de condiciones de filtro. Otra posibilidad es abrir el menú contextual de la tabla dinámica y seleccionar la orden Filtrar. Se abrirá el cuadro de diálogo Filtro. Puede utilizar dicho cuadro para filtrar la tabla dinámica." #: datapilot_filtertable.xhp msgctxt "" @@ -4582,7 +4582,7 @@ "par_idN1066E\n" "help.text" msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two Grouping dialogs, either for numeric values, or for date values." -msgstr "En función del formato de las celdas seleccionadas, se agrega un nuevo campo de grupo a la tabla del Piloto de datos, o se muestra uno de los dos diálogos Agrupación, para valores numéricos o para valores de datos." +msgstr "En función del formato de las celdas seleccionadas, se añade un campo de grupo nuevo a la tabla dinámica, o se muestra uno de los dos cuadros de diálogo Agrupación, bien para valores numéricos o para valores de datos." #: datapilot_grouping.xhp msgctxt "" @@ -4641,7 +4641,7 @@ "21\n" "help.text" msgid "You can select a named range in which the pivot table is to be created, from the Results to box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the Results to box. You can also click on the appropriate cell to have the coordinates entered accordingly." -msgstr "En el listado Resultado en es posible seleccionar un área ya dotada de nombre en la cual colocar la hoja de cálculo del Piloto de datos. Si esta área carece de nombre, escriba las coordenadas de la celda superior izquierda del área en el campo que se muestra a la derecha del listado Resultado en. También puede pulsar en la celda para insertar directamente las coordenadas." +msgstr "En el listado Resultado en es posible seleccionar un intervalo ya dotado de nombre en el cual colocar la tabla dinámica. Si este intervalo carece de nombre, escriba las coordenadas de la celda superior izquierda del intervalo en el campo que se muestra a la derecha del listado Resultado en. También puede pulsar en la celda para insertar directamente las coordenadas." #: datapilot_tipps.xhp msgctxt "" @@ -4650,7 +4650,7 @@ "23\n" "help.text" msgid "If you mark the Ignore empty rows check box, they will not be taken into account when the pivot table is created." -msgstr "Si selecciona la casilla de verificación Ignorar las filas vacías, éstas no se tendrán en cuenta para la creación de la tabla de Piloto de datos." +msgstr "Si activa la casilla Ignorar filas vacías, estas no se tendrán en cuenta para la creación de la tabla dinámica." #: datapilot_tipps.xhp msgctxt "" @@ -4659,7 +4659,7 @@ "24\n" "help.text" msgid "If the Identify categories check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created." -msgstr "Si selecciona la casilla Identificar las categorías, éstas quedarán identificadas mediante sus encabezados y asignadas según corresponda al crear la tabla de Piloto de datos." +msgstr "Si selecciona la casilla Identificar categorías, estas quedarán identificadas mediante sus títulos y asignadas según corresponda al crear la tabla dinámica." #: datapilot_updatetable.xhp msgctxt "" @@ -7868,7 +7868,7 @@ "5\n" "help.text" msgid "Applying Multiple Operations" -msgstr "Aplicar una operación múltiple" +msgstr "Aplicar operaciones múltiples" #: multioperation.xhp msgctxt "" @@ -8444,7 +8444,7 @@ "par_id0908200901265127\n" "help.text" msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error." -msgstr "Calc convierte el texto en las celdas a los valores numéricos respectivos si es posible una conversión sin ambigüedades. Si no es posible realizar ninguna conversión, Calc muestra un error #VALOR!" +msgstr "Calc convierte el texto en las celdas a los valores numéricos respectivos si es posible una conversión sin ambigüedades. Si no es posible realizar ninguna conversión, Calc muestra un error #¡VALOR!" #: numbers_text.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-03-26 00:45+0000\n" +"PO-Revision-Date: 2017-04-30 12:05+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490489107.000000\n" +"X-POOTLE-MTIME: 1493553926.000000\n" #: 00000001.xhp msgctxt "" @@ -897,7 +897,7 @@ "bm_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "Mapa de imágenes desde el cliente" +msgstr "Mapa de imagen del lado cliente" #: 00000002.xhp msgctxt "" @@ -3394,7 +3394,7 @@ "236\n" "help.text" msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import." -msgstr "$[officename] importa y exporta referencias a secciones eliminadas, por ejemplo una columna a la que se hacía referencia. Se puede ver la fórmula completa durante el proceso de exportación; la referencia eliminada lleva una indicación (#REF!) sobre la referencia. Durante el proceso de exportación, se crea una marca de identificación #REF! para la referencia." +msgstr "$[officename] importa y exporta referencias a secciones eliminadas, por ejemplo una columna a la que se hacía referencia. Se puede ver la fórmula completa durante el proceso de exportación; la referencia eliminada lleva una indicación (#¡REF!) sobre la referencia. Durante el proceso de exportación, se crea una marca de identificación #¡REF! para la referencia." #: 00000020.xhp msgctxt "" @@ -13055,7 +13055,7 @@ "8\n" "help.text" msgid "Open context menu of a row header in a database table - choose Table Format" -msgstr "Menú contextual de un encabezamiento de columna de una tabla de base de datos abierta - Formateado de tabla..." +msgstr "Abra el menú contextual de la cabecera de una fila de una tabla de base de datos y seleccione Formato de tabla" #: 00040503.xhp msgctxt "" @@ -13064,7 +13064,7 @@ "33\n" "help.text" msgid "Open context menu of a column header in a database table - choose Column Format" -msgstr "Menú contextual de un encabezamiento de columna de una tabla de base de datos abierta - Formateado de columnas..." +msgstr "Abra el menú contextual de la cabecera de una columna de una tabla de base de datos y seleccione Formato de columna" #: 00040503.xhp msgctxt "" @@ -13073,7 +13073,7 @@ "34\n" "help.text" msgid "Context menu for a row header in an open database table - Delete Rows" -msgstr "Menú contextual de un encabezamiento de fila de una tabla de base de datos abierta - Borrar filas" +msgstr "Abra el menú contextual de la cabecera de una fila de una tabla de base de datos abierta y seleccione Eliminar filas" #: 00040503.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-06 01:45+0000\n" +"PO-Revision-Date: 2017-04-28 19:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491443128.000000\n" +"X-POOTLE-MTIME: 1493407105.000000\n" #: 01010000.xhp msgctxt "" @@ -6692,7 +6692,7 @@ "3\n" "help.text" msgid " To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet. " -msgstr " Para seleccionar todas las celdas de una hoja pulse en la intersección de los encabezamientos de fila y columna, en la esquina superior izquierda de la hoja. " +msgstr "Para seleccionar todas las celdas de una hoja, pulse en la intersección de las cabeceras de las filas y las columnas, en la esquina superior izquierda de la hoja." #: 02090000.xhp msgctxt "" @@ -7834,7 +7834,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 "Para algunas fuentes de símbolos el código de caracteres especiales puede depender de la fuente utilizada. Usted puede ver los códigos seleccionando Insertar - Carácter especial." +msgstr "En algunos tipos de letra de símbolos, los códigos de algunos caracteres pueden ser distintos. Para ver los códigos, vaya a Insertar ▸ Carácter especial." #: 02100001.xhp msgctxt "" @@ -7990,7 +7990,7 @@ "216\n" "help.text" msgid "[:digit:]" -msgstr "[:dígito:]" +msgstr "[:digit:]" #: 02100001.xhp msgctxt "" @@ -7999,7 +7999,7 @@ "217\n" "help.text" msgid "Represents a decimal digit. Use [:digit:]+ to find one of them." -msgstr "Representa un dígito decimal. Use [:dígito:]+ para encontrar uno de estos." +msgstr "Representa un dígito decimal. Utilice [:digit:]+ para encontrar uno de ellos." #: 02100001.xhp msgctxt "" @@ -8089,7 +8089,7 @@ "229\n" "help.text" msgid "Represents a lowercase character if Match case is selected in Options." -msgstr "Representa un carácter en minúscula si en Opciones se ha seleccionado Coincidir mayúsculas y minúsculas." +msgstr "Representa un carácter en minúscula si en Opciones se ha seleccionado Distinguir mayúsculas y minúsculas." #: 02100001.xhp msgctxt "" @@ -8107,7 +8107,7 @@ "231\n" "help.text" msgid "Represents an uppercase character if Match case is selected in Options." -msgstr "Representa un carácter en mayúscula si en Opciones se ha seleccionado Hacer coincidir mayúsculas y minúsculas." +msgstr "Representa un carácter en mayúscula si en Opciones se ha seleccionado Distinguir mayúsculas y minúsculas." #: 02100001.xhp msgctxt "" @@ -8123,7 +8123,7 @@ "par_id956834773\n" "help.text" msgid "e([:digit:])? -- finds 'e' followed by zero or one digit. Note that currently all named character classes like [:digit:] must be enclosed in parentheses." -msgstr "e([:dígito:])? -- busca 'e' seguido de cero o un dígito. Note que todas las clases de caracteres con nombre [:dígito:] deben ir entre paréntesis." +msgstr "e([:digit:])?: encuentra «e» seguido de cero o un dígito. Observe que todas las clases de caracteres con nombre, tales como [:digit:], deben ir entre paréntesis." #: 02100001.xhp msgctxt "" @@ -8131,7 +8131,7 @@ "par_id952368773\n" "help.text" msgid "^([:digit:])$ -- finds lines or cells with exactly one digit." -msgstr "^([:dígito:])$ -- encuentra líneas o celdas con exactamente un dígito." +msgstr "^([:digit:])$: encuentra líneas o celdas que contienen exactamente un dígito." #: 02100001.xhp msgctxt "" @@ -8155,7 +8155,7 @@ "par_id2924283\n" "help.text" msgid "^[:digit:]{3}$" -msgstr "^[:dígito:]{3}$" +msgstr "^[:digit:]{3}$" #: 02100001.xhp msgctxt "" @@ -8171,7 +8171,7 @@ "par_id6942045\n" "help.text" msgid "[:digit:] matches any decimal digit," -msgstr "[:dígito:] compara cualquier número decimal," +msgstr "[:digit:] se corresponde con cualquier cifra decimal," #: 02100001.xhp msgctxt "" @@ -17033,7 +17033,7 @@ "par_id3156169\n" "help.text" msgid "Number" -msgstr "Número" +msgstr "Número" #: 05020301.xhp msgctxt "" @@ -17129,7 +17129,7 @@ "par_id3154951\n" "help.text" msgid "Number" -msgstr "Número" +msgstr "Número" #: 05020301.xhp msgctxt "" @@ -33807,7 +33807,7 @@ "5\n" "help.text" msgid "Correct TWo INitial CApitals" -msgstr "Corregir DOs MAyúsculas SEguidas" +msgstr "Corregir DOs MAyúsculas INiciales" #: 06040100.xhp msgctxt "" @@ -34743,7 +34743,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 "Especifique las opciones de autocorrección para las comillas así como para otras opciones que son específicas del idioma del texto." +msgstr "Especifique las opciones de corrección automática para las comillas y otras opciones que son específicas del idioma del texto." #: 06040400.xhp msgctxt "" @@ -39852,7 +39852,7 @@ "tit\n" "help.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: 06200000.xhp msgctxt "" @@ -39869,7 +39869,7 @@ "1\n" "help.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: 06200000.xhp msgctxt "" @@ -40464,7 +40464,7 @@ "par_idN10546\n" "help.text" msgid "Add and delete entries that are used for the Hangul/Hanja Conversion." -msgstr "Le permite añadir y eliminar entradas utilizadas para la conversión hangul / hanja." +msgstr "Le permite añadir y eliminar entradas utilizadas para la conversión hangul/hanja." #: 06202000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/autopi.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-21 07:14+0000\n" +"PO-Revision-Date: 2017-05-01 15:16+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490080469.000000\n" +"X-POOTLE-MTIME: 1493651775.000000\n" #: 01000000.xhp msgctxt "" @@ -1904,7 +1904,7 @@ "par_idN105E2\n" "help.text" msgid "Prints out a page on which you can write down the minutes during the meeting." -msgstr "Imprime una página en la que puede escribir los minutos durante la reunión." +msgstr "Imprime una página en la que puede escribir las minutas durante la reunión." #: 01040100.xhp msgctxt "" @@ -2044,7 +2044,7 @@ "2\n" "help.text" msgid "Specifies the headings that you want to include in the agenda." -msgstr "Indica los encabezados que quiere incluir en el orden del día." +msgstr "Indica los títulos que quiere incluir en el orden del día." #: 01040300.xhp msgctxt "" @@ -2247,7 +2247,7 @@ "par_idN10604\n" "help.text" msgid "Facility personnel" -msgstr "Personal de la facilidad" +msgstr "Personal de las instalaciones" #: 01040400.xhp msgctxt "" @@ -2255,7 +2255,7 @@ "par_idN10608\n" "help.text" msgid "Specifies whether to print a line where you can enter the facility personnel." -msgstr "Especifica si se imprimirá una línea en la que puede indicar los personal de la facilidad." +msgstr "Especifica si se imprimirá una línea donde indicar el personal de las instalaciones." #: 01040400.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-04-03 04:34+0000\n" +"PO-Revision-Date: 2017-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491194086.000000\n" +"X-POOTLE-MTIME: 1493311074.000000\n" #: aaa_start.xhp msgctxt "" @@ -682,7 +682,7 @@ "8\n" "help.text" msgid "Undo URL Recognition" -msgstr "Deshacer Reconocimiento de URL" +msgstr "Deshacer reconocimiento de URL" #: autocorr_url.xhp msgctxt "" @@ -709,7 +709,7 @@ "9\n" "help.text" msgid "Turn off URL Recognition" -msgstr "Desactivar Reconocimiento de URL" +msgstr "Desactivar reconocimiento de URL" #: autocorr_url.xhp msgctxt "" @@ -5783,7 +5783,7 @@ "9\n" "help.text" msgid "View data source contents" -msgstr "Ver contenidos de fuente de datos" +msgstr "Ver el contenido de un origen de datos" #: database_main.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-04-18 03:56+0000\n" +"PO-Revision-Date: 2017-05-01 19:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492487760.000000\n" +"X-POOTLE-MTIME: 1493668160.000000\n" #: 01000000.xhp msgctxt "" @@ -2454,7 +2454,7 @@ "hd_id3154754\n" "help.text" msgid "Pick" -msgstr "" +msgstr "Elegir" #: 01010501.xhp msgctxt "" @@ -3529,7 +3529,7 @@ "hd_id3146982\n" "help.text" msgid "Middle mouse button" -msgstr "Botón central del ratón" +msgstr "Botón central del ratón" #: 01010800.xhp msgctxt "" @@ -13691,7 +13691,7 @@ "5\n" "help.text" msgid "Western characters only" -msgstr "Solo caracteres occidentales" +msgstr "Solo texto occidental" #: 01150100.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/simpress/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-25 23:28+0000\n" +"PO-Revision-Date: 2017-04-28 20:46+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490484497.000000\n" +"X-POOTLE-MTIME: 1493412372.000000\n" #: 01170000.xhp msgctxt "" @@ -5373,7 +5373,7 @@ "par_idN1074D\n" "help.text" msgid "Automatic preview" -msgstr "Vista previa automática" +msgstr "Previsualización automática" #: 06040000.xhp msgctxt "" @@ -6183,7 +6183,7 @@ "par_idN1083C\n" "help.text" msgid "Automatic preview" -msgstr "Vista previa automática" +msgstr "Previsualización automática" #: 06060000.xhp msgctxt "" @@ -8288,7 +8288,7 @@ "par_idN10594\n" "help.text" msgid "Automatic preview" -msgstr "Vista previa automática" +msgstr "Previsualización automática" #: animationeffect.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/smath/guide.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/smath/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/smath/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-11 02:18+0000\n" +"PO-Revision-Date: 2017-04-19 20:55+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484101093.000000\n" +"X-POOTLE-MTIME: 1492635323.000000\n" #: align.xhp msgctxt "" @@ -751,7 +751,7 @@ "2\n" "help.text" msgid "In %PRODUCTNAME Math, can brackets be shown separately so that the distance between them is freely definable?" -msgstr "En %PRODUCTNAME Math, ¿pueden los corchetes ser mostrados por separado para que la distancia entre ellos sea definible libremente?" +msgstr "En %PRODUCTNAME Math, ¿es posible mostrar los corchetes por separado para que la distancia entre ellos pueda definirse libremente?" #: parentheses.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/swriter/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-18 03:34+0000\n" +"PO-Revision-Date: 2017-04-30 12:06+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492486458.000000\n" +"X-POOTLE-MTIME: 1493553984.000000\n" #: 01120000.xhp msgctxt "" @@ -4889,7 +4889,7 @@ "4\n" "help.text" msgid "When you add chapter numbers to caption labels, the caption numbering is reset when a chapter heading is encountered. For example, if the last figure in chapter 1 is \"Figure 1.12\", the first figure in the next chapter would be \"Figure 2.1\"." -msgstr "Cuando añada números de capítulos a las leyendas, la numeración de estas se restablecerá cuando se encuentre el encabezamiento de un capítulo. Por ejemplo, si la última figura del capítulo 1 es «Figura 1.12», la primera figura del siguiente capítulo será «Figura 2.1»." +msgstr "Cuando añada números de capítulos a las leyendas, la numeración de estas se restablecerá cuando se encuentre el título de un capítulo. Por ejemplo, si la última figura del capítulo 1 es «Figura 1.12», la primera figura del siguiente capítulo será «Figura 2.1»." #: 04060100.xhp msgctxt "" @@ -13109,7 +13109,7 @@ "par_id3149292\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type." -msgstr "" +msgstr "Vaya a Insertar ▸ Sumario e índice ▸ Sumario, índice o bibliografía ▸ Tipo." #: 04120250.xhp msgctxt "" @@ -13922,7 +13922,7 @@ "par_id3155912\n" "help.text" msgid "Table - Properties - Text Flow" -msgstr "" +msgstr "Tabla ▸ Propiedades ▸ Flujo del texto" #: 04150000.xhp msgctxt "" @@ -15008,7 +15008,7 @@ "hd_id3151173\n" "help.text" msgid "Outline & Numbering" -msgstr "" +msgstr "Esquema y numeración" #: 05030800.xhp msgctxt "" @@ -15096,7 +15096,7 @@ "par_id3149106\n" "help.text" msgid "This section only appears when you edit the properties of the current paragraph by choosing Format - Paragraph." -msgstr "" +msgstr "Esta sección aparece únicamente al editar las propiedades del párrafo actual mediante Formato ▸ Párrafo." #: 05030800.xhp msgctxt "" @@ -15104,7 +15104,7 @@ "hd_id3151250\n" "help.text" msgid "Restart at this paragraph" -msgstr "" +msgstr "Reiniciar en este párrafo" #: 05030800.xhp msgctxt "" @@ -15112,7 +15112,7 @@ "par_id3154831\n" "help.text" msgid "Restarts the numbering at the current paragraph." -msgstr "" +msgstr "Reinicia la numeración a partir del párrafo actual." #: 05030800.xhp msgctxt "" @@ -15812,7 +15812,7 @@ "hd_id3151255\n" "help.text" msgid "Color" -msgstr "" +msgstr "Color" #: 05040600.xhp msgctxt "" @@ -15820,7 +15820,7 @@ "par_id3149107\n" "help.text" msgid "Select the color of the separator line." -msgstr "" +msgstr "Seleccione el color de la línea de separación." #: 05040600.xhp msgctxt "" @@ -15828,7 +15828,7 @@ "hd_id3143284\n" "help.text" msgid "Length" -msgstr "" +msgstr "Longitud" #: 05040600.xhp msgctxt "" @@ -15836,7 +15836,7 @@ "par_id3154827\n" "help.text" msgid "Enter the length of the separator line as a percentage of the page width area." -msgstr "" +msgstr "Especifique la longitud de la línea de separación como un porcentaje de la anchura de la página." #: 05040600.xhp msgctxt "" @@ -18933,7 +18933,7 @@ "13\n" "help.text" msgid "Server-side image map" -msgstr "Image map del sitio del servidor" +msgstr "Mapa de imagen del lado servidor" #: 05060800.xhp msgctxt "" @@ -25176,7 +25176,7 @@ "par_idN10895\n" "help.text" msgid "For Asian languages, select Match case to apply multi-level collation. In the multi-level collation, the primitive forms of the entries are first compared with the cases of the forms and diacritics ignored. If the forms are the same, the diacritics of the forms are compared. If the forms are still the same, the cases, character widths, and Japanese Kana differences of the forms are compared." -msgstr "Para idiomas Asiáticas, seleccione Coincidir mayúsculas y minúsculas para aplicar colación de multi-nivel.En la intercalación de multi-niveles, primero comparar las formas primitivas de las entradas con la forma ignorando el mayu/minus y los diacríticas. Si las formas son igual, los diacríticas están comparada. Si las formas todavía están igual, el mayu/minus, anchos de caracteres, y las diferencias de Kana Japones están comparados." +msgstr "En el caso de los idiomas asiáticos, seleccione Distinguir mayúsculas y minúsculas para aplicar un cotejo multinivel. En el cotejo multinivel, primero se comparan las formas primitivas de las entradas haciendo caso omiso del uso de mayúsculas y de los diacríticos. Si las formas son iguales, se comparan los diacríticos de las formas. Si las formas siguen siendo iguales, se comparan las diferencias en el uso de mayúsculas, la anchura de los caracteres y las diferencias en el kana japonés." #: 06110000.xhp msgctxt "" @@ -28644,7 +28644,7 @@ "par_id300920161448355764\n" "help.text" msgid "Note: By default, %PRODUCTNAME select the First page page style." -msgstr "" +msgstr "Nota: de manera predeterminada, %PRODUCTNAME selecciona el estilo Primera página." #: title_page.xhp msgctxt "" @@ -28796,7 +28796,7 @@ "par_id300920161443337801\n" "help.text" msgid "Double click on the page style to apply." -msgstr "" +msgstr "Pulse dos veces en el estilo de página que quiera aplicar." #: title_page.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.3.3~rc1/translations/source/es/helpcontent2/source/text/swriter/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-04-18 03:57+0000\n" +"PO-Revision-Date: 2017-04-21 07:10+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492487858.000000\n" +"X-POOTLE-MTIME: 1492758604.000000\n" #: anchor_object.xhp msgctxt "" @@ -579,7 +579,7 @@ "10\n" "help.text" msgid "Choose Tools – AutoCorrect Options." -msgstr "Elija Herramientas – Opciones de autocorrección." +msgstr "Vaya a Herramientas ▸ Corrección automática ▸ Opciones de corrección automática." #: auto_off.xhp msgctxt "" @@ -711,7 +711,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 "Si selecciona una palabra desde el submenú Autocorrección, la palabra subrayada y la palabra substituta se agregan automáticamente a la lista de Autocorrección del idioma actual. Para ver la lista de Autocorrección, seleccione Herramientas – Opciones de Autocorrección y, a continuación, haga clic en la ficha Reemplazar." +msgstr "Si selecciona una palabra desde el submenú Corrección automática, la palabra subrayada y la palabra substituta se añaden automáticamente a la lista de Corrección automática del idioma actual. Para ver la lista de Corrección automática, seleccione Herramientas ▸ Opciones de corrección automática y, a continuación, pulse en la pestaña Reemplazar." #: auto_spellcheck.xhp msgctxt "" @@ -2969,7 +2969,7 @@ "par_id3150532\n" "help.text" msgid "Click the New Style from Selection icon and select New Styles from Selection from the submenu." -msgstr "Pulse el símbolo Nuevo estilo a partir de selección y seleccione en el submenú Nuevos estilos a partir de selección." +msgstr "Pulse en el icono Estilo nuevo a partir de selección y seleccione en el submenú Estilos nuevos a partir de selección." #: change_header.xhp msgctxt "" @@ -6416,13 +6416,12 @@ msgstr "Dar formato a encabezados o pies de página" #: header_with_line.xhp -#, fuzzy msgctxt "" "header_with_line.xhp\n" "bm_id3154866\n" "help.text" msgid "inserting;lines under headers/above footers lines; under headers/above footers headers;formatting footers;formatting shadows;headers/footers borders;for headers/footers" -msgstr "insertar;líneas debajo de encabezamientos/encima de pies de página líneas; debajo de encabezamientos/encima de pies de página encabezamientos;dar formato pies de página;dar formato sombras;encabezamientos/pies de página bordes;para encabezamientos/pies de página" +msgstr "insertar;líneas debajo de cabeceras/encima de pies de página líneas; debajo de cabeceras/encima de pies de página cabeceras;dar formato pies de página;dar formato sombras;cabeceras/pies de página bordes;para cabeceras/pies de página" #: header_with_line.xhp msgctxt "" @@ -9049,7 +9048,7 @@ "par_idN10703\n" "help.text" msgid "Click the arrow next to the New Style from Selection icon to open the submenu." -msgstr "Haga clic en la flecha que hay junto al icono Nuevo estilo a partir de selección para abrir el submenú." +msgstr "Pulse en la flecha que se encuentra junto al icono Estilo nuevo a partir de selección para abrir el submenú." #: load_styles.xhp msgctxt "" @@ -13985,7 +13984,7 @@ "43\n" "help.text" msgid "Click the arrow next to the New Style from Selection icon and choose Update Style from the submenu." -msgstr "Haga clic en la flecha que se encuentra junto al icono Nuevo estilo a partir de selección y elija Actualizar estiloen el submenú" +msgstr "Pulse en la flecha que se encuentra junto al icono Estilo nuevo a partir de selección y elija Actualizar estilo en el submenú." #: stylist_update.xhp msgctxt "" @@ -17445,7 +17444,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 "Para ajustar con precisión el completado de palabras, elija Herramientas – Opciones de autocorrección - Completado de palabras y seleccione cualquiera de las siguientes opciones:" +msgstr "Para optimizar la compleción de palabras, vaya a Herramientas ▸ Opciones de corrección automática ▸ Compleción de palabras y seleccione cualquiera de las opciones siguientes:" #: word_completion_adjust.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-03-06 16:13+0000\n" +"PO-Revision-Date: 2017-04-28 19:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488816816.000000\n" +"X-POOTLE-MTIME: 1493407110.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -6809,7 +6809,7 @@ "TooltipLabel\n" "value.text" msgid "Show Glue Points Functions" -msgstr "" +msgstr "Mostrar funciones de puntos de adhesión" #: DrawImpressCommands.xcu msgctxt "" @@ -17899,7 +17899,7 @@ "Label\n" "value.text" msgid "Hangul/Hanja Conversion..." -msgstr "Conversión hangul / hanja…" +msgstr "Conversión hangul/hanja…" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/es/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/es/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-04-15 12:24+0000\n" +"PO-Revision-Date: 2017-04-28 19:29+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492259066.000000\n" +"X-POOTLE-MTIME: 1493407780.000000\n" #: filter.src msgctxt "" @@ -1121,7 +1121,7 @@ "STR_NO_REF_TABLE\n" "string.text" msgid "#REF!" -msgstr "#REF!" +msgstr "#¡REF!" #: globstr.src msgctxt "" @@ -1820,7 +1820,7 @@ "STR_NO_ADDIN\n" "string.text" msgid "#ADDIN?" -msgstr "#ADDIN?" +msgstr "#¿COMPL?" #: globstr.src msgctxt "" @@ -1829,7 +1829,7 @@ "STR_LONG_ERR_NO_ADDIN\n" "string.text" msgid "Error: Add-in not found" -msgstr "Error: no se ha encontrado Add-in" +msgstr "Error: no se ha encontrado el complemento" #: globstr.src msgctxt "" @@ -1838,7 +1838,7 @@ "STR_NO_MACRO\n" "string.text" msgid "#MACRO?" -msgstr "#MACRO?" +msgstr "#¿MACRO?" #: globstr.src msgctxt "" @@ -2036,7 +2036,7 @@ "STR_UNDO_TABOP\n" "string.text" msgid "Multiple operations" -msgstr "Operación múltiple" +msgstr "Operaciones múltiples" #: globstr.src msgctxt "" @@ -3462,7 +3462,7 @@ "STR_UNDO_HANGULHANJA\n" "string.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: globstr.src msgctxt "" @@ -4032,7 +4032,7 @@ "STR_HEADER_RANGE\n" "string.text" msgid "Range" -msgstr "Área" +msgstr "Intervalo" #: globstr.src msgctxt "" @@ -5210,7 +5210,7 @@ "7\n" "string.text" msgid "Defines the cell range containing the search criteria." -msgstr "Define el área de celdas que contiene los valores buscados." +msgstr "Define el intervalo de celdas que contiene los valores buscados." #: scfuncs.src msgctxt "" @@ -5219,7 +5219,7 @@ "1\n" "string.text" msgid "Counts all non-blank cells of a data range where the content corresponds to the search criteria." -msgstr "Cuenta las celdas en un área de datos que no están en blanco cuyos contenidos coinciden con los criterios de búsqueda." +msgstr "Cuenta las celdas no vacías de un intervalo de datos cuyos contenidos coinciden con los criterios de búsqueda." #: scfuncs.src msgctxt "" @@ -5273,7 +5273,7 @@ "7\n" "string.text" msgid "Defines the cell range containing the search criteria." -msgstr "Define el área de celdas que contiene los valores buscados." +msgstr "Define el intervalo de celdas que contiene los valores buscados." #: scfuncs.src msgctxt "" @@ -5903,7 +5903,7 @@ "7\n" "string.text" msgid "Defines the cell range containing the search criteria." -msgstr "Define el área de celdas que contiene los valores buscados." +msgstr "Define el intervalo de celdas que contiene los valores buscados." #: scfuncs.src msgctxt "" @@ -6722,7 +6722,7 @@ "7\n" "string.text" msgid "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"." -msgstr "Intervalo a calcular. Puede ser «d», «m», «a», «am», «md» o «ad»." +msgstr "Intervalo que calcular. Puede ser «d», «m», «a», «am», «md» o «ad»." #: scfuncs.src msgctxt "" @@ -7032,7 +7032,7 @@ "7\n" "string.text" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Pagos regulares. La anualidad constante a ser pagadada cada periodo." +msgstr "Pagos regulares. La anualidad constante que debe pagarse cada período." #: scfuncs.src msgctxt "" @@ -7113,7 +7113,7 @@ "5\n" "string.text" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Pagos regulares. La anualidad constante a ser pagadada cada periodo." +msgstr "Pagos regulares. La anualidad constante que debe pagarse cada período." #: scfuncs.src msgctxt "" @@ -7311,7 +7311,7 @@ "5\n" "string.text" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Pagos regulares. La anualidad constante a ser pagadada cada periodo." +msgstr "Pagos regulares. La anualidad constante que debe pagarse cada período." #: scfuncs.src msgctxt "" @@ -12827,7 +12827,7 @@ "1\n" "string.text" msgid "Calculates the variance based on a sample." -msgstr "Calcula la varianza sobre una muestra." +msgstr "Calcula la varianza a partir de una muestra." #: scfuncs.src msgctxt "" @@ -12854,7 +12854,7 @@ "1\n" "string.text" msgid "Calculates the variance based on a sample." -msgstr "Calcula la varianza sobre una muestra." +msgstr "Calcula la varianza a partir de una muestra." #: scfuncs.src msgctxt "" @@ -13475,7 +13475,7 @@ "1\n" "string.text" msgid "Returns the median of a given sample." -msgstr "Devuelve la mediana de los números." +msgstr "Devuelve la mediana de una muestra dada." #: scfuncs.src msgctxt "" @@ -23450,7 +23450,7 @@ "3\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23468,7 +23468,7 @@ "5\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23495,7 +23495,7 @@ "3\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23513,7 +23513,7 @@ "5\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23540,7 +23540,7 @@ "3\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23558,7 +23558,7 @@ "5\n" "string.text" msgid "Positive integer less than 2^48." -msgstr "Entero positivo menor de 2^48." +msgstr "Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23585,7 +23585,7 @@ "3\n" "string.text" msgid "The value to be shifted. Positive integer less than 2^48." -msgstr "El valor que se desplazará. Entero positivo menor que 2^48." +msgstr "El valor que se desplazará. Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" @@ -23630,7 +23630,7 @@ "3\n" "string.text" msgid "The value to be shifted. Positive integer less than 2^48." -msgstr "El valor que se desplazará. Entero positivo menor que 2^48." +msgstr "El valor que se desplazará. Entero positivo menor que 2⁴⁸." #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sc/source/ui/StatisticsDialogs.po libreoffice-5.3.3~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po --- libreoffice-5.3.3~rc1/translations/source/es/sc/source/ui/StatisticsDialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2017-04-13 21:03+0000\n" +"PO-Revision-Date: 2017-04-24 05:30+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492117402.000000\n" +"X-POOTLE-MTIME: 1493011854.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -671,7 +671,7 @@ "STR_OBSERVED_MEAN_DIFFERENCE_LABEL\n" "string.text" msgid "Observed Mean Difference" -msgstr "Diferencia media observada" +msgstr "Diferencia de media observada" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sc/uiconfig/scalc/ui.po libreoffice-5.3.3~rc2/translations/source/es/sc/uiconfig/scalc/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/sc/uiconfig/scalc/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-04-14 07:19+0000\n" +"PO-Revision-Date: 2017-04-25 12:50+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492154366.000000\n" +"X-POOTLE-MTIME: 1493124631.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -4178,7 +4178,7 @@ "0\n" "stringlist.text" msgid "Generate #VALUE! error" -msgstr "Generar error de tipo #VALOR!" +msgstr "Generar error #¡VALOR!" #: formulacalculationoptions.ui msgctxt "" @@ -13034,7 +13034,7 @@ "tooltip_text\n" "string.text" msgid "Browse to set source file." -msgstr "" +msgstr "Examinar para definir el archivo de origen." #: xmlsourcedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/scaddins/source/analysis.po libreoffice-5.3.3~rc2/translations/source/es/scaddins/source/analysis.po --- libreoffice-5.3.3~rc1/translations/source/es/scaddins/source/analysis.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2017-01-12 11:26+0000\n" +"PO-Revision-Date: 2017-04-28 19:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484220399.000000\n" +"X-POOTLE-MTIME: 1493408274.000000\n" #: analysis.src msgctxt "" @@ -3126,7 +3126,7 @@ "7\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4242,7 +4242,7 @@ "9\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4359,7 +4359,7 @@ "7\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4494,7 +4494,7 @@ "11\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -4710,7 +4710,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd first period" -msgstr "Devuelve el precio de ¤ 100 de valor nominal de un título con un período inicial irregular" +msgstr "Devuelve el precio de 100 ¤ de valor nominal de un título con un período inicial irregular" #: analysis.src msgctxt "" @@ -4989,7 +4989,7 @@ "13\n" "string.text" msgid "The price" -msgstr "El Precio" +msgstr "El precio" #: analysis.src msgctxt "" @@ -5052,7 +5052,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd last period" -msgstr "Devuelve el precio de ¤ 100 de valor nominal de un título con un período final irregular" +msgstr "Devuelve el precio de 100 ¤ de valor nominal de un título con un período final irregular" #: analysis.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/scp2/source/ooo.po libreoffice-5.3.3~rc2/translations/source/es/scp2/source/ooo.po --- libreoffice-5.3.3~rc1/translations/source/es/scp2/source/ooo.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/scp2/source/ooo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-15 21:07+0000\n" +"PO-Revision-Date: 2017-04-18 12:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484514441.000000\n" +"X-POOTLE-MTIME: 1492517622.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -1694,7 +1694,7 @@ "STR_NAME_MODULE_HELPPACK_ML\n" "LngText.text" msgid "Malayalam" -msgstr "Malayalam" +msgstr "Malabar" #: module_helppack.ulf msgctxt "" @@ -1702,7 +1702,7 @@ "STR_DESC_MODULE_HELPPACK_ML\n" "LngText.text" msgid "Installs Malayalam help in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instala la ayuda en malayalam para %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instala la ayuda en malabar para %PRODUCTNAME %PRODUCTVERSION" #: module_helppack.ulf msgctxt "" @@ -3486,7 +3486,7 @@ "STR_NAME_MODULE_LANGPACK_ML\n" "LngText.text" msgid "Malayalam" -msgstr "Malayalam" +msgstr "Malabar" #: module_langpack.ulf msgctxt "" @@ -3494,7 +3494,7 @@ "STR_DESC_MODULE_LANGPACK_ML\n" "LngText.text" msgid "Installs the Malayalam user interface" -msgstr "Instala la interfaz de usuario en malayalam" +msgstr "Instala la interfaz de usuario en malabar" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sd/source/ui/app.po libreoffice-5.3.3~rc2/translations/source/es/sd/source/ui/app.po --- libreoffice-5.3.3~rc1/translations/source/es/sd/source/ui/app.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sd/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-21 16:47+0000\n" +"PO-Revision-Date: 2017-04-28 20:46+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487695621.000000\n" +"X-POOTLE-MTIME: 1493412418.000000\n" #: popup.src msgctxt "" @@ -2306,7 +2306,7 @@ "STR_UNDO_HANGULHANJACONVERSION\n" "string.text" msgid "Hangul/Hanja Conversion" -msgstr "Conversión hangul / hanja" +msgstr "Conversión hangul/hanja" #: strings.src msgctxt "" @@ -2394,7 +2394,7 @@ "STR_TASKPANEL_NOT_AVAILABLE_SUBSTITUTION\n" "string.text" msgid "Preview not available" -msgstr "Vista previa no disponible" +msgstr "Previsualización no disponible" #: strings.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sd/source/ui/view.po libreoffice-5.3.3~rc2/translations/source/es/sd/source/ui/view.po --- libreoffice-5.3.3~rc1/translations/source/es/sd/source/ui/view.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sd/source/ui/view.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2016-07-03 07:08+0000\n" +"PO-Revision-Date: 2017-04-28 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1467529703.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493411535.000000\n" #: DocumentRenderer.src msgctxt "" @@ -302,7 +302,7 @@ "Fit to printable page\n" "itemlist.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: DocumentRenderer.src msgctxt "" @@ -338,7 +338,7 @@ "Fit to printable page\n" "itemlist.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sd/uiconfig/sdraw/ui.po libreoffice-5.3.3~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/sd/uiconfig/sdraw/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sd/uiconfig/sdraw/ui.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-28 03:43+0000\n" +"PO-Revision-Date: 2017-04-28 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480304633.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493411541.000000\n" #: breakdialog.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: printeroptions.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sd/uiconfig/simpress/ui.po libreoffice-5.3.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/sd/uiconfig/simpress/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-28 19:53+0000\n" +"PO-Revision-Date: 2017-04-28 20:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488311582.000000\n" +"X-POOTLE-MTIME: 1493411544.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -2869,7 +2869,7 @@ "label\n" "string.text" msgid "Fit to printable page" -msgstr "Ajustar a la zona de impresión" +msgstr "Ajustar a zona imprimible" #: printeroptions.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/es/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/es/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-11 03:04+0000\n" +"PO-Revision-Date: 2017-04-19 20:48+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484103840.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492634912.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Modo de relleno de formato" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Estilo nuevo a partir de selección" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Actualizar estilo" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sfx2/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/es/sfx2/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/sfx2/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-12 12:09+0000\n" +"PO-Revision-Date: 2017-04-18 13:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484222989.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492520857.000000\n" #: alienwarndialog.ui msgctxt "" @@ -798,6 +798,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" +"%PRODUCTNAME está disponible bajo los términos de la Licencia Pública de Mozilla, versión 2.0. Puede encontrar una copia de la licencia MPL en http://mozilla.org/MPL/2.0/.\n" +"\n" +"Los avisos de derechos de autor y términos de licencia adicionales aplicables a código de terceros están disponibles en el archivo LICENSE.html; pulse en Mostrar la licencia para consultar los detalles exactos en inglés.\n" +"\n" +"Todas las marcas comerciales y registradas mencionadas aquí son propiedad de sus respectivos dueños.\n" +"\n" +"© 2000–2017 de los colaboradores de LibreOffice. Todos los derechos reservados.\n" +"\n" +"Este producto fue creado por %OOOVENDOR. La base original fue OpenOffice.org, cuyos derechos de autor de 2000 a 2011 pertenecen a Oracle y/o sus afiliados. %OOOVENDOR reconoce a todos los miembros de la comunidad; para saber más visite http://www.libreoffice.org/." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svtools/source/dialogs.po libreoffice-5.3.3~rc2/translations/source/es/svtools/source/dialogs.po --- libreoffice-5.3.3~rc1/translations/source/es/svtools/source/dialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-12 18:44+0000\n" +"PO-Revision-Date: 2017-04-25 13:09+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484246672.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493125775.000000\n" #: addresstemplate.src msgctxt "" @@ -46,7 +46,7 @@ "STR_FIELD_FIRSTNAME\n" "string.text" msgid "First name" -msgstr "Nombre" +msgstr "Nombre(s)" #: addresstemplate.src msgctxt "" @@ -54,7 +54,7 @@ "STR_FIELD_LASTNAME\n" "string.text" msgid "Last name" -msgstr "Nombre" +msgstr "Apellido(s)" #: addresstemplate.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "Texto con formato [enriquecido]" #: formats.src msgctxt "" @@ -865,7 +865,7 @@ "ERRCODE_SO_NOCACHE_UPDATED&S_MAX\n" "string.text" msgid "No cache files were updated." -msgstr "No se ha actualizado ningún archivo de la memoria local." +msgstr "No se ha actualizado ningún archivo de la antememoria." #: so3res.src msgctxt "" @@ -874,7 +874,7 @@ "ERRCODE_SO_SOMECACHES_NOTUPDATED&S_MAX\n" "string.text" msgid "Some cache files were not updated." -msgstr "No se han actualizado algunos archivos de la memoria local." +msgstr "No se han actualizado algunos archivos de la antememoria." #: so3res.src msgctxt "" @@ -1090,7 +1090,7 @@ "ERRCODE_SO_CANNOT_DOVERB_NOW & S_MAX\n" "string.text" msgid "The action cannot be executed in the object's current state." -msgstr "El objeto no puede ejecutar la acción en el estado actual" +msgstr "El estado actual del objeto no permite ejecutar esta acción." #: so3res.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/es/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/es/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-02-15 22:56+0000\n" +"PO-Revision-Date: 2017-04-18 13:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1487199376.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492520871.000000\n" #: imagemgr.src msgctxt "" @@ -1473,7 +1473,7 @@ "LANGUAGE_MALAYALAM\n" "pairedlist.text" msgid "Malayalam" -msgstr "Malayalam" +msgstr "Malabar" #: langtab.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "Inglés (Malasia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svx/source/dialog.po libreoffice-5.3.3~rc2/translations/source/es/svx/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/es/svx/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svx/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-16 20:43+0000\n" +"PO-Revision-Date: 2017-04-28 20:47+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489697036.000000\n" +"X-POOTLE-MTIME: 1493412438.000000\n" #: SafeMode.src msgctxt "" @@ -3512,7 +3512,7 @@ "RID_SVXSTR_GALLERY_PREVIEW\n" "string.text" msgid "Preview" -msgstr "Vista previa" +msgstr "Previsualizar" #: sdstring.src msgctxt "" @@ -5240,7 +5240,7 @@ "RID_SUBSETSTR_MALAYALAM\n" "string.text" msgid "Malayalam" -msgstr "Malasio" +msgstr "Malabar" #: ucsubset.src msgctxt "" @@ -5384,7 +5384,7 @@ "RID_SUBSETSTR_MISC_TECHNICAL\n" "string.text" msgid "Miscellaneous Technical" -msgstr "Diversos caracteres técnicos" +msgstr "Caracteres técnicos diversos" #: ucsubset.src msgctxt "" @@ -5447,7 +5447,7 @@ "RID_SUBSETSTR_MISC_DINGBATS\n" "string.text" msgid "Miscellaneous Symbols" -msgstr "Diversos símbolos" +msgstr "Símbolos diversos" #: ucsubset.src msgctxt "" @@ -5510,7 +5510,7 @@ "RID_SUBSETSTR_CJK_MISC\n" "string.text" msgid "CJK Miscellaneous" -msgstr "Diversos caracteres CJK" +msgstr "Caracteres CJK diversos" #: ucsubset.src msgctxt "" @@ -7400,7 +7400,7 @@ "RID_SUBSETSTR_ADLAM\n" "string.text" msgid "Adlam" -msgstr "" +msgstr "ADLaM" #: ucsubset.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svx/source/src.po libreoffice-5.3.3~rc2/translations/source/es/svx/source/src.po --- libreoffice-5.3.3~rc1/translations/source/es/svx/source/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svx/source/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 01:42+0000\n" +"PO-Revision-Date: 2017-04-28 21:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1480642968.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493415387.000000\n" #: errtxt.src msgctxt "" @@ -1094,7 +1094,7 @@ "Execution of macros is disabled for this document.\n" " " msgstr "" -"El documento cifrado contiene flujos inesperados sin cifrar.\n" +"El documento cifrado contiene secuencias sin cifrar inesperadas.\n" "\n" "Esto podría ser el resultado de una manipulación del documento.\n" "\n" @@ -1144,7 +1144,7 @@ "ERRCODE_IO_BADCRC\n" "string.text" msgid "Wrong check amount." -msgstr "Suma errónea de revisión." +msgstr "Suma de comprobación incorrecta." #: errtxt.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/es/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/es/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-02-21 03:03+0000\n" +"PO-Revision-Date: 2017-04-18 13:08+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1487646188.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492520888.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "No se pudieron cargar todos los objetos de SmartArt. Guardar en Microsoft Office 2010 o posterior evitaría este problema." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svx/source/svdraw.po libreoffice-5.3.3~rc2/translations/source/es/svx/source/svdraw.po --- libreoffice-5.3.3~rc1/translations/source/es/svx/source/svdraw.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svx/source/svdraw.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-09-08 09:36+0000\n" +"PO-Revision-Date: 2017-04-28 08:11+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1473327380.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493367095.000000\n" #: svdstr.src msgctxt "" @@ -2046,7 +2046,7 @@ "STR_UndoObjName\n" "string.text" msgid "Change object name of %1 to" -msgstr "Cambia el objeto nombre de %1 a" +msgstr "Cambiar nombre de objeto de %1 a" #: svdstr.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/es/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/svx/uiconfig/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-20 23:26+0000\n" +"PO-Revision-Date: 2017-04-19 05:44+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1490052363.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492580679.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -1274,7 +1274,7 @@ "label\n" "string.text" msgid "Restart LibreOffice to enter Safe Mode" -msgstr "" +msgstr "Reinicie LibreOffice para entrar en el modo seguro" #: datanavigator.ui msgctxt "" @@ -3233,7 +3233,7 @@ "tooltip_text\n" "string.text" msgid "Specify the angle of rotation for the gradient shading style." -msgstr "" +msgstr "Especifique el ángulo de giro para el estilo de sombreado del degradado." #: floatingareastyle.ui msgctxt "" @@ -4463,7 +4463,7 @@ "label\n" "string.text" msgid "Above" -msgstr "" +msgstr "Encima" #: paraulspacing.ui msgctxt "" @@ -4472,7 +4472,7 @@ "label\n" "string.text" msgid "Below" -msgstr "" +msgstr "Debajo" #: paraulspacing.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "_Reiniciar normalmente" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "_Aplicar cambios y reiniciar" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sw/source/ui/utlui.po libreoffice-5.3.3~rc2/translations/source/es/sw/source/ui/utlui.po --- libreoffice-5.3.3~rc1/translations/source/es/sw/source/ui/utlui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sw/source/ui/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-04-17 06:08+0000\n" +"PO-Revision-Date: 2017-04-25 13:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492409285.000000\n" +"X-POOTLE-MTIME: 1493126015.000000\n" #: poolfmt.src msgctxt "" @@ -1698,7 +1698,7 @@ "STR_AUTOFMTREDL_DETECT_URL+1\n" "string.text" msgid "URL recognition" -msgstr "Reconocimiento de los URL" +msgstr "Reconocer URL" #: utlui.src msgctxt "" @@ -1734,7 +1734,7 @@ "STR_AUTOFMTREDL_SET_TMPL_TEXT +1\n" "string.text" msgid "Set \"Text body\" Style" -msgstr "Aplicar el estilo «Cuerpo de texto»" +msgstr "Aplicar estilo «Cuerpo de texto»" #: utlui.src msgctxt "" @@ -1743,7 +1743,7 @@ "STR_AUTOFMTREDL_SET_TMPL_INDENT +1\n" "string.text" msgid "Set \"Text body indent\" Style" -msgstr "Aplicar el estilo «Cuerpo de texto con sangría»" +msgstr "Aplicar estilo «Cuerpo de texto con sangría»" #: utlui.src msgctxt "" @@ -1752,7 +1752,7 @@ "STR_AUTOFMTREDL_SET_TMPL_NEG_INDENT +1\n" "string.text" msgid "Set \"Hanging indent\" Style" -msgstr "Aplicar el estilo «Sangría francesa»" +msgstr "Aplicar estilo «Sangría francesa»" #: utlui.src msgctxt "" @@ -1761,7 +1761,7 @@ "STR_AUTOFMTREDL_SET_TMPL_TEXT_INDENT +1\n" "string.text" msgid "Set \"Text body indent\" Style" -msgstr "Aplicar el estilo «Cuerpo de texto con sangría»" +msgstr "Aplicar estilo «Cuerpo de texto con sangría»" #: utlui.src msgctxt "" @@ -1770,7 +1770,7 @@ "STR_AUTOFMTREDL_SET_TMPL_HEADLINE +1\n" "string.text" msgid "Set \"Heading $(ARG1)\" Style" -msgstr "Aplicar el estilo «Título $(ARG1)»" +msgstr "Aplicar estilo «Título $(ARG1)»" #: utlui.src msgctxt "" @@ -1779,7 +1779,7 @@ "STR_AUTOFMTREDL_SET_NUMBULET +1\n" "string.text" msgid "Set \"Bullet\" or \"Numbering\" Style" -msgstr "Aplicar el estilo «Viñetas» o «Numeración»" +msgstr "Aplicar estilo «Viñetas» o «Numeración»" #: utlui.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sw/source/uibase/docvw.po libreoffice-5.3.3~rc2/translations/source/es/sw/source/uibase/docvw.po --- libreoffice-5.3.3~rc1/translations/source/es/sw/source/uibase/docvw.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sw/source/uibase/docvw.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-07 21:35+0200\n" -"PO-Revision-Date: 2016-05-05 01:53+0000\n" +"PO-Revision-Date: 2017-04-25 13:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1462413208.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493126304.000000\n" #: docvw.src msgctxt "" @@ -212,7 +212,7 @@ "SID_WIN_FULLSCREEN\n" "menuitem.text" msgid "Leave Full-Screen Mode" -msgstr "Salir del modo de pantalla completa" +msgstr "Abandonar modo de pantalla completa" #: docvw.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/sw/uiconfig/swriter/ui.po libreoffice-5.3.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po --- libreoffice-5.3.3~rc1/translations/source/es/sw/uiconfig/swriter/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-02 18:26+0000\n" +"PO-Revision-Date: 2017-04-21 09:57+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488479195.000000\n" +"X-POOTLE-MTIME: 1492768623.000000\n" #: abstractdialog.ui msgctxt "" @@ -986,7 +986,7 @@ "label\n" "string.text" msgid "Customize" -msgstr "" +msgstr "Personalizar" #: businessdatapage.ui msgctxt "" @@ -10001,7 +10001,7 @@ "label\n" "string.text" msgid "Contour" -msgstr "" +msgstr "Contorno" #: notebookbar_groups.ui msgctxt "" @@ -10010,7 +10010,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Editar contorno" #: notebookbar_single.ui msgctxt "" @@ -10019,7 +10019,7 @@ "tooltip_text\n" "string.text" msgid "Horizontal Alignment" -msgstr "" +msgstr "Alineación horizontal" #: notebookbar_single.ui msgctxt "" @@ -10028,7 +10028,7 @@ "tooltip_text\n" "string.text" msgid "Indent" -msgstr "" +msgstr "Sangría" #: notebookbar_single.ui msgctxt "" @@ -10037,7 +10037,7 @@ "tooltip_text\n" "string.text" msgid "Indent" -msgstr "" +msgstr "Sangría" #: numberingnamedialog.ui msgctxt "" @@ -10388,7 +10388,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Enlace" #: objectdialog.ui msgctxt "" @@ -11346,7 +11346,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Insertions" -msgstr "" +msgstr "Color de inserciones" #: optredlinepage.ui msgctxt "" @@ -11391,7 +11391,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Deletions" -msgstr "" +msgstr "Color de eliminaciones" #: optredlinepage.ui msgctxt "" @@ -11436,7 +11436,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Changed Attributes" -msgstr "" +msgstr "Color de atributos modificados" #: optredlinepage.ui msgctxt "" @@ -11463,7 +11463,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Color of Mark" -msgstr "" +msgstr "Color de marca" #: optredlinepage.ui msgctxt "" @@ -12142,7 +12142,7 @@ "label\n" "string.text" msgid "1 Column" -msgstr "" +msgstr "1 columna" #: pagecolumncontrol.ui msgctxt "" @@ -12160,7 +12160,7 @@ "label\n" "string.text" msgid "3 Columns" -msgstr "" +msgstr "3 columnas" #: pagecolumncontrol.ui msgctxt "" @@ -12169,7 +12169,7 @@ "label\n" "string.text" msgid "Left" -msgstr "" +msgstr "Izquierda" #: pagecolumncontrol.ui msgctxt "" @@ -12178,7 +12178,7 @@ "label\n" "string.text" msgid "Right" -msgstr "" +msgstr "Derecha" #: pagecolumncontrol.ui msgctxt "" @@ -12214,7 +12214,7 @@ "label\n" "string.text" msgid "Left" -msgstr "" +msgstr "Izquierda" #: pagecolumncontrol.ui msgctxt "" @@ -12223,7 +12223,7 @@ "label\n" "string.text" msgid "Right" -msgstr "" +msgstr "Derecha" #: pagecolumncontrol.ui msgctxt "" @@ -12232,7 +12232,7 @@ "label\n" "string.text" msgid "_More Options" -msgstr "" +msgstr "_Más opciones" #: pagecolumncontrol.ui msgctxt "" @@ -12241,7 +12241,7 @@ "tooltip_text\n" "string.text" msgid "More Options" -msgstr "" +msgstr "Más opciones" #: pagefooterpanel.ui msgctxt "" @@ -12250,7 +12250,7 @@ "label\n" "string.text" msgid "Margins:" -msgstr "" +msgstr "Márgenes:" #: pagefooterpanel.ui msgctxt "" @@ -12259,7 +12259,7 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalizado" #: pagefooterpanel.ui msgctxt "" @@ -12268,7 +12268,7 @@ "label\n" "string.text" msgid "Spacing:" -msgstr "" +msgstr "Espaciado:" #: pagefooterpanel.ui msgctxt "" @@ -12277,7 +12277,7 @@ "label\n" "string.text" msgid "Same Content:" -msgstr "" +msgstr "Mismo contenido:" #: pageformatpanel.ui msgctxt "" @@ -12286,7 +12286,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Tamaño:" #: pageformatpanel.ui msgctxt "" @@ -12295,7 +12295,7 @@ "label\n" "string.text" msgid "Width:" -msgstr "" +msgstr "Anchura:" #: pageformatpanel.ui msgctxt "" @@ -12304,7 +12304,7 @@ "label\n" "string.text" msgid "Height:" -msgstr "" +msgstr "Altura:" #: pageformatpanel.ui msgctxt "" @@ -12313,7 +12313,7 @@ "label\n" "string.text" msgid "Orientation:" -msgstr "" +msgstr "Orientación:" #: pageformatpanel.ui msgctxt "" @@ -12322,7 +12322,7 @@ "tooltip_text\n" "string.text" msgid "Paper Width" -msgstr "" +msgstr "Anchura de papel" #: pageformatpanel.ui msgctxt "" @@ -12331,7 +12331,7 @@ "tooltip_text\n" "string.text" msgid "Paper Height" -msgstr "" +msgstr "Altura de papel" #: pageformatpanel.ui msgctxt "" @@ -12340,7 +12340,7 @@ "0\n" "stringlist.text" msgid "Portrait" -msgstr "" +msgstr "Vertical" #: pageformatpanel.ui msgctxt "" @@ -12349,7 +12349,7 @@ "1\n" "stringlist.text" msgid "Landscape" -msgstr "" +msgstr "Horizontal" #: pageformatpanel.ui msgctxt "" @@ -12358,7 +12358,7 @@ "label\n" "string.text" msgid "Margins:" -msgstr "" +msgstr "Márgenes:" #: pageformatpanel.ui msgctxt "" @@ -12367,7 +12367,7 @@ "0\n" "stringlist.text" msgid "None" -msgstr "" +msgstr "Ninguno" #: pageformatpanel.ui msgctxt "" @@ -12376,7 +12376,7 @@ "1\n" "stringlist.text" msgid "Narrow" -msgstr "" +msgstr "Estrechos" #: pageformatpanel.ui msgctxt "" @@ -12385,7 +12385,7 @@ "2\n" "stringlist.text" msgid "Moderate" -msgstr "" +msgstr "Moderados" #: pageformatpanel.ui msgctxt "" @@ -12394,7 +12394,7 @@ "3\n" "stringlist.text" msgid "Normal 0.75\"" -msgstr "" +msgstr "Normales (1,9 cm/0,75″)" #: pageformatpanel.ui msgctxt "" @@ -12403,7 +12403,7 @@ "4\n" "stringlist.text" msgid "Normal 1\"" -msgstr "" +msgstr "Normales (2,54 cm/1″)" #: pageformatpanel.ui msgctxt "" @@ -12412,7 +12412,7 @@ "5\n" "stringlist.text" msgid "Normal 1.25\"" -msgstr "" +msgstr "Normales (3,17 cm/1,25″)" #: pageformatpanel.ui msgctxt "" @@ -12421,7 +12421,7 @@ "6\n" "stringlist.text" msgid "Wide" -msgstr "" +msgstr "Amplios" #: pageformatpanel.ui msgctxt "" @@ -12430,7 +12430,7 @@ "7\n" "stringlist.text" msgid "Mirrored" -msgstr "" +msgstr "Reflejados" #: pageformatpanel.ui msgctxt "" @@ -12439,7 +12439,7 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalizados" #: pageheaderpanel.ui msgctxt "" @@ -12448,7 +12448,7 @@ "label\n" "string.text" msgid "Margins:" -msgstr "" +msgstr "Márgenes:" #: pageheaderpanel.ui msgctxt "" @@ -12457,7 +12457,7 @@ "label\n" "string.text" msgid "Custom" -msgstr "" +msgstr "Personalizados" #: pageheaderpanel.ui msgctxt "" @@ -12466,7 +12466,7 @@ "label\n" "string.text" msgid "Spacing:" -msgstr "" +msgstr "Espaciado:" #: pageheaderpanel.ui msgctxt "" @@ -12475,7 +12475,7 @@ "label\n" "string.text" msgid "Same Content:" -msgstr "" +msgstr "Mismo contenido:" #: pagemargincontrol.ui msgctxt "" @@ -12520,7 +12520,7 @@ "label\n" "string.text" msgid "Last Custom Value" -msgstr "" +msgstr "Último valor personalizado" #: pagemargincontrol.ui msgctxt "" @@ -12565,7 +12565,7 @@ "label\n" "string.text" msgid "Last Custom Value" -msgstr "" +msgstr "Último valor personalizado" #: pagemargincontrol.ui msgctxt "" @@ -12673,7 +12673,7 @@ "label\n" "string.text" msgid "Portrait" -msgstr "" +msgstr "Vertical" #: pageorientationcontrol.ui msgctxt "" @@ -12682,7 +12682,7 @@ "label\n" "string.text" msgid "Landscape" -msgstr "" +msgstr "Horizontal" #: pageorientationcontrol.ui msgctxt "" @@ -12700,7 +12700,7 @@ "label\n" "string.text" msgid "_More Options" -msgstr "" +msgstr "_Más opciones" #: pagesizecontrol.ui msgctxt "" @@ -12709,7 +12709,7 @@ "tooltip_text\n" "string.text" msgid "More Options" -msgstr "" +msgstr "Más opciones" #: pagestylespanel.ui msgctxt "" @@ -12718,7 +12718,7 @@ "label\n" "string.text" msgid "Number:" -msgstr "" +msgstr "Número:" #: pagestylespanel.ui msgctxt "" @@ -12727,7 +12727,7 @@ "label\n" "string.text" msgid "Background:" -msgstr "" +msgstr "Fondo:" #: pagestylespanel.ui msgctxt "" @@ -12736,7 +12736,7 @@ "label\n" "string.text" msgid "Layout:" -msgstr "" +msgstr "Disposición:" #: pagestylespanel.ui msgctxt "" @@ -12745,7 +12745,7 @@ "label\n" "string.text" msgid "Columns:" -msgstr "" +msgstr "Columnas:" #: pagestylespanel.ui msgctxt "" @@ -12781,7 +12781,7 @@ "3\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Izquierda" #: pagestylespanel.ui msgctxt "" @@ -12790,7 +12790,7 @@ "4\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Derecha" #: pagestylespanel.ui msgctxt "" @@ -12979,7 +12979,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Enlace" #: picturedialog.ui msgctxt "" @@ -13546,7 +13546,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "First name" -msgstr "Nombre" +msgstr "Nombre(s)" #: privateuserpage.ui msgctxt "" @@ -13555,7 +13555,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Last name" -msgstr "Apellidos" +msgstr "Apellido(s)" #: privateuserpage.ui msgctxt "" @@ -14527,7 +14527,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Paralelo" #: sidebarwrap.ui msgctxt "" @@ -14545,7 +14545,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Optimal" -msgstr "" +msgstr "Óptimo" #: sidebarwrap.ui msgctxt "" @@ -14563,7 +14563,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Before" -msgstr "" +msgstr "Antes" #: sidebarwrap.ui msgctxt "" @@ -14581,7 +14581,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "After" -msgstr "" +msgstr "Después" #: sidebarwrap.ui msgctxt "" @@ -15130,7 +15130,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 2 Width" -msgstr "" +msgstr "Anchura de columna 2" #: tablecolumnpage.ui msgctxt "" @@ -15139,7 +15139,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 3 Width" -msgstr "" +msgstr "Anchura de columna 3" #: tablecolumnpage.ui msgctxt "" @@ -15148,7 +15148,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 4 Width" -msgstr "" +msgstr "Anchura de columna 4" #: tablecolumnpage.ui msgctxt "" @@ -15157,7 +15157,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 5 Width" -msgstr "" +msgstr "Anchura de columna 5" #: tablecolumnpage.ui msgctxt "" @@ -15166,7 +15166,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 6 Width" -msgstr "" +msgstr "Anchura de columna 6" #: tablecolumnpage.ui msgctxt "" @@ -15175,7 +15175,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Column 1 Width" -msgstr "" +msgstr "Anchura de columna 1" #: tablecolumnpage.ui msgctxt "" @@ -15625,7 +15625,7 @@ "label\n" "string.text" msgid "Customize" -msgstr "" +msgstr "Personalizar" #: templatedialog2.ui msgctxt "" @@ -16399,7 +16399,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Previsualización" #: tocdialog.ui msgctxt "" @@ -16669,7 +16669,7 @@ "label\n" "string.text" msgid "L_ink" -msgstr "" +msgstr "H_iperenlace" #: tocentriespage.ui msgctxt "" @@ -16786,7 +16786,7 @@ "tooltip_text\n" "string.text" msgid "Ascending" -msgstr "" +msgstr "Ascendente" #: tocentriespage.ui msgctxt "" @@ -16795,7 +16795,7 @@ "tooltip_text\n" "string.text" msgid "Descending" -msgstr "" +msgstr "Descendente" #: tocentriespage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/vcl/source/src.po libreoffice-5.3.3~rc2/translations/source/es/vcl/source/src.po --- libreoffice-5.3.3~rc1/translations/source/es/vcl/source/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/vcl/source/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-18 04:57+0000\n" +"PO-Revision-Date: 2017-04-28 18:44+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489813032.000000\n" +"X-POOTLE-MTIME: 1493405080.000000\n" #: app.src msgctxt "" @@ -354,7 +354,7 @@ "STR_FPICKER_AUTO_EXTENSION\n" "string.text" msgid "~Automatic file name extension" -msgstr "~Extensión del nombre del archivo automática" +msgstr "~Extensión de nombre de archivo automática" #: fpicker.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/es/wizards/source/formwizard.po libreoffice-5.3.3~rc2/translations/source/es/wizards/source/formwizard.po --- libreoffice-5.3.3~rc1/translations/source/es/wizards/source/formwizard.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/es/wizards/source/formwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2016-12-12 17:03+0000\n" +"PO-Revision-Date: 2017-04-28 21:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1481562201.000000\n" +"X-POOTLE-MTIME: 1493416328.000000\n" #: dbwizres.src msgctxt "" @@ -2769,7 +2769,7 @@ "RID_DB_TABLE_WIZARD_START + 51\n" "string.text" msgid "The field '%FIELDNAME' already exists." -msgstr "El campo '%FIELDNAME' ya existe." +msgstr "El campo «%FIELDNAME» ya existe." #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/fr/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/fr/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/fr/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/fr/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-04-12 08:21+0000\n" -"Last-Translator: sophie \n" +"PO-Revision-Date: 2017-04-29 15:41+0000\n" +"Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1491985303.000000\n" +"X-POOTLE-MTIME: 1493480492.000000\n" #: 01000000.xhp msgctxt "" @@ -12234,7 +12234,7 @@ "28\n" "help.text" msgid "In a presentation or drawing document, you can also activate the text editing mode through the Allow Quick Editing icon in the Option bar." -msgstr "Dans une présentation ou un document de dessin, vous pouvez également activer le mode d'édition de texte à l'aide de l'icône Autoriser l'édition rapide dans la barre Option.\"" +msgstr "Dans une présentation ou un document de dessin, vous pouvez également activer le mode d'édition de texte à l'aide de l icône Autoriser l édition rapide dans la barre Option.\"" #: 01070500.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-02-28 21:08+0000\n" +"PO-Revision-Date: 2017-04-27 15:25+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1488316136.000000\n" +"X-POOTLE-MTIME: 1493306750.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -906,7 +906,7 @@ "ContextLabel\n" "value.text" msgid "Pi~vot Table..." -msgstr "Table de pil~ote..." +msgstr "Table ~dynamique..." #: CalcCommands.xcu msgctxt "" @@ -20096,7 +20096,7 @@ "ContextLabel\n" "value.text" msgid "S~pecial Character..." -msgstr "Charactères spéciaux..." +msgstr "Caractères spéciaux..." #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/gl/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/gl/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/gl/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/gl/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-05 15:39+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2017-04-19 13:19+0000\n" +"Last-Translator: unho \n" "Language-Team: none\n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1488728391.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492607946.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "Dereitos de autor © 2000–2017 dos colaboradores de LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/gl/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/gl/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/gl/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/gl/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-02-18 21:26+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2017-04-19 13:19+0000\n" +"Last-Translator: unho \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1487453184.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492607978.000000\n" #: dialog.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Novo estilo a partir da selección" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Actualizar estilo" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/gl/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/gl/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/gl/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/gl/svtools/source/misc.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-02-16 23:11+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2017-04-19 13:19+0000\n" +"Last-Translator: unho \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1487286695.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492607994.000000\n" #: imagemgr.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "Inglés (Malaisia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-04-14 19:04+0000\n" +"PO-Revision-Date: 2017-04-23 09:42+0000\n" "Last-Translator: Kruno \n" "Language-Team: LANGUAGE \n" "Language: hr\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492196645.000000\n" +"X-POOTLE-MTIME: 1492940573.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7151,7 +7151,7 @@ "Label\n" "value.text" msgid "~Handout Master" -msgstr "~Glavna brošura" +msgstr "Predložak ~stranice uručka" #: DrawImpressCommands.xcu msgctxt "" @@ -22426,7 +22426,7 @@ "Label\n" "value.text" msgid "Edit with External Tool" -msgstr "Uredi vanjskim alatom" +msgstr "Uređivanje vanjskim alatom" #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/hu/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/hu/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-10 21:17+0000\n" +"PO-Revision-Date: 2017-04-20 06:54+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484083022.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671249.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "Copyright © 2000 – 2017 a LibreOffice hozzájárulói." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-02 04:46+0000\n" +"PO-Revision-Date: 2017-04-25 07:25+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Magyar \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1483332363.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493105150.000000\n" #: 01120000.xhp msgctxt "" @@ -51720,7 +51720,7 @@ "19\n" "help.text" msgid "Zero Values" -msgstr "Zérus értékek" +msgstr "Nulla értékek" #: 05070500.xhp msgctxt "" @@ -51738,7 +51738,7 @@ "21\n" "help.text" msgid "Page Order" -msgstr "Oldalak sorrendje" +msgstr "Oldalsorrend" #: 05070500.xhp msgctxt "" @@ -51836,7 +51836,7 @@ "par_idN1096D\n" "help.text" msgid "Scaling mode" -msgstr "Méretezés módja" +msgstr "Méretezési mód" #: 05070500.xhp msgctxt "" @@ -51870,7 +51870,7 @@ "par_idN1099A\n" "help.text" msgid "Scaling factor" -msgstr "Méretezési faktor" +msgstr "Méretarány" #: 05070500.xhp msgctxt "" @@ -51919,7 +51919,7 @@ "par_idN109C3\n" "help.text" msgid "If you clear both boxes, this will result in a scaling factor of 100%." -msgstr "Ha törli a jelölőnégyzeteket, akkor a méretezési faktor 100% lesz." +msgstr "Ha törli a jelölőnégyzeteket, akkor a méretarány 100% lesz." #: 05070500.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/shared/autopi.po libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/shared/autopi.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-08-23 13:30+0000\n" +"PO-Revision-Date: 2017-04-22 11:46+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1471959047.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492861604.000000\n" #: 01000000.xhp msgctxt "" @@ -3603,7 +3603,7 @@ "1\n" "help.text" msgid "Activates the wizard for creating reports." -msgstr "" +msgstr "A jelentéseket létrehozó tündért indítja el." #: 01100000.xhp msgctxt "" @@ -6209,7 +6209,7 @@ "6\n" "help.text" msgid "Specifies that you want to save the reference values in a database. The values are written in the data field selected in the list box. The list box displays all the field names from the database table that the form is linked to." -msgstr "" +msgstr "Megadja, hogy a hivatkozások értékét adatbázisban kívánja tárolni. Az értékek beíródnak a listában kiválasztott adatmezőbe. A lista megjeleníti az adatbázistábla összes mezőnevét, amelyhez az űrlap csatolva van." #: 01120400.xhp msgctxt "" @@ -6227,7 +6227,7 @@ "8\n" "help.text" msgid "Select the data field in which the reference values have to be saved." -msgstr "" +msgstr "Válassza ki az adatmezőt, ahová menteni akarja a hivatkozott értékeket." #: 01120400.xhp msgctxt "" @@ -6245,7 +6245,7 @@ "10\n" "help.text" msgid "Specifies that you want to save the reference values in the form only, and not in the database." -msgstr "" +msgstr "Megadja, hogy a hivatkozások értékét csak az űrlapban kívánja tárolni, az adatbázisban nem." #: 01120500.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.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: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2016-10-18 21:00+0000\n" +"PO-Revision-Date: 2017-04-22 11:52+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1476824422.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492861959.000000\n" #: 02000000.xhp msgctxt "" @@ -9368,7 +9368,7 @@ "par_idN1064B\n" "help.text" msgid "On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the /product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site." -msgstr "" +msgstr "UNIX alatt győződjön meg róla, hogy az Oracle-adatbáziskliens JDBC-támogatással van-e telepítve. A Solaris Oracle kliens 8.x változat JDBC illesztőprogram-osztálya az /product/jdbc/lib/classes111.zip könyvtárban található. A legfrissebb változatot az Oracle webhelyéről is letöltheti." #: dabawiz02jdbc.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/hu/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.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: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2016-08-23 14:03+0000\n" +"PO-Revision-Date: 2017-04-25 06:12+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1471961002.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493100737.000000\n" #: 01000000.xhp msgctxt "" @@ -2246,7 +2246,7 @@ "tit\n" "help.text" msgid "Color" -msgstr "" +msgstr "Szín" #: 01010500.xhp msgctxt "" @@ -2262,7 +2262,7 @@ "hd_id3150543\n" "help.text" msgid "Color" -msgstr "" +msgstr "Szín" #: 01010500.xhp msgctxt "" @@ -2270,7 +2270,7 @@ "par_id3153104\n" "help.text" msgid "Allows you to select a color from a color palette, edit an existing color, or define new colors." -msgstr "" +msgstr "Színt választhat színpalettáról, szerkeszthet egy létező színt vagy meghatározhat új színeket." #: 01010500.xhp msgctxt "" @@ -2278,7 +2278,7 @@ "hd_id3150767\n" "help.text" msgid "Colors" -msgstr "" +msgstr "Színek" #: 01010500.xhp msgctxt "" @@ -2286,7 +2286,7 @@ "hd_id3150869\n" "help.text" msgid "Palette" -msgstr "" +msgstr "Paletta" #: 01010500.xhp msgctxt "" @@ -2294,7 +2294,7 @@ "par_id3149809\n" "help.text" msgid "Specifies the name of a selected palette. You can select a different palette here." -msgstr "" +msgstr "Megadja a kiválasztott paletta nevét. Itt másik paletta is választható." #: 01010500.xhp msgctxt "" @@ -2302,7 +2302,7 @@ "hd_id3150447\n" "help.text" msgid "Color Set" -msgstr "" +msgstr "Színkészlet" #: 01010500.xhp msgctxt "" @@ -2310,7 +2310,7 @@ "par_id3149560\n" "help.text" msgid "Contains a list of available colors. Click on the desired one in the list to select it." -msgstr "" +msgstr "Az elérhető színek listáját tartalmazza. Kattintson a listában a kívánt színre a kiválasztásához." #: 01010500.xhp msgctxt "" @@ -2318,7 +2318,7 @@ "hd_id31563321\n" "help.text" msgid "Recent Colors" -msgstr "" +msgstr "Legutóbbi színek" #: 01010500.xhp msgctxt "" @@ -2326,7 +2326,7 @@ "par_id31544811\n" "help.text" msgid "Displays the last twelve colors selected and applied. Upon selecting a new color it is added to the left of the list. If the list is full and a new color is selected then the rightmost color is deleted." -msgstr "" +msgstr "Megjeleníti az utoljára kiválasztott és alkalmazott tizenkét színt. Új szín kiválasztásakor az a lista bal oldalához kerül hozzáadásra. Ha a lista tele van és új szín kerül kiválasztásra, akkor a jobb szélső szín törlődik." #: 01010500.xhp msgctxt "" @@ -2334,7 +2334,7 @@ "hd_id3156332\n" "help.text" msgid "Add" -msgstr "" +msgstr "Hozzáadás" #: 01010500.xhp msgctxt "" @@ -2342,7 +2342,7 @@ "par_id3154481\n" "help.text" msgid "Adds the new color to the Custom palette." -msgstr "" +msgstr "Az új színt hozzáadja az Egyéni palettához." #: 01010500.xhp msgctxt "" @@ -2350,7 +2350,7 @@ "hd_id31547578\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Törlés" #: 01010500.xhp msgctxt "" @@ -2358,7 +2358,7 @@ "par_id3154483\n" "help.text" msgid "Deletes the selected color without confirmation." -msgstr "" +msgstr "Kérdés nélkül törli a kijelölt színt." #: 01010500.xhp msgctxt "" @@ -2366,7 +2366,7 @@ "par_id3154574\n" "help.text" msgid "You can only delete colors from the custom palette." -msgstr "" +msgstr "Csak az egyéni palettáról lehet színeket törölni." #: 01010500.xhp msgctxt "" @@ -2374,7 +2374,7 @@ "hd_id31507671\n" "help.text" msgid "New" -msgstr "" +msgstr "Új" #: 01010500.xhp msgctxt "" @@ -2382,7 +2382,7 @@ "par_id3147426\n" "help.text" msgid "Displays a preview of the color selected from the color palette and the changes you make with the controls below." -msgstr "" +msgstr "Megjeleníti a színpalettáról választott szín és a lenti vezérlőkkel végzett módosítások előnézetét." #: 01010500.xhp msgctxt "" @@ -2390,7 +2390,7 @@ "hd_id3150103\n" "help.text" msgid "R" -msgstr "" +msgstr "V" #: 01010500.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "par_id3152462\n" "help.text" msgid "The color code of the red component of the color. Possible values are between 0 and 255." -msgstr "" +msgstr "A szín vörös komponensének színkódja. A lehetséges értékek 0 és 255 között vannak." #: 01010500.xhp msgctxt "" @@ -2406,7 +2406,7 @@ "hd_id3145366\n" "help.text" msgid "G" -msgstr "" +msgstr "Z" #: 01010500.xhp msgctxt "" @@ -2414,7 +2414,7 @@ "par_id3153144\n" "help.text" msgid "The color code of the green component of the color. Possible values are between 0 and 255." -msgstr "" +msgstr "A szín zöld komponensének színkódja. A lehetséges értékek 0 és 255 között vannak." #: 01010500.xhp msgctxt "" @@ -2422,7 +2422,7 @@ "hd_id3153573\n" "help.text" msgid "B" -msgstr "" +msgstr "K" #: 01010500.xhp msgctxt "" @@ -2430,7 +2430,7 @@ "par_id3153726\n" "help.text" msgid "The color code of the blue component of the color. Possible values are between 0 and 255." -msgstr "" +msgstr "A szín kék komponensének színkódja. A lehetséges értékek 0 és 255 között vannak." #: 01010500.xhp msgctxt "" @@ -2438,7 +2438,7 @@ "hd_id31535731\n" "help.text" msgid "Hex" -msgstr "" +msgstr "Hexa" #: 01010500.xhp msgctxt "" @@ -2446,7 +2446,7 @@ "par_id31537261\n" "help.text" msgid "The color code of the color expressed as a hexadecimal value." -msgstr "" +msgstr "A szín színkódja hexadecimális értékként kifejezve." #: 01010500.xhp msgctxt "" @@ -2454,7 +2454,7 @@ "hd_id3154754\n" "help.text" msgid "Pick" -msgstr "" +msgstr "Választás" #: 01010501.xhp msgctxt "" @@ -3385,7 +3385,7 @@ "bm_id3155341\n" "help.text" msgid "views; defaults defaults; views settings; views icons; sizes icons; styles WYSIWYG in fonts lists previews; fonts lists font lists font name box mouse; positioning clipboard; selection clipboard selection clipboard OpenGL;settings OpenGL;blacklist OpenGL;whitelist OpenGL;graphics output notebook bar;icon size" -msgstr "" +msgstr "nézetek; alapértelmezések alapértelmezések; nézetek beállítások; nézetek ikonméretek ikonstílusok WYSIWYG a betűkészletek listáiban előnézetek; betűkészletek listái betűkészletlista betűkészletnevek egér; pozicionálás vágólap; kijelölési vágólap kijelölési vágólapOpenGL;beállítások OpenGL;feketelista OpenGL;fehérlista OpenGL;grafikus kimenet szalag;ikonméret" #: 01010800.xhp msgctxt "" @@ -3393,7 +3393,7 @@ "hd_id3155341\n" "help.text" msgid "View" -msgstr "" +msgstr "Nézet" #: 01010800.xhp msgctxt "" @@ -3401,7 +3401,7 @@ "par_id3155630\n" "help.text" msgid "Specifies view options." -msgstr "" +msgstr "Megadja a nézet beállításait." #: 01010800.xhp msgctxt "" @@ -3409,7 +3409,7 @@ "hd_id310720161612581529\n" "help.text" msgid "User Interface" -msgstr "" +msgstr "Felhasználói felület" #: 01010800.xhp msgctxt "" @@ -3417,7 +3417,7 @@ "hd_id3149123\n" "help.text" msgid "Toolbar icon size" -msgstr "" +msgstr "Eszköztárikonok mérete" #: 01010800.xhp msgctxt "" @@ -3425,7 +3425,7 @@ "par_id3153947\n" "help.text" msgid "Specifies the display size of toolbar icons.The Automatic option uses the font size settings of your operating system for menus. " -msgstr "" +msgstr "Megadja az eszköztárikonok megjelenítési méretét. Az Automatikus lehetőség választása esetén a program az operációs rendszer menükhöz tartozó betűméret-beállításait használja." #: 01010800.xhp msgctxt "" @@ -3433,7 +3433,7 @@ "hd_id310720161555082010\n" "help.text" msgid "Sidebar icon size" -msgstr "" +msgstr "Oldalsáv ikonmérete" #: 01010800.xhp msgctxt "" @@ -3441,7 +3441,7 @@ "par_id310720161554582186\n" "help.text" msgid "Specifies the display size of sidebar icons." -msgstr "" +msgstr "Megadja az oldalsáv ikonjainak megjelenési méretét." #: 01010800.xhp msgctxt "" @@ -3449,7 +3449,7 @@ "hd_id190920161822223888\n" "help.text" msgid "Notebook bar icon size" -msgstr "" +msgstr "Szalag ikonmérete" #: 01010800.xhp msgctxt "" @@ -3457,7 +3457,7 @@ "par_id190920161825438077\n" "help.text" msgid "Specifies the display size of notebook bar icons." -msgstr "" +msgstr "Megadja a szalag ikonjainak megjelenési méretét." #: 01010800.xhp msgctxt "" @@ -3465,7 +3465,7 @@ "hd_id310720161555238963\n" "help.text" msgid "Icon style" -msgstr "" +msgstr "Ikonstílus" #: 01010800.xhp msgctxt "" @@ -3473,7 +3473,7 @@ "par_id310720161555341027\n" "help.text" msgid "Specifies the icon style for icons in toolbars and dialogs." -msgstr "" +msgstr "Megadja az ikonstílust az eszköztárakon és párbeszédablakokban megjelenő ikonokhoz." #: 01010800.xhp msgctxt "" @@ -3505,7 +3505,7 @@ "hd_id310720161614431319\n" "help.text" msgid "Mouse" -msgstr "" +msgstr "Egér" #: 01010800.xhp msgctxt "" @@ -3513,7 +3513,7 @@ "hd_id3166432\n" "help.text" msgid "Mouse positioning" -msgstr "" +msgstr "Egérpozicionálás" #: 01010800.xhp msgctxt "" @@ -3521,7 +3521,7 @@ "par_id3155530\n" "help.text" msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs." -msgstr "" +msgstr "Megadja, hová kerüljön az egérmutató az újonnan megnyílt párbeszédablakokon." #: 01010800.xhp msgctxt "" @@ -3529,7 +3529,7 @@ "hd_id3146982\n" "help.text" msgid "Middle mouse button" -msgstr "" +msgstr "Középső egérgomb" #: 01010800.xhp msgctxt "" @@ -3537,7 +3537,7 @@ "par_id3150521\n" "help.text" msgid "Defines the function of the middle mouse button." -msgstr "" +msgstr "Beállítja, hogy mit csináljon a középső egérgomb." #: 01010800.xhp msgctxt "" @@ -3545,7 +3545,7 @@ "par_id3152889\n" "help.text" msgid "Automatic scrolling - dragging while pressing the middle mouse button shifts the view." -msgstr "" +msgstr "Automatikus görgetés – a középső egérgomb lenyomása közbeni húzás eltolja a képet." #: 01010800.xhp msgctxt "" @@ -3553,7 +3553,7 @@ "par_id3155810\n" "help.text" msgid "Paste clipboard - pressing the middle mouse button inserts the contents of the \"Selection clipboard\" at the cursor position." -msgstr "" +msgstr "Vágólap beillesztése – a középső egérgomb lenyomása beszúrja a „Kijelölési vágólap” tartalmát a kurzorpozícióra." #: 01010800.xhp msgctxt "" @@ -3561,7 +3561,7 @@ "par_id3148703\n" "help.text" msgid "The \"Selection clipboard\" is independent of the normal clipboard that you use by Edit - Copy/Cut /Insert or the respective keyboard shortcuts. Clipboard and \"Selection clipboard\" can contain different contents at the same time." -msgstr "" +msgstr "A „Kijelölési vágólap” független a normál vágólaptól, amelyet a Szerkesztés - Másolás/Kivágás/Beszúrás menüparanccsal vagy a megfelelő gyorsbillentyűkkel használ. A vágólapnak és a „Kijelölési vágólapnak” lehet különböző a tartalma." #: 01010800.xhp msgctxt "" @@ -3569,7 +3569,7 @@ "par_id3148870\n" "help.text" msgid "Clipboard" -msgstr "" +msgstr "Vágólap" #: 01010800.xhp msgctxt "" @@ -3577,7 +3577,7 @@ "par_id3145076\n" "help.text" msgid "Selection clipboard" -msgstr "" +msgstr "Kijelölési vágólap" #: 01010800.xhp msgctxt "" @@ -3585,7 +3585,7 @@ "par_id3156030\n" "help.text" msgid "Copy content" -msgstr "" +msgstr "Tartalom másolása" #: 01010800.xhp msgctxt "" @@ -3593,7 +3593,7 @@ "par_id3150110\n" "help.text" msgid "Edit - Copy Ctrl+C." -msgstr "" +msgstr "Szerkesztés - Másolás, Ctrl+C." #: 01010800.xhp msgctxt "" @@ -3601,7 +3601,7 @@ "par_id3149588\n" "help.text" msgid "Select text, table, object." -msgstr "" +msgstr "Szöveg, táblázat, objektum kijelölése." #: 01010800.xhp msgctxt "" @@ -3609,7 +3609,7 @@ "par_id3149331\n" "help.text" msgid "Paste content" -msgstr "" +msgstr "Tartalom beillesztése" #: 01010800.xhp msgctxt "" @@ -3617,7 +3617,7 @@ "par_id3156337\n" "help.text" msgid "Edit - Paste Ctrl+V pastes at the cursor position." -msgstr "" +msgstr "Szerkesztés - Beillesztés, Ctrl+V beilleszti a kurzor helyére." #: 01010800.xhp msgctxt "" @@ -3625,7 +3625,7 @@ "par_id3151127\n" "help.text" msgid "Clicking the middle mouse button pastes at the mouse pointer position." -msgstr "" +msgstr "Az egér középső gombjára kattintva beilleszti az egérmutató helyére." #: 01010800.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "par_id3159206\n" "help.text" msgid "Pasting into another document" -msgstr "" +msgstr "Beillesztés más dokumentumba" #: 01010800.xhp msgctxt "" @@ -3641,7 +3641,7 @@ "par_id3148974\n" "help.text" msgid "No effect on the clipboard contents." -msgstr "" +msgstr "Nincs hatással a vágólap tartalmára." #: 01010800.xhp msgctxt "" @@ -3649,7 +3649,7 @@ "par_id3152870\n" "help.text" msgid "The last marked selection is the content of the selection clipboard." -msgstr "" +msgstr "A legutóbbi itteni kijelölés lesz a kijelölési vágólap tartalma." #: 01010800.xhp msgctxt "" @@ -3713,7 +3713,7 @@ "par_id1208200812004445\n" "help.text" msgid "Use the high performance Open Graphics Library (OpenGL) to render all visual elements of the application, including windows, menus, toolbars and icons. OpenGL uses the computer graphics device to accelerate the graphics rendering. If the device is blacklisted (see below) this option will not be effective." -msgstr "" +msgstr "A nagy teljesítményű OpenGL programkönyvtár használata az alkalmazás minden vizuális elemének megjelenítésére, beleértve az ablakokat, menüket, eszköztárakat és ikonokat. Az OpenGL a számítógép grafikus eszközét használja a grafikai megjelenítés gyorsítására. Ha az eszköz feketelistán van (lásd alább), akkor ez a beállítás nem lesz hatásos." #: 01010800.xhp msgctxt "" @@ -3745,7 +3745,7 @@ "hd_id3156056\n" "help.text" msgid "Icons in menus" -msgstr "" +msgstr "Ikonok a menükben" #: 01010800.xhp msgctxt "" @@ -3753,7 +3753,7 @@ "par_id3155766\n" "help.text" msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes." -msgstr "" +msgstr "Megjeleníti az ikonokat a megfelelő menüparancsok mellett. A választási lehetőségek: Automatikus, Elrejtés, Megjelenítés. Az „Automatikus” a rendszer beállítása és témája szerint jeleníti meg az ikonokat." #: 01010800.xhp msgctxt "" @@ -3761,7 +3761,7 @@ "hd_id310720161619163588\n" "help.text" msgid "Font Lists" -msgstr "" +msgstr "Betűkészlet-listák" #: 01010800.xhp msgctxt "" @@ -3769,7 +3769,7 @@ "hd_id3149262\n" "help.text" msgid "Show preview of fonts" -msgstr "" +msgstr "Betűkészletek előnézete" #: 01010800.xhp msgctxt "" @@ -3777,7 +3777,7 @@ "par_id3155415\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 "" +msgstr "A kiválasztható betűkészletek nevét a megfelelő betűkészlettel jeleníti meg például a Betűkészlet mezőben a Formázás eszköztáron." #: 01010900.xhp msgctxt "" @@ -4142,7 +4142,7 @@ "bm_id3153881\n" "help.text" msgid "graphics; cacheimages; cachecache for graphicsQuickstarterundoing; number of steps" -msgstr "" +msgstr "visszavonás; lépések száma kép; gyorsítótár gyorsítótár képekhez gyorsindító>" #: 01011000.xhp msgctxt "" @@ -4159,7 +4159,7 @@ "par_id3154307\n" "help.text" msgid "This tab page lets you define various settings for the image cache." -msgstr "" +msgstr "Ez a lap lehetővé tesz a kép gyorsítótár különféle beállításainak megadását." #: 01011000.xhp msgctxt "" @@ -4167,7 +4167,7 @@ "hd_id3147530\n" "help.text" msgid "Image cache" -msgstr "" +msgstr "Kép gyorsítótár" #: 01011000.xhp msgctxt "" @@ -4175,7 +4175,7 @@ "par_id3145069\n" "help.text" msgid "The image cache saves the images contained in a document in your computer's main memory. This means that the attributes of an image stored in the cache do not have to be re-calculated if you return to the page containing the image after scrolling through a document." -msgstr "" +msgstr "A képgyorsítótár menti a dokumentumban lévő képeket a számítógép főmemóriájába. Ez azt jelenti, hogy a gyorsítótárban tárolt képjellemzőket nem kell újraszámolni, ha oldalgörgetéssel visszatér a képet tartalmazó oldalra a dokumentum átlapozásakor." #: 01011000.xhp msgctxt "" @@ -4192,7 +4192,7 @@ "par_id3152813\n" "help.text" msgid "Specifies the total cache size for all images." -msgstr "" +msgstr "Megadja az összes grafikai elemhez használt gyorsítótár méretét." #: 01011000.xhp msgctxt "" @@ -4227,7 +4227,7 @@ "par_id3148674\n" "help.text" msgid "Specifies the time that each image remains in the cache in hours and minutes." -msgstr "" +msgstr "Megadja az összes kép számára órában és percben, hogy meddig maradhatnak a gyorsítótárban." #: 01011000.xhp msgctxt "" @@ -4579,7 +4579,7 @@ "hd_id3147531\n" "help.text" msgid "Allow animated images" -msgstr "" +msgstr "Animált képek engedélyezése" #: 01013000.xhp msgctxt "" @@ -5212,7 +5212,7 @@ "par_idN1064B\n" "help.text" msgid "Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni feljegyezett változtatásokat, verziókat vagy megjegyzéseket tartalmazó dokumentum mentésekor vagy küldésekor." #: 01030300.xhp msgctxt "" @@ -5228,7 +5228,7 @@ "par_idN10652\n" "help.text" msgid "Select to see a warning dialog when you try to print a document that contains recorded changes or comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni feljegyezett változtatásokat vagy megjegyzéseket tartalmazó dokumentum nyomtatásakor." #: 01030300.xhp msgctxt "" @@ -5244,7 +5244,7 @@ "par_idN10659\n" "help.text" msgid "Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni feljegyezett változtatásokat, verziókat, mezőket, más forrásra hivatkozásokat (például hivatkozott szakaszokat vagy hivatkozott képeket) vagy megjegyzéseket tartalmazó dokumentum aláírásának megkísérlésekor." #: 01030300.xhp msgctxt "" @@ -5260,7 +5260,7 @@ "par_idN10660\n" "help.text" msgid "Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments." -msgstr "" +msgstr "Válassza ki, ha figyelmeztetést szeretne kapni olyan dokumentum PDF-be exportálásakor, amely feljegyezett változtatásokat vagy megjegyzéseket jelenít meg a Writerben." #: 01030300.xhp msgctxt "" @@ -5276,7 +5276,7 @@ "par_idN10667\n" "help.text" msgid "Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the Reset Properties button on File - Properties - General." -msgstr "" +msgstr "Válassza ki, ha mindig el szeretné távolítani a felhasználó adatait a fájltulajdonságokból. Ha ez a beállítás nincs kiválasztva, az aktuális dokumentumból akkor is eltávolíthatja a személyes adatokat a Fájl - Tulajdonságok - Általános lapon a Tulajdonságok visszaállítása gombbal." #: 01030300.xhp msgctxt "" @@ -5292,7 +5292,7 @@ "par_idN10680\n" "help.text" msgid "Select to always enable the Save with password option in the file save dialogs. Deselect the option to save files by default without password." -msgstr "" +msgstr "Válassza ki, ha azt szeretné, hogy a Mentés jelszóval négyzet a fájl mentése párbeszédpanelen alapértelmezésben be legyen jelölve. Vegye le a jelölést, ha jelszavas védelem nélkül kívánja a fájlokat menteni." #: 01030300.xhp msgctxt "" @@ -5308,7 +5308,7 @@ "par_id79042\n" "help.text" msgid "If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink." -msgstr "" +msgstr "Ha engedélyezve van, nyomva kell tartani a Ctrl billentyűt miközben hiperhivatkozásra kattint annak érdekében, hogy a hivatkozás megnyíljon. Ha nincs engedélyezve, a kattintással a hiperhivatkozás megnyílik." #: 01030300.xhp msgctxt "" @@ -5316,7 +5316,7 @@ "hd_id1972107\n" "help.text" msgid "Block any links from documents not among the trusted locations (see Macro Security)" -msgstr "" +msgstr "A megbízható helyek közt nem szereplő dokumentumok hivatkozásainak blokkolása (lásd Makróbiztonság)" #: 01030300.xhp msgctxt "" @@ -5324,7 +5324,7 @@ "par_id79043\n" "help.text" msgid "Blocks the use of links pointing to images not in the trusted locations defined on the Trusted Sources tab of the Macro Security dialog. This can increase security in case you work with documents from untrusted sources (e.g. the internet) and are worried about vulnerabilities in image processing software components. Blocking the use of links means that images are not loaded in documents, only a placeholder frame is visible." -msgstr "" +msgstr "Blokkolja a hivatkozásokat azokra a képekre, amelyek nem a Makróbiztonság ablak Megbízható források lapján megadott megbízható helyeken találhatók. Ez növelheti a biztonságot, ha nem megbízható forrásból (például az internetről) származó dokumentumokkal dolgozik, és aggódik a képfeldolgozó szoftverösszetevőkben lévő sebezhetőségek miatt. A hivatkozások blokkolása azt jelenti, hogy a képek nem kerülnek betöltésre, csak egy helykitöltő keret látható." #: 01030300.xhp msgctxt "" @@ -5750,7 +5750,7 @@ "hd_id3144764\n" "help.text" msgid "Copy local images to Internet" -msgstr "" +msgstr "Helyi képek másolása az internetre" #: 01030500.xhp msgctxt "" @@ -6043,7 +6043,7 @@ "hd_id3153143\n" "help.text" msgid "Images and objects" -msgstr "" +msgstr "Képek és objektumok" #: 01040200.xhp msgctxt "" @@ -6051,7 +6051,7 @@ "par_id3149261\n" "help.text" msgid "Specifies whether to display images and objects on the screen. If these elements are hidden, you will see empty frames as placeholders." -msgstr "" +msgstr "Megadja, hogy a képek és objektumok megjelenjenek-e a képernyőn. Rejtett elemek esetén üres helykitöltő kereteket fog látni." #: 01040200.xhp msgctxt "" @@ -6068,7 +6068,7 @@ "par_id3146898\n" "help.text" msgid "If the Images and objects option is not selected, no graphics will be loaded from the Internet. Graphics within a table and without an indication of their size can cause display problems when using an older HTML standard on the browsed page." -msgstr "" +msgstr "Ha a Képek és objektumok beállítás nincs kijelölve, akkor a képek nem lesznek letöltve az internetről. A táblázatokon belüli méretjelzés nélküli képek megjelenítési problémákat okozhatnak, ha a böngészőoldalon régebbi HTML-szabványok használatosak." #: 01040200.xhp msgctxt "" @@ -6131,7 +6131,7 @@ "45\n" "help.text" msgid "Displays the field names in the document instead of the contents of the fields. You can also choose View - Field Names in a text document." -msgstr "" +msgstr "A mezőnevet jeleníti meg a dokumentumban a mező tartalma helyett. Kiválaszthatja a Nézet - Mezőnevek lehetőséget egy szöveges dokumentumban." #: 01040200.xhp msgctxt "" @@ -6824,7 +6824,7 @@ "par_id3155429\n" "help.text" msgid "Specifies that tables are not split by any type of text flow break. You can also find this option in menu Table - Properties - Text Flow." -msgstr "" +msgstr "Megadja, hogy a táblázatokat semmiféle szövegtörés ne bontsa fel. Ezt a beállítást a Táblázat - Tulajdonságok - Szövegbeosztás menüpontban is megtalálhatja." #: 01040500.xhp msgctxt "" @@ -9181,7 +9181,7 @@ "7\n" "help.text" msgid "Zero values" -msgstr "Zérus értékek" +msgstr "Nulla értékek" #: 01060100.xhp msgctxt "" @@ -10671,7 +10671,7 @@ "par_id3156343\n" "help.text" msgid "To record changes to your work, choose Edit - Track Changes - Record Changes." -msgstr "" +msgstr "A munkája változásainak feljegyzéséhez válassza a Szerkesztés - Változások követése - Változások követése lehetőséget." #: 01060600.xhp msgctxt "" @@ -15377,7 +15377,7 @@ "par_idN105A7\n" "help.text" msgid "Add" -msgstr "" +msgstr "Hozzáadás" #: javaparameters.xhp msgctxt "" @@ -15393,7 +15393,7 @@ "par_idN105C55\n" "help.text" msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #: javaparameters.xhp msgctxt "" @@ -15401,7 +15401,7 @@ "par_idN105C66\n" "help.text" msgid "Opens a dialog where the selected JRE start parameter can be edited." -msgstr "" +msgstr "Megnyit egy ablakot, amelyben a kijelölt JRE indítóparaméter szerkeszthető." #: javaparameters.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/sc/uiconfig/scalc/ui.po libreoffice-5.3.3~rc2/translations/source/hu/sc/uiconfig/scalc/ui.po --- libreoffice-5.3.3~rc1/translations/source/hu/sc/uiconfig/scalc/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-01-07 10:40+0000\n" +"PO-Revision-Date: 2017-04-25 07:22+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: none\n" "Language: hu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483785631.000000\n" +"X-POOTLE-MTIME: 1493104930.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -9551,7 +9551,7 @@ "label\n" "string.text" msgid "_Objects/Images" -msgstr "_Objektumok/Képek" +msgstr "_Objektumok/képek" #: sheetprintpage.ui msgctxt "" @@ -9614,7 +9614,7 @@ "label\n" "string.text" msgid "_Scaling factor:" -msgstr "_Méretezés aránya:" +msgstr "Méretará_ny:" #: sheetprintpage.ui msgctxt "" @@ -9677,7 +9677,7 @@ "label\n" "string.text" msgid "Scale" -msgstr "Skála" +msgstr "Méretezés" #: showchangesdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/hu/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/hu/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-08 20:44+0000\n" +"PO-Revision-Date: 2017-04-20 06:56+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1483908295.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671414.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Kitöltés formátummal" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Új stílus a kijelölés alapján" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Stílus frissítése" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/svtools/source/dialogs.po libreoffice-5.3.3~rc2/translations/source/hu/svtools/source/dialogs.po --- libreoffice-5.3.3~rc1/translations/source/hu/svtools/source/dialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/svtools/source/dialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-02-10 12:16+0000\n" +"PO-Revision-Date: 2017-04-20 06:54+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: LANGUAGE \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1455106597.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671285.000000\n" #: addresstemplate.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "Formázott szöveg [Richtext]" #: formats.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/hu/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/hu/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/svtools/source/misc.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-09 10:31+0000\n" +"PO-Revision-Date: 2017-04-20 06:54+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1483957869.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671299.000000\n" #: imagemgr.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "Angol (Malajzia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/hu/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/hu/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-27 18:02+0000\n" +"PO-Revision-Date: 2017-04-20 06:55+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: LANGUAGE \n" "Language: hu\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482861733.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671358.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Nem lehet betölteni minden SmartArtot. Ez elkerülhető a Microsoft Office 2010 vagy újabb használatával való mentéssel." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/hu/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/hu/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/hu/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/hu/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-30 00:44+0000\n" -"Last-Translator: Andras Timar \n" +"PO-Revision-Date: 2017-04-20 06:56+0000\n" +"Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1483058667.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492671381.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "Újraindítás _normál módban" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "_Változtatások végrehajtása és újraindítás" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/id/extensions/source/bibliography.po libreoffice-5.3.3~rc2/translations/source/id/extensions/source/bibliography.po --- libreoffice-5.3.3~rc1/translations/source/id/extensions/source/bibliography.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/id/extensions/source/bibliography.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 12:30+0000\n" +"PO-Revision-Date: 2017-04-26 17:18+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: LANGUAGE \n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482582616.000000\n" +"X-POOTLE-MTIME: 1493227121.000000\n" #: bib.src msgctxt "" @@ -30,7 +30,7 @@ "RID_BIB_STR_TABWIN_PREFIX\n" "string.text" msgid "Table;Query;Sql;Sql [Native]" -msgstr "Tabel;Kuiri;Sql;Sql [Natif]" +msgstr "Tabel;Kuiri;Sql;Sql [Native]" #: bib.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/id/helpcontent2/source/text/sbasic/shared.po libreoffice-5.3.3~rc2/translations/source/id/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.3.3~rc1/translations/source/id/helpcontent2/source/text/sbasic/shared.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/id/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 03:24+0000\n" +"PO-Revision-Date: 2017-04-26 17:22+0000\n" "Last-Translator: Andika Triwidada \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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467775477.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493227339.000000\n" #: 00000002.xhp msgctxt "" @@ -9272,7 +9272,7 @@ "par_id3150440\n" "help.text" msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]" -msgstr "Input #NomorBerkas As Integer; var1[, var2[, var3[,...]]]" +msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]" #: 03020202.xhp msgctxt "" @@ -9400,7 +9400,7 @@ "par_id3147229\n" "help.text" msgid "Line Input #FileNumber As Integer, Var As String" -msgstr "Line Input #NomorBerkas As Integer, Var As String" +msgstr "Line Input #FileNumber As Integer, Var As String" #: 03020203.xhp msgctxt "" @@ -9680,7 +9680,7 @@ "par_id3145785\n" "help.text" msgid "Write [#FileName], [Expressionlist]" -msgstr "Write [#NamaBerkas], [DaftarEkspresi]" +msgstr "Write [#FileName], [Expressionlist]" #: 03020205.xhp msgctxt "" @@ -10331,7 +10331,7 @@ "7\n" "help.text" msgid "Seek[#FileNumber], Position (As Long)" -msgstr "Seek[#NomorBerkas], Posisi (As Long)" +msgstr "Seek[#FileNumbe], Posisi (As Long)" #: 03020305.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/it/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/it/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-03 12:36+0000\n" +"PO-Revision-Date: 2017-04-18 11:31+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1491222985.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492515072.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright © 2000–2017 LibreOffice contributors." -msgstr "" +msgstr "Copyright © 2000 - 2017 Contributori di LibreOffice." #: aboutdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/it/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-23 18:42+0000\n" +"PO-Revision-Date: 2017-04-18 11:36+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485196979.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492515415.000000\n" #: 01120000.xhp msgctxt "" @@ -5678,7 +5678,7 @@ "par_id231020162315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060102.xhp msgctxt "" @@ -5686,7 +5686,7 @@ "par_id231020163315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060103.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/it/helpcontent2/source/text/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-05 12:55+0000\n" +"PO-Revision-Date: 2017-04-20 12:09+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491396923.000000\n" +"X-POOTLE-MTIME: 1492690140.000000\n" #: 01010000.xhp msgctxt "" @@ -23619,7 +23619,7 @@ "2\n" "help.text" msgid "Combines the contents of the selected table cells into a single cell." -msgstr "Unisce in un unica cella il contenuto delle celle selezionate." +msgstr "Unisce in un'unica cella il contenuto delle celle selezionate." #: 05100100.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/helpcontent2/source/text/swriter.po libreoffice-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter.po --- libreoffice-5.3.3~rc1/translations/source/it/helpcontent2/source/text/swriter.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-04 22:31+0000\n" +"PO-Revision-Date: 2017-04-20 12:15+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483569110.000000\n" +"X-POOTLE-MTIME: 1492690526.000000\n" #: classificationbar.xhp msgctxt "" @@ -1206,7 +1206,7 @@ "par_idN1062C\n" "help.text" msgid "Selects the current column." -msgstr "Seleziona la colonna su cui si trova il cursore." +msgstr "Seleziona la colonna attiva." #: main0110.xhp msgctxt "" @@ -1222,7 +1222,7 @@ "par_idN10632\n" "help.text" msgid "Selects the current row." -msgstr "Seleziona la riga in cui si trova il cursore." +msgstr "Seleziona la riga attiva." #: main0110.xhp msgctxt "" @@ -1238,7 +1238,7 @@ "par_idN10638\n" "help.text" msgid "Selects the current cell." -msgstr "Seleziona la cella in cui si trova il cursore." +msgstr "Seleziona la cella attiva." #: main0110.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/it/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/it/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/sfx2/source/dialog.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-29 19:24+0000\n" +"PO-Revision-Date: 2017-04-18 11:31+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485717876.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492515100.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Modo riempimento" #: templdlg.src msgctxt "" @@ -737,7 +737,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Nuovo stile dalla selezione" #: templdlg.src msgctxt "" @@ -745,7 +745,7 @@ "STR_STYLE_UPDATE_STYLE\n" "string.text" msgid "Update Style" -msgstr "" +msgstr "Aggiorna stile" #: versdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/sfx2/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/it/sfx2/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/it/sfx2/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-29 19:45+0000\n" +"PO-Revision-Date: 2017-04-18 11:32+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485719106.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492515161.000000\n" #: alienwarndialog.ui msgctxt "" @@ -798,6 +798,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" +"%PRODUCTNAME è reso disponibile nei termini della Mozilla Public License, versione 2.0. È possibile consultare una copia della MPL all'indirizzo http://mozilla.org/MPL/2.0/.\n" +"\n" +"I termini della licenza e gli avvisi di copyright sul codice aggiuntivo di terze parti applicabile a varie porzioni del software sono contenuti nel file LICENSE.html; per visualizzare gli esatti dettagli in inglese, premi il pulsante \"Mostra Licenza\".\n" +"\n" +"Tutti i marchi, registrati e non registrati, qui menzionati sono di proprietà dei loro rispettivi proprietari.\n" +"\n" +"Copyright © 2000-2017 Contributori di LibreOffice. Tutti i diritti riservati.\n" +"\n" +"Questo prodotto è stato creato da %OOOVENDOR, e basato su OpenOffice.org, che è Copyright 2000, 2011 Oracle e/o loro affiliati. %OOOVENDOR ringrazia tutti i membri della comunità, consultate http://www.libreoffice.org/ per più dettagli." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/svtools/source/dialogs.po libreoffice-5.3.3~rc2/translations/source/it/svtools/source/dialogs.po --- libreoffice-5.3.3~rc1/translations/source/it/svtools/source/dialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/svtools/source/dialogs.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-29 20:13+0000\n" +"PO-Revision-Date: 2017-04-18 13:47+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485720829.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492523255.000000\n" #: addresstemplate.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "Testo formattato [Richtext]" #: formats.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/it/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/it/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/svtools/source/misc.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-29 20:20+0000\n" +"PO-Revision-Date: 2017-04-18 13:50+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485721259.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492523414.000000\n" #: imagemgr.src msgctxt "" @@ -3894,7 +3894,7 @@ "LANGUAGE_ENGLISH_MALAYSIA\n" "pairedlist.text" msgid "English (Malaysia)" -msgstr "" +msgstr "Inglese (Malesia)" #: svtools.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/it/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/it/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-31 12:21+0000\n" +"PO-Revision-Date: 2017-04-18 11:35+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1483186881.000000\n" +"X-POOTLE-MTIME: 1492515353.000000\n" #: stbctrls.src msgctxt "" @@ -156,7 +156,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Impossibile caricare tutte le SmartArts. Il salvataggio in Microsoft Office versione 2010 o successiva dovrebbe evitare questo problema." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/svx/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/it/svx/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/it/svx/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/svx/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-29 22:12+0000\n" +"PO-Revision-Date: 2017-04-18 11:36+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485727975.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492515388.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -5079,7 +5079,7 @@ "label\n" "string.text" msgid "_Restart in Normal Mode" -msgstr "" +msgstr "_Riavvia in modalità normale" #: safemodedialog.ui msgctxt "" @@ -5088,7 +5088,7 @@ "label\n" "string.text" msgid "_Apply Changes and Restart" -msgstr "" +msgstr "_Applica le modifiche e riavvia" #: safemodedialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/it/sw/source/ui/utlui.po libreoffice-5.3.3~rc2/translations/source/it/sw/source/ui/utlui.po --- libreoffice-5.3.3~rc1/translations/source/it/sw/source/ui/utlui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/it/sw/source/ui/utlui.po 2017-05-03 16:46:29.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: 2017-02-16 15:52+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-30 07:59+0000\n" +"Last-Translator: Valter Mura \n" +"Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493539185.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 "Testo citato" + +#: poolfmt.src +msgctxt "" "poolfmt.src\n" "STR_POOLCOLL_HTML_PRE\n" "string.text" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/basic/source/classes.po libreoffice-5.3.3~rc2/translations/source/kk/basic/source/classes.po --- libreoffice-5.3.3~rc1/translations/source/kk/basic/source/classes.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-28 09:27+0000\n" +"PO-Revision-Date: 2017-04-19 14:42+0000\n" "Last-Translator: Baurzhan Muftakhidinov \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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1451294832.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492612969.000000\n" #: sb.src msgctxt "" @@ -905,7 +905,7 @@ "ERRCODE_BASIC_PROC_DEFINED & ERRCODE_RES_MASK\n" "string.text" msgid "Sub procedure or function procedure $(ARG1) already defined." -msgstr "$(ARG1) ішкі процедура немесе функциясы анықталмаған болып тұр." +msgstr "$(ARG1) ішкі процедура немесе функциясы сипатталған болып тұр." #: sb.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/formula/source/core/resource.po libreoffice-5.3.3~rc2/translations/source/kk/formula/source/core/resource.po --- libreoffice-5.3.3~rc1/translations/source/kk/formula/source/core/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/formula/source/core/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -3,15 +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: 2016-12-10 20:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2016-11-09 14:10+0100\n" +"PO-Revision-Date: 2017-04-28 17:08+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" +"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493399328.000000\n" #: core_resource.src msgctxt "" @@ -2706,6 +2709,15 @@ #: core_resource.src msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_RANK_EQ\n" +"string.text" +msgid "RANK.EQ" +msgstr "RANK.EQ" + +#: core_resource.src +msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_PERCENTILE_EXC\n" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/kk/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/kk/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-01-23 08:29+0000\n" +"PO-Revision-Date: 2017-04-22 12:23+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485160184.000000\n" +"X-POOTLE-MTIME: 1492863837.000000\n" #: filter.src msgctxt "" @@ -3026,7 +3026,7 @@ "STR_TABINSERT_ERROR\n" "string.text" msgid "The table could not be inserted." -msgstr "Кестені кірістіру мүмкіндік емес." +msgstr "Кестені кірістіру мүмкін емес." #: globstr.src msgctxt "" @@ -11774,7 +11774,7 @@ "Rounds number towards zero to the nearest multiple of absolute value of significance.\n" "This function exists for interoperability with Microsoft Excel 2007 or older versions." msgstr "" -"Санды көрсетілген дәлдіктің абсолютті шамасының ең жақын еселі мәніне дейін нөлге қарай дөңгелектейді.\n" +"Санды көрсетілген дәлдіктің абсолюттік шамасының ең жақын еселі мәніне дейін нөлге қарай дөңгелектейді.\n" "Бұл функция ескі Microsoft Excel 2007 және ескілеу құжаттарымен үйлесімділігі үшін арналған." #: scfuncs.src @@ -21425,7 +21425,7 @@ "7\n" "string.text" msgid "The range from which data is to be taken." -msgstr "Деректер алынатын ұяшықтар ауқымы. " +msgstr "Деректер алынатын ұяшықтар ауқымы." #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/sc/source/ui/StatisticsDialogs.po libreoffice-5.3.3~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po --- libreoffice-5.3.3~rc1/translations/source/kk/sc/source/ui/StatisticsDialogs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/sc/source/ui/StatisticsDialogs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2015-11-14 16:37+0000\n" +"PO-Revision-Date: 2017-04-23 02:43+0000\n" "Last-Translator: Baurzhan Muftakhidinov \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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447519071.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492915423.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -59,7 +59,7 @@ "STR_ANOVA_TWO_FACTOR_LABEL\n" "string.text" msgid "ANOVA - Two Factor" -msgstr "Дисперсиялық анализ - қос фактор " +msgstr "Дисперсиялық анализ - қос фактор" #: StatisticsDialogs.src msgctxt "" @@ -275,7 +275,7 @@ "STRID_CALC_SKEWNESS\n" "string.text" msgid "Skewness" -msgstr "Ассимметрия" +msgstr "Асимметрия" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/scaddins/source/analysis.po libreoffice-5.3.3~rc2/translations/source/kk/scaddins/source/analysis.po --- libreoffice-5.3.3~rc1/translations/source/kk/scaddins/source/analysis.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-11-14 16:34+0000\n" +"PO-Revision-Date: 2017-04-25 08:54+0000\n" "Last-Translator: Baurzhan Muftakhidinov \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: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1447518845.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493110451.000000\n" #: analysis.src msgctxt "" @@ -472,7 +472,7 @@ "5\n" "string.text" msgid "The initial power to which x is to be raised" -msgstr "x дәрежеленетін бастапқы дәреже." +msgstr "x дәрежеленетін бастапқы дәреже" #: analysis.src msgctxt "" @@ -1488,7 +1488,7 @@ "5\n" "string.text" msgid "The upper limit for integration" -msgstr "Интегралдаудың төменгі шекарасы" +msgstr "Интегралдаудың жоғарғы шекарасы" #: analysis.src msgctxt "" @@ -1596,7 +1596,7 @@ "1\n" "string.text" msgid "Returns the absolute value (modulus) of a complex number" -msgstr "Комплексті санның абсолютті мәнін (модулін) қайтарады" +msgstr "Комплексті санның абсолюттік мәнін (модулін) қайтарады" #: analysis.src msgctxt "" @@ -1650,7 +1650,7 @@ "1\n" "string.text" msgid "Returns a complex number raised to a real power" -msgstr "Нақты дәрежеге шығарылғын комплексті санды қайтарады" +msgstr "Нақты дәрежеге шығарылған комплексті санды қайтарады" #: analysis.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/sd/source/ui/slideshow.po libreoffice-5.3.3~rc2/translations/source/kk/sd/source/ui/slideshow.po --- libreoffice-5.3.3~rc1/translations/source/kk/sd/source/ui/slideshow.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/sd/source/ui/slideshow.po 2017-05-03 16:46:29.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: 2013-12-27 05:20+0000\n" -"Last-Translator: Baurzhan \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-21 03:52+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388121635.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492746720.000000\n" #: slideshow.src msgctxt "" @@ -68,7 +68,7 @@ "CM_PEN_MODE\n" "menuitem.text" msgid "Mouse pointer as ~Pen" -msgstr "Тышқан курсоры қарында~ш ретінде" +msgstr "Тышқан курсоры қа~лам ретінде" #: slideshow.src msgctxt "" @@ -131,7 +131,7 @@ "CM_COLOR_PEN\n" "menuitem.text" msgid "~Change pen Color..." -msgstr "Қарындаш түсін ө~згерту..." +msgstr "Қалам түсін ө~згерту..." #: slideshow.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/kk/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/kk/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/kk/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/kk/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-16 04:01+0000\n" +"PO-Revision-Date: 2017-04-28 17:25+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492315303.000000\n" +"X-POOTLE-MTIME: 1493400342.000000\n" #: dialog.src msgctxt "" @@ -729,7 +729,7 @@ "STR_STYLE_FILL_FORMAT_MODE\n" "string.text" msgid "Fill Format Mode" -msgstr "Бояу пішімінің режимі" +msgstr "Стильдік бояу" #: templdlg.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/connectivity/source/resource.po libreoffice-5.3.3~rc2/translations/source/lt/connectivity/source/resource.po --- libreoffice-5.3.3~rc1/translations/source/lt/connectivity/source/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/connectivity/source/resource.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,18 +4,18 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-06-26 11:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-21 05:32+0000\n" +"Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1435316716.000000\n" +"X-POOTLE-MTIME: 1492752761.000000\n" #: conn_error_message.src msgctxt "" @@ -457,7 +457,7 @@ "STR_CANNOT_CONVERT_STRING\n" "string.text" msgid "The string '$string$' cannot be converted using the encoding '$charset$'." -msgstr "Eilutės „$string$“ koduotės negalima pakeisti į „$charset“." +msgstr "Eilutės „$string$“ koduotės negalima pakeisti į „$charset$“." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/cui/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/lt/cui/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/lt/cui/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/cui/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-20 20:57+0000\n" +"PO-Revision-Date: 2017-04-28 20:43+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: none\n" "Language: lt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1490043474.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493412225.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -16412,7 +16412,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "Įterpti" +msgstr "Įterpti lūžį" #: textflowpage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/extensions/source/scanner.po libreoffice-5.3.3~rc2/translations/source/lt/extensions/source/scanner.po --- libreoffice-5.3.3~rc1/translations/source/lt/extensions/source/scanner.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/extensions/source/scanner.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-26 12:20+0000\n" +"PO-Revision-Date: 2017-04-21 05:34+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435321245.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492752867.000000\n" #: strings.src msgctxt "" @@ -50,4 +50,8 @@ "Vendor: %s\n" "Model: %s\n" "Type: %s" -msgstr "Įrenginys: %sPardavėjas %sModelis: %sTipas: %s" +msgstr "" +"Įrenginys: %s\n" +"Pardavėjas %s\n" +"Modelis: %s\n" +"Tipas: %s" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po libreoffice-5.3.3~rc2/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po --- libreoffice-5.3.3~rc1/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-27 18:22+0000\n" +"PO-Revision-Date: 2017-04-21 05:35+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435429377.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492752954.000000\n" #: description.xml msgctxt "" @@ -30,4 +30,4 @@ "extdesc\n" "description.text" msgid "This extension integrates into Calc and offers new Solver engines to use for optimizing nonlinear programming models.\n" -msgstr "Šis plėtinys, integruojamas į skaičiuoklę „Calc“, įdiegia naujus sprendiklio algoritmus netiesinio programavimo modeliams optimizuoti." +msgstr "Šis plėtinys, integruojamas į skaičiuoklę „Calc“, įdiegia naujus sprendiklio algoritmus netiesinio programavimo modeliams optimizuoti.\n" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/readlicense_oo/docs.po libreoffice-5.3.3~rc2/translations/source/lt/readlicense_oo/docs.po --- libreoffice-5.3.3~rc1/translations/source/lt/readlicense_oo/docs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/readlicense_oo/docs.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-08-07 08:38+0000\n" +"PO-Revision-Date: 2017-04-21 05:40+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1470559088.000000\n" +"X-POOTLE-MTIME: 1492753208.000000\n" #: readme.xrm msgctxt "" @@ -407,7 +407,7 @@ "otherinstall2\n" "readmeitem.text" msgid "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (http://en.wikipedia.org/wiki/Freedesktop.org), and is provided for installation on other Linux distributions not covered in the aforementioned instructions." -msgstr "Aplanke RPMS (arba DEBS) taip pat yra paketas „libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm“ (arba panašus). Jis skirtas visoms su „Freedesktop.org“ specifikacijomis ir (arba) rekomendacijomis (http://en.wikipedia.org/wiki/Freedesktop.org) suderinamoms „Linux“ atmainoms. Šį paketą ir reikėtų diegti visose anksčiau nepaminėtose „Linux“ atmainose." +msgstr "Aplanke RPMS (arba DEBS) taip pat yra paketas „libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm“ („libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb“ arba panašus). Jis skirtas visoms su „Freedesktop.org“ specifikacijomis ir (arba) rekomendacijomis (http://en.wikipedia.org/wiki/Freedesktop.org) suderinamoms „Linux“ atmainoms. Šį paketą ir reikėtų diegti visose anksčiau nepaminėtose „Linux“ atmainose." #: readme.xrm msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/sfx2/source/dialog.po libreoffice-5.3.3~rc2/translations/source/lt/sfx2/source/dialog.po --- libreoffice-5.3.3~rc1/translations/source/lt/sfx2/source/dialog.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/sfx2/source/dialog.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-06 09:29+0000\n" +"PO-Revision-Date: 2017-04-26 19:46+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -13,9 +13,9 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1488792584.000000\n" +"X-POOTLE-MTIME: 1493236004.000000\n" #: dialog.src msgctxt "" @@ -120,7 +120,7 @@ "ID_HIDE\n" "menuitem.text" msgid "Hide" -msgstr "Slėpimas" +msgstr "Slėpti" #: dialog.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/sw/uiconfig/swriter/ui.po libreoffice-5.3.3~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po --- libreoffice-5.3.3~rc1/translations/source/lt/sw/uiconfig/swriter/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-18 19:28+0000\n" +"PO-Revision-Date: 2017-04-26 19:46+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: none\n" "Language: lt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1489865317.000000\n" +"X-POOTLE-MTIME: 1493236011.000000\n" #: abstractdialog.ui msgctxt "" @@ -2994,7 +2994,7 @@ "label\n" "string.text" msgid "Hide" -msgstr "Slėpimas" +msgstr "Slėpti" #: editsectiondialog.ui msgctxt "" @@ -14175,7 +14175,7 @@ "label\n" "string.text" msgid "Hide" -msgstr "Slėpimas" +msgstr "Slėpti" #: sectionpage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/lt/wizards/source/formwizard.po libreoffice-5.3.3~rc2/translations/source/lt/wizards/source/formwizard.po --- libreoffice-5.3.3~rc1/translations/source/lt/wizards/source/formwizard.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/lt/wizards/source/formwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2016-10-02 14:36+0000\n" +"PO-Revision-Date: 2017-04-22 16:29+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: LANGUAGE \n" "Language: lt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1475419006.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492878554.000000\n" #: dbwizres.src msgctxt "" @@ -3362,7 +3362,7 @@ "RID_LETTERWIZARDROADMAP_START + 3\n" "string.text" msgid "Printed items" -msgstr "Išspausdinti elementai" +msgstr "Spausdintini elementai" #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/basic/source/classes.po libreoffice-5.3.3~rc2/translations/source/nl/basic/source/classes.po --- libreoffice-5.3.3~rc1/translations/source/nl/basic/source/classes.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/basic/source/classes.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-25 12:33+0200\n" -"PO-Revision-Date: 2015-12-13 07:37+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-22 06:31+0000\n" +"Last-Translator: vpanter \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449992268.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492842665.000000\n" #: sb.src msgctxt "" @@ -275,7 +275,7 @@ "ERRCODE_BASIC_READ_PAST_EOF & ERRCODE_RES_MASK\n" "string.text" msgid "Reading exceeds EOF." -msgstr "Lezen gaat over bestandseinde heen (EOF)." +msgstr "Lezen gaat over bestandseinde (EOF) heen." #: sb.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/formula/source/core/resource.po libreoffice-5.3.3~rc2/translations/source/nl/formula/source/core/resource.po --- libreoffice-5.3.3~rc1/translations/source/nl/formula/source/core/resource.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/formula/source/core/resource.po 2017-05-03 16:46:29.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: 2017-02-20 13:26+0100\n" +"POT-Creation-Date: 2017-05-03 12:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1442,6 +1442,15 @@ "SC_OPCODE_EXP_DIST\n" "string.text" msgid "EXPONDIST" +msgstr "EXPONVERD" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_EXP_DIST_MS\n" +"string.text" +msgid "EXPON.DIST" msgstr "EXPON.VERD" #: core_resource.src @@ -1451,6 +1460,15 @@ "SC_OPCODE_BINOM_DIST\n" "string.text" msgid "BINOMDIST" +msgstr "BINOMIALEVERD" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_BINOM_DIST_MS\n" +"string.text" +msgid "BINOM.DIST" msgstr "BINOMIALE.VERD" #: core_resource.src @@ -2315,6 +2333,15 @@ "SC_OPCODE_F_DIST\n" "string.text" msgid "FDIST" +msgstr "FVERDELING" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_F_DIST_LT\n" +"string.text" +msgid "F.DIST" msgstr "F.VERDELING" #: core_resource.src @@ -2702,7 +2729,7 @@ "SC_OPCODE_F_TEST\n" "string.text" msgid "FTEST" -msgstr "F.TOETS" +msgstr "FTOETS" #: core_resource.src msgctxt "" @@ -2990,7 +3017,7 @@ "SC_OPCODE_T_INV_2T\n" "string.text" msgid "T.INV.2T" -msgstr "F.INV.RECHTS" +msgstr "T.INV.2Z" #: core_resource.src msgctxt "" @@ -3008,12 +3035,30 @@ "SC_OPCODE_F_INV\n" "string.text" msgid "FINV" +msgstr "FINVERSE" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_F_INV_LT\n" +"string.text" +msgid "F.INV" msgstr "F.INVERSE" #: core_resource.src msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_F_INV_RT\n" +"string.text" +msgid "F.INV.RT" +msgstr "F.INV.RECHTS" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_CHI_TEST\n" "string.text" msgid "CHITEST" @@ -3086,6 +3131,15 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_BETA_INV_MS\n" +"string.text" +msgid "BETA.INV" +msgstr "BETA.INV" + +#: core_resource.src +msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_WEEK\n" "string.text" msgid "WEEKNUM" @@ -3287,7 +3341,7 @@ "SC_OPCODE_CHISQ_DIST_MS\n" "string.text" msgid "CHISQ.DIST" -msgstr "CHI.KWADR.VERD" +msgstr "CHIKWADR.VERD" #: core_resource.src msgctxt "" @@ -3305,7 +3359,7 @@ "SC_OPCODE_CHISQ_INV_MS\n" "string.text" msgid "CHISQ.INV" -msgstr "CHI.KWADR.INV" +msgstr "CHIKWADR.INV" #: core_resource.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/sbasic/shared.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/sbasic/shared.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-04-13 21:49+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2017-04-24 10:23+0000\n" +"Last-Translator: kees538 \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492120148.000000\n" +"X-POOTLE-MTIME: 1493029434.000000\n" #: 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.odt on the local host in \"Windows notation\" becomes file:///C|/My%20File.odt in URL notation." -msgstr "" +msgstr "Voor de URL-notatie zijn bepaalde speciale tekens niet toegestaan. Deze worden door andere tekens vervangen of gecodeerd. Een slash (/) wordt gebruikt als padscheidingsteken. Zo wordt een bestand waarnaar in \"Windows-notatie\" verwezen wordt met C:\\My File.sxw op de lokale host, file:///C|/My%20File.sxw in URL-notatie." #: 00000003.xhp msgctxt "" @@ -10788,7 +10788,7 @@ "par_id3154012\n" "help.text" msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments." -msgstr "" +msgstr "U kunt als volgt een lijst van alle bestaande bestanden in een specifieke map genereren: Wanneer u de Dir-functie voor het eerst aanroept, specificeert u het volledige zoekpad voor de bestanden, bijvoorbeeld 'D:\\Files\\*.ods'. Is het pad juist en vindt de zoekopdracht ten minste één bestand, dan geeft de Dir-functie de naam van het eerste bestand dat met het zoekpad overeenkomt. Voor extra bestandsnamen die met het pad overeenkomen, roept u 'Dir' nogmaals op, maar zonder argumenten." #: 03020404.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/00.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/00.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2016-07-01 05:24+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-21 19:58+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467350670.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492804692.000000\n" #: 00000004.xhp msgctxt "" @@ -554,7 +554,7 @@ "28\n" "help.text" msgid "Choose Insert - Named Ranges and Expressions" -msgstr "" +msgstr "Kies Invoegen - Benoemde bereiken en expressies" #: 00000404.xhp msgctxt "" @@ -563,7 +563,7 @@ "37\n" "help.text" msgid "Choose Sheet - Link to External Data" -msgstr "" +msgstr "Kies Blad - Koppeling naar externe gegevens" #: 00000404.xhp msgctxt "" @@ -572,7 +572,7 @@ "29\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Define" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Definiëren" #: 00000404.xhp msgctxt "" @@ -590,7 +590,7 @@ "30\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Insert" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Invoegen" #: 00000404.xhp msgctxt "" @@ -599,7 +599,7 @@ "31\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Create" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Maken" #: 00000404.xhp msgctxt "" @@ -608,7 +608,7 @@ "32\n" "help.text" msgid "Choose Sheet - Named Ranges and Expressions - Labels" -msgstr "" +msgstr "Kies Blad - Benoemde bereiken en expressies - Labels" #: 00000405.xhp msgctxt "" @@ -1051,7 +1051,7 @@ "par_id3149020\n" "help.text" msgid "Choose Tools - Protect Sheet" -msgstr "" +msgstr "Kies Extra - Blad beveiligen" #: 00000406.xhp msgctxt "" @@ -1059,7 +1059,7 @@ "par_id3154256\n" "help.text" msgid "Choose Tools - Protect Spreadsheet" -msgstr "" +msgstr "Kies Extra - Werkblad beveiligen" #: 00000406.xhp msgctxt "" @@ -1135,7 +1135,7 @@ "par_id3153663\n" "help.text" msgid "Choose View - Freeze Cells - Freeze Rows and Columns" -msgstr "" +msgstr "Kies Beeld - Cellen vastzetten - Rijen en kolommen vastzetten" #: 00000412.xhp msgctxt "" @@ -1714,7 +1714,7 @@ "par_id3149095\n" "help.text" msgid "Choose Sheet - Insert Page Break" -msgstr "" +msgstr "Kies Blad - Pagina einde invoegen" #: sheet_menu.xhp msgctxt "" @@ -1722,7 +1722,7 @@ "par_id3149398\n" "help.text" msgid "Choose Sheet - Insert Page Break - Row Break" -msgstr "" +msgstr "Kies Blad - Pagina einde invoegen - Rijeinde" #: sheet_menu.xhp msgctxt "" @@ -1730,7 +1730,7 @@ "par_id3150084\n" "help.text" msgid "Choose Sheet - Insert Page Break - Column Break" -msgstr "" +msgstr "Kies Blad - Pagina einde invoegen - Kolomeinde" #: sheet_menu.xhp msgctxt "" @@ -1738,7 +1738,7 @@ "par_id3153093\n" "help.text" msgid "Choose Sheet - Delete Page Break" -msgstr "" +msgstr "Kies Blad - Pagina einde verwijderen" #: sheet_menu.xhp msgctxt "" @@ -1746,7 +1746,7 @@ "par_id3153191\n" "help.text" msgid "Choose Sheet - Delete Page Break - Row Break" -msgstr "" +msgstr "Kies Blad - Pagina einde verwijderen - Rijeinde" #: sheet_menu.xhp msgctxt "" @@ -1754,4 +1754,4 @@ "par_id3145645\n" "help.text" msgid "Choose Sheet - Delete Page Break - Column Break" -msgstr "" +msgstr "Kies Blad - Pagina einde verwijderen - Kolomeinde" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-13 21:53+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2017-05-03 09:28+0000\n" +"Last-Translator: Cor Nouws \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492120416.000000\n" +"X-POOTLE-MTIME: 1493803683.000000\n" #: 01120000.xhp msgctxt "" @@ -139,7 +139,7 @@ "5\n" "help.text" msgid "Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row." -msgstr "" +msgstr "Voer de kolomletter in. Druk op de Enter-toets om de celcursor in de gespecificeerde kolom van dezelfde rij te plaatsen." #: 02110000.xhp msgctxt "" @@ -157,7 +157,7 @@ "7\n" "help.text" msgid "Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column." -msgstr "" +msgstr "Voer het rijcijfer in. Druk op de Enter-toets om de celcursor in de gespecificeerde rij van dezelfde kolom te plaatsen." #: 02110000.xhp msgctxt "" @@ -175,7 +175,7 @@ "10\n" "help.text" msgid "Specifies the current data range denoted by the position of the cell cursor." -msgstr "" +msgstr "Specificeert het huidige gegevens bereik, zoals aangegeven door de positie van de cel cursor." #: 02110000.xhp msgctxt "" @@ -210,7 +210,7 @@ "16\n" "help.text" msgid "Moves to the cell at the beginning of the current data range, which you can highlight using the Data Range button." -msgstr "" +msgstr "Verplaatst naar de cel naar het begin van het huidige gegevensbereik, welke u kunt markeren met de knop Gegevensbereik." #: 02110000.xhp msgctxt "" @@ -245,7 +245,7 @@ "19\n" "help.text" msgid "Moves to the cell at the end of the current data range, which you can highlight using the Data Range button." -msgstr "" +msgstr "Verplaatst naar de cel naar het einde van het huidige gegevensbereik, welke u kunt markeren met de knop Gegevensbereik." #: 02110000.xhp msgctxt "" @@ -280,7 +280,7 @@ "22\n" "help.text" msgid "Toggles the content view. Only the selected Navigator element and its subelements are displayed. Click the icon again to restore all elements for viewing." -msgstr "" +msgstr "Klik hier om de inhoudsopgave om te schakelen. Alleen het geselecteerde Navigatorelement en zijn subelementen zullen worden weergegeven. Klik nogmaals op dit pictogram om alle elementen weer te geven." #: 02110000.xhp msgctxt "" @@ -315,7 +315,7 @@ "13\n" "help.text" msgid "Allows you to hide/show the contents." -msgstr "" +msgstr "Laat toe om de inhoud te verbergen/tonen." #: 02110000.xhp msgctxt "" @@ -350,7 +350,7 @@ "25\n" "help.text" msgid "Displays all available scenarios. Double-click a name to apply that scenario. The result is shown in the sheet. For more information, choose Tools - Scenarios." -msgstr "" +msgstr "Toont alle beschikbare scenario's w. Dubbelklik op een naam om het scenario uit te voeren. Het resultaat van uw keuze wordt weergegeven in het blad. Voor meer informatie, kies Extra - Scenario's." #: 02110000.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 "" +msgstr "Opent een submenu waarin u de sleepmodus kunt selecteren. U kunt beslissen welke actie er wordt uitgevoerd wanneer u een object uit de Navigator in een document sleept. Het picotogram geeft aan of er een hyperlink, koppeling of kopie wordt gemaakt, afhankelijk van de geselecteerde modus." #: 02110000.xhp msgctxt "" @@ -522,7 +522,7 @@ "39\n" "help.text" msgid "Displays all objects in your document." -msgstr "" +msgstr "Toont alle objecten in uw document." #: 02110000.xhp msgctxt "" @@ -540,7 +540,7 @@ "36\n" "help.text" msgid "Displays the names of all open documents. To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the Window menu." -msgstr "" +msgstr "Toont alle namen van alle geopende documenten. Om in de Navigator over te schakelen naar een ander geopend document, klikt u op de naam van het document. De status (actief, inactief) van het document wordt tussen haakjes weergegeven achter de naam. Selecteer het actieve document via het Venstermenu." #: 02120000.xhp msgctxt "" @@ -2281,7 +2281,7 @@ "par_id082520160232335032\n" "help.text" msgid "Delete cells dialog" -msgstr "" +msgstr "Dialoogvenster Cellen verwijderen" #: 02160000.xhp msgctxt "" @@ -2562,7 +2562,7 @@ "tit\n" "help.text" msgid "Delete Page Break" -msgstr "" +msgstr "Pagina einde verwijderen" #: 02190000.xhp msgctxt "" @@ -2570,7 +2570,7 @@ "hd_id3150541\n" "help.text" msgid "Delete Page Break" -msgstr "" +msgstr "Page einde verwijderen" #: 02190000.xhp msgctxt "" @@ -2620,7 +2620,7 @@ "par_id3151041\n" "help.text" msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose Sheet - Delete Page Break - Row Break. The manual row break is removed." -msgstr "" +msgstr "Plaats de cursor in een cel direct onder het rij-einde, aangegeven door een horizontale lijn en kies Bewerken - Pagina einde verwijderen - Rij-einde. Het handmatig ingevoegde rij-einde wordt verwijderd." #: 02190200.xhp msgctxt "" @@ -2662,7 +2662,7 @@ "par_id3145173\n" "help.text" msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose Sheet - Delete Page Break - Column Break. The manual column break is removed." -msgstr "" +msgstr "Plaats de cursor in de cel rechts van het kolomeinde aangegeven door een verticale lijn en kies Bewerken - Pagina einde verwijderen - Kolomeinde. Het handmatig ingevoegde kolomeinde wordt verwijderd." #: 02200000.xhp msgctxt "" @@ -2810,7 +2810,7 @@ "par_id3154366\n" "help.text" msgid "Displays cell contents in different colors, depending on type." -msgstr "Geeft celinhoud in verschillende kleuren weer, afhankelijk van het type." +msgstr "Geeft celinhoud in verschillende kleuren weer, afhankelijk van het type." #: 03080000.xhp msgctxt "" @@ -2922,7 +2922,7 @@ "hd_id3154731\n" "help.text" msgid "Delete Page Breaks" -msgstr "" +msgstr "Pagina-einde verwijderen" #: 03100000.xhp msgctxt "" @@ -2954,7 +2954,7 @@ "tit\n" "help.text" msgid "Insert Page Break" -msgstr "" +msgstr "Pagina-einde invoegen" #: 04010000.xhp msgctxt "" @@ -2971,7 +2971,7 @@ "1\n" "help.text" msgid "Insert Page Break" -msgstr "" +msgstr "Pagina-einde invoegen" #: 04010000.xhp msgctxt "" @@ -2988,7 +2988,7 @@ "par_id3155133\n" "help.text" msgid "Choose Sheet - Delete Page Break to remove breaks created manually." -msgstr "" +msgstr "Kies Blad - Pagina-einde verwijderen om de aangemaakt pagina-einden handmatig te verwijderen." #: 04010100.xhp msgctxt "" @@ -4034,7 +4034,7 @@ "16\n" "help.text" msgid "Functions by Category" -msgstr "" +msgstr "Functies per categorie" #: 04060100.xhp msgctxt "" @@ -4151,7 +4151,7 @@ "14\n" "help.text" msgid "Operators" -msgstr "" +msgstr "Operatoren" #: 04060101.xhp msgctxt "" @@ -4499,7 +4499,7 @@ "86\n" "help.text" msgid "DatabaseField specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. For the DatabaseField parameter you can enter a reference to a header cell or a number to specify the column within the Database area, starting with 1. To reference a column by means of the literal column header name, place quotation marks around the header name." -msgstr "" +msgstr "Databaseveld specificeert de kolom waar de functie op zal werken nadat de zoekcriteria van de eerste parameter zijn toegewezen en de gegevensrijen zijn geselecteerd. Het is niet aan de zoekcriteria zelf gerelateerd. Gebruik het getal 0 om het gehele gegevensbereik te specificeren. Plaats aanhalingstekens rondom de naam van de koprij om naar een kolom te verwijzen met behulp van de naam van de koprij. " #: 04060101.xhp msgctxt "" @@ -4578,7 +4578,7 @@ "187\n" "help.text" msgid "If the DatabaseField argument is omitted, DCOUNT returns the count of all records that satisfy Criteria. " -msgstr "" +msgstr "Als het Databaseveld argument wordt overgeslagen, geeft DCOUNT het aantal terug van alle records die voldoen aan het criterium. " #: 04060101.xhp msgctxt "" @@ -4667,7 +4667,7 @@ "189\n" "help.text" msgid "If the DatabaseField argument is omitted, DCOUNTA returns the count of all records that satisfy Criteria. " -msgstr "" +msgstr "Als het Databaseveld argument wordt overgeslagen, geeft DBAANTALC het aantal terug van alle records die voldoen aan het criterium. " #: 04060101.xhp msgctxt "" @@ -5510,7 +5510,7 @@ "bm_id3154536\n" "help.text" msgid "date and time functions functions; date & time Function Wizard; date & time" -msgstr "" +msgstr "datum en tijd functies functies; datum en tijd Functie-assistent; datum en tijd" #: 04060102.xhp msgctxt "" @@ -5518,7 +5518,7 @@ "hd_id3154536\n" "help.text" msgid "Date & Time Functions" -msgstr "" +msgstr "Datum- en tijdfuncties" #: 04060102.xhp msgctxt "" @@ -5526,7 +5526,7 @@ "par_id3153973\n" "help.text" msgid "These spreadsheet functions are used for inserting and editing dates and times. " -msgstr "" +msgstr "Deze functies worden gebruikt voor het invoegen en bewerken van datums en tijden." #: 04060102.xhp msgctxt "" @@ -5542,7 +5542,7 @@ "par_id3150437\n" "help.text" msgid "$[officename] internally handles a date/time value as a numerical value. If you assign the numbering format \"Number\" to a date or time value, it is converted to a number. For example, 01/01/2000 12:00 PM, converts to 36526.5. The value preceding the decimal point corresponds to the date; the value following the decimal point corresponds to the time. If you do not want to see this type of numerical date or time representation, change the number format (date or time) accordingly. To do this, select the cell containing the date or time value, call its context menu and select Format Cells. The Numbers tab page contains the functions for defining the number format." -msgstr "" +msgstr "$[officename] behandelt de datum/tijdwaarden intern als een numerieke waarde. Als u de numerieke opmaak \"Getal\" aan een datum- of tijdwaarde toewijst, zal bijvoorbeeld 01/01/2000 12:00 PM worden omgezet in 36526,5. De waarde die aan de komma voorafgaat komt overeen met de datum; de waarde achter de komma komt overeen met de tijd. Als u deze numerieke weergave van een datum of tijd niet wil zien moet u de getalnotatie wijzigen in een datum- of tijdweergave. Teneinde dit te doen selecteert u de cel die de datum- of tijdwaarde bevat, roep dan het contextmenu op en selecteer Cellen opmaken. Het tabblad Getallen bevat de functies voor het definiëren van de getalnotatie." #: 04060102.xhp msgctxt "" @@ -5654,7 +5654,7 @@ "par_id3149720\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 "" +msgstr "In %PRODUCTNAME - VoorkeurenExtra - Opties - $[officename] - Algemeen vindt u het gebied Jaar (twee cijfers). Dit stelt de periode in waarvoor de tweecijferige informatie van toepassing is. Merk op dat aanpassingen die hier worden gemaakt gevolgen hebben voor sommige van de volgende functies." #: 04060102.xhp msgctxt "" @@ -5662,7 +5662,7 @@ "par_id3150654\n" "help.text" msgid "When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, \"1954-07-20\". Avoid using locale dependent date formats such as \"07/20/54\", the calculation may produce errors if the document is loaded under different locale settings." -msgstr "" +msgstr "Wanneer datums onderdeel van een formule zijn, worden schuine strepen of koppeltekens als scheidingstekens gebruikt. Daarom worden datums, die in deze opmaak worden ingevoerd, niet als datums herkend en leidt dit tot foutieve onderdeel van de formule geïnterpreteerd worden. Bijvoorbeeld DATUM(1954;7;20) of plaats de datum tussen aanhalingstekens volgens de ISO 8601-notatie, bijvoorbeeld \"1954-07-20\". Vermijd het gebruik van locale afhankelijke datum formaten zoals \"07/20/54\". De berekening kan fouten opleveren als het document geladen wordt met andere locale instellingen." #: 04060102.xhp msgctxt "" @@ -5678,7 +5678,7 @@ "par_id231020162315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060102.xhp msgctxt "" @@ -5686,7 +5686,7 @@ "par_id231020163315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -7702,7 +7702,7 @@ "par_idN10E621\n" "help.text" msgid "If the payments take place at irregular intervals, use the XIRR function." -msgstr "" +msgstr "Gebruik de functie XIRR, als de betalingen op onregelmatige basis plaatsvinden." #: 04060103.xhp msgctxt "" @@ -10129,7 +10129,7 @@ "par_id3150245\n" "help.text" msgid "=CELL(\"ADDRESS\";'X:\\dr\\test.ods'#$Sheet1.D2) returns 'file:///X:/dr/test.ods'#$Sheet1.$D$2." -msgstr "" +msgstr "=CEL(\"ADRES\";'X:\\dr\\test.sxc'#$Blad1.D2) geeft 'file:///X:/dr/test.sxc'#$Blad1.$D$2 terug." #: 04060104.xhp msgctxt "" @@ -10153,7 +10153,7 @@ "par_id3148896\n" "help.text" msgid "=CELL(\"FILENAME\";D2) returns 'file:///X:/dr/own.ods'#$Sheet1, if the formula in the current document X:\\dr\\own.ods is located in Sheet1." -msgstr "" +msgstr "=CEL(\"FILENAME\";D2) geeft 'file:///X:/dr/own.sxc'#$Blad1 terug als de formule in het huidige document X:\\dr\\own.sxc aanwezig is op Blad1." #: 04060104.xhp msgctxt "" @@ -10161,7 +10161,7 @@ "par_id3155144\n" "help.text" msgid "=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2) returns 'file:///X:/dr/test.ods'#$Sheet1." -msgstr "" +msgstr "=CELL(\"FILENAME\";'X:\\dr\\test.ods'#$Sheet1.D2) geeft 'file:///X:/dr/test.ods'#$Blad1 terug." #: 04060104.xhp msgctxt "" @@ -10177,7 +10177,7 @@ "par_id3151004\n" "help.text" msgid "Returns the complete cell address in Lotus™ notation." -msgstr "" +msgstr "Geeft het volledige celadres in Lotus™-notatie." #: 04060104.xhp msgctxt "" @@ -12919,7 +12919,7 @@ "bm_id3151221\n" "help.text" msgid "GCD_EXCEL2003 function" -msgstr "" +msgstr "GGD_ADD-functie" #: 04060106.xhp msgctxt "" @@ -12927,7 +12927,7 @@ "hd_id3151221\n" "help.text" msgid "GCD_EXCEL2003" -msgstr "" +msgstr "GCD_EXCEL2003" #: 04060106.xhp msgctxt "" @@ -12951,7 +12951,7 @@ "par_id3156205\n" "help.text" msgid "GCD_EXCEL2003(Number(s))" -msgstr "" +msgstr "GCD_EXCEL2003(Getal(len))" #: 04060106.xhp msgctxt "" @@ -12975,7 +12975,7 @@ "par_id3159192\n" "help.text" msgid "=GCD_EXCEL2003(5;15;25) returns 5." -msgstr "" +msgstr "=GCD_EXCEL2003(5;15;25) geeft 5 terug." #: 04060106.xhp msgctxt "" @@ -13047,7 +13047,7 @@ "bm_id3154230\n" "help.text" msgid "LCM_EXCEL2003 function" -msgstr "" +msgstr "LCM_EXCEL2003-functie" #: 04060106.xhp msgctxt "" @@ -13055,7 +13055,7 @@ "hd_id3154230\n" "help.text" msgid "LCM_EXCEL2003" -msgstr "" +msgstr "LCM_EXCEL2003" #: 04060106.xhp msgctxt "" @@ -13079,7 +13079,7 @@ "par_id3154395\n" "help.text" msgid "LCM_EXCEL2003(Number(s))" -msgstr "" +msgstr "LCM_EXCEL2003(Getal(len))" #: 04060106.xhp msgctxt "" @@ -13103,7 +13103,7 @@ "par_id3145135\n" "help.text" msgid "=LCM_EXCEL2003(5;15;25) returns 75." -msgstr "" +msgstr "=LCM_EXCEL2003(5;15;25) geeft 75 terug." #: 04060106.xhp msgctxt "" @@ -13647,7 +13647,7 @@ "par_id3155020\n" "help.text" msgid "Mode is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded away from zero. If the Mode value is equal to zero or is not given, negative numbers are rounded towards zero." -msgstr "" +msgstr "Modus is een optionele waarde. Als de waarde voor Modus ingevuld is en niet nul is en als Getal en Significantie negatief zijn, dan wordt de afronding gebaseerd op de absolute waarde van Getal, dat wil zeggen dat negatieve getallen van nul af afgerond worden. Als de waarde voor Modus nul of niet ingevuld is, worden negatieve getallen naar nul toe afgerond." #: 04060106.xhp msgctxt "" @@ -16103,7 +16103,7 @@ "par_id3157517\n" "help.text" msgid "Mode is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded towards zero. If the Mode value is equal to zero or is not given, negative numbers are rounded away from zero." -msgstr "" +msgstr "Modus is een optionele waarde. Als de waarde voor Modus ingevuld is en niet nul is en als Getal en Significantie negatief zijn, dan wordt de afronding gebaseerd op de absolute waarde van Getal, dat wil zeggen dat negatieve getallen van nul af afgerond worden. Als de waarde voor Modus nul of niet ingevuld is, worden negatieve getallen naar nul toe afgerond." #: 04060106.xhp msgctxt "" @@ -17303,7 +17303,7 @@ "par_idN10DD0\n" "help.text" msgid "The following functions provide forced array handling: CORREL, COVAR, FORECAST, FTEST, INTERCEPT, MDETERM, MINVERSE, MMULT, MODE, PEARSON, PROB, RSQ, SLOPE, STEYX, SUMPRODUCT, SUMX2MY2, SUMX2PY2, SUMXMY2, TTEST. If you use area references as arguments when you call one of these functions, the functions behave as array functions. The following table provides an example of forced array handling:" -msgstr "De volgende functies bieden afgedwongen matrixverwerking: CORRELATIE, COVARIANTIE, VOORSPELLEN, F.TOETS, SNIJPUNT, DETERMINANT.MAT, INVERSEMAT, PRODUCTMAT, MODUS, PEARSON, KANS, R.KWADRAAT, STIJGING, STFOUTYX, SOMPRODUCT, SOM.X2MINY2, SOM.X2PLUSY2, SOM.XMINY.2, T.TOETS. Als u gebiedsverwijzingen als argumenten gebruikt wanneer u een van de functies aanroept, gedragen ze zich als matrixfuncties. In de volgende tabel vindt u een voorbeeld van afgedwongen matrixverwerking:" +msgstr "De volgende functies bieden afgedwongen matrixverwerking: CORRELATIE, COVARIANTIE, VOORSPELLEN, FTOETS, SNIJPUNT, DETERMINANT.MAT, INVERSEMAT, PRODUCTMAT, MODUS, PEARSON, KANS, R.KWADRAAT, STIJGING, STFOUTYX, SOMPRODUCT, SOM.X2MINY2, SOM.X2PLUSY2, SOM.XMINY.2, TTOETS. Als u gebiedsverwijzingen als argumenten gebruikt wanneer u een van de functies aanroept, gedragen ze zich als matrixfuncties. In de volgende tabel vindt u een voorbeeld van afgedwongen matrixverwerking:" #: 04060107.xhp msgctxt "" @@ -18015,7 +18015,7 @@ "par_idN11635\n" "help.text" msgid "You can find a general introduction to using Array functions on top of this page." -msgstr "" +msgstr "Boven aan deze pagina vindt u een algemene inleiding tot het gebruik van matrixfuncties." #: 04060107.xhp msgctxt "" @@ -18239,7 +18239,7 @@ "par_id3166145\n" "help.text" msgid "TRANSPOSE(A1:D2)" -msgstr "" +msgstr "TRANSPOSE(A1:D2)" #: 04060107.xhp msgctxt "" @@ -18319,7 +18319,7 @@ "par_id3154448\n" "help.text" msgid "If linearType is FALSE the straight line found is forced to pass through the origin (the constant a is zero; y = bx). If omitted, linearType defaults to TRUE (the line is not forced through the origin)." -msgstr "" +msgstr "Als Lineairtype ONWAAR is wordt de gevonden rechte lijn gedwongen door het punt van oorsprong te gaan (de constante a is nul; y = bx). Indien weggelaten, gaat Lineairtype standaard naar WAAR (de lijn wordt niet gedwongen dor het punt van oorsprong te gaan)." #: 04060107.xhp msgctxt "" @@ -18327,7 +18327,7 @@ "par_id3154142\n" "help.text" msgid "If stats is omitted or FALSE only the top line of the statistics table is returned. If TRUE the entire table is returned." -msgstr "" +msgstr "Als Statistieken wordt weggelaten of ONWAAR is wordt alleen de bovenste lijn van de tabel met statistieken teruggegeven. Indien WAAR wordt de gehele tabel teruggegeven." #: 04060107.xhp msgctxt "" @@ -19680,7 +19680,7 @@ "1\n" "help.text" msgid "Statistics Functions" -msgstr "" +msgstr "Statistische functies" #: 04060108.xhp msgctxt "" @@ -20456,7 +20456,7 @@ "36\n" "help.text" msgid "=DDE(\"soffice\";\"c:\\office\\document\\data1.ods\";\"sheet1.A1\") reads the contents of cell A1 in sheet1 of the %PRODUCTNAME Calc spreadsheet data1.ods." -msgstr "" +msgstr "=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"blad1.A1\") leest de inhoud van cel A1 in blad1 van het %PRODUCTNAME Calc-werkblad data1.sxc." #: 04060109.xhp msgctxt "" @@ -20465,7 +20465,7 @@ "37\n" "help.text" msgid "=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Today's motto\") returns a motto in the cell containing this formula. First, you must enter a line in the motto.odt document containing the motto text and define it as the first line of a section named Today's Motto (in %PRODUCTNAME Writer under Insert - Section). If the motto is modified (and saved) in the %PRODUCTNAME Writer document, the motto is updated in all %PRODUCTNAME Calc cells in which this DDE link is defined." -msgstr "" +msgstr "=DDE(\"soffice\";\"c:\\office\\document\\motto.odt\";\"Motto van vandaag\") geeft een motto terug in de cel die deze formule bevat. Eerst moet u een regel invoeren in het document motto.odt dat de tekst van het motto bevat en het definiëren als de eerste regel van een sectie genaamd Motto van vandaag (in %PRODUCTNAME Writer onder Invoegen - Sectie). Als het motto is aangepast (en opgeslagen) in het %PRODUCTNAME Writerdocument wordt het motto bijgewerkt in alle cellen van %PRODUCTNAME Calc waarin deze DDE-koppeling is gedefiniëerd." #: 04060109.xhp msgctxt "" @@ -20652,7 +20652,7 @@ "57\n" "help.text" msgid "=INDEX(SumX;4;1) returns the value from the range SumX in row 4 and column 1 as defined in Sheet - Named Ranges and Expressions - Define." -msgstr "" +msgstr "=INDEX(SomX;4;1) geeft de waarde uit het bereik SomX in rij 4 en kolom 1 zoals gedefiniëerd in Blad - Namen - Definiëren." #: 04060109.xhp msgctxt "" @@ -20677,7 +20677,7 @@ "58\n" "help.text" msgid "=INDEX((multi);4;1) indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under Sheet - Named Ranges and Expressions - Define as multi. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number 2 as the range parameter." -msgstr "" +msgstr "=INDEX((multi);4;1) geeft de waarde aan die rij 4 en kolom 1 van het (meervoudige) bereik bevat, die u hebt genoemd onder Blad - Namen - Definiëren als multi. Het meervoudige bereik kan bestaan uit verschillende rechthoekige bereiken, elk met een rij 4 en kolom 1. Als u nu het tweede blok van dit meervoudige bereik wilt aanroepen voer dan het nummer 2 in als de reeksparameter." #: 04060109.xhp msgctxt "" @@ -21030,7 +21030,7 @@ "88\n" "help.text" msgid "Vertical search with reference to adjacent cells to the right. This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by Index. If the Sorted parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact SearchCriterion is not found, the last value that is smaller than the criterion will be returned. If Sorted is set to FALSE or zero, an exact match must be found, otherwise the error Error: Value Not Available will be the result. Thus with a value of zero the data does not need to be sorted in ascending order." -msgstr "" +msgstr "Verticaal zoeken met verwijzing naar de aanliggende cellen aan de rechterzijde. Deze functie controleert of een specifieke waarde is opgenomen in de eerste kolom van een matrix. De functie geeft dan de waarde terug in dezelfde rij van de kolom die wordt genoemd bij Index. Als de parameter Sorteren wordt weggelaten of ingesteld op WAAR of één, wordt aangenomen dat de gegevens zijn gesorteerd in oplopende volgorde. In dit geval zal, als het exacte Zoekcriterium niet wordt gevonden, de laatste waarde die kleiner is dan het criterium worden teruggegeven. Als Sorteren is ingesteld op ONWAAR of nul moet een exacte overeenkomst worden gevonden, anders zal de fout FOUT: Waarde niet beschikbaar het resultaat zijn. Dus met de waarde nul behoeven de gegevens niet te zijn gesorteerd in oplopende volgorde." #: 04060109.xhp msgctxt "" @@ -21048,7 +21048,7 @@ "90\n" "help.text" msgid "=VLOOKUP(SearchCriterion; Array; Index; Sorted)" -msgstr "" +msgstr "=VERT.ZOEKEN (Zoekcriteria; Matrix; Index; Sorteervolgorde)" #: 04060109.xhp msgctxt "" @@ -21084,7 +21084,7 @@ "94\n" "help.text" msgid "Sorted is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: Error: Value Not Available." -msgstr "" +msgstr "Sorteren is een optionele parameter die aangeeft of de eerste kolom in de matrix is gesorteerd in oplopende volgorde. Voer de Booleaanse waarde ONWAAR of nul in als de eerste kolom niet is gesorteerd in oplopende volgorde. Gesorteerde kolommen kunnen veel sneller worden doorzocht en de functie geeft altijd een waarde terug, zelfs als de zoekwaarde niet exact overeenkomt, indien die tussen de hoogste en laagste waarde van de gesorteerde lijst ligt. In ongesorteerde lijsten moet de zoekwaarde exact overeenkomen. In andere gevallen zal de functie dit bericht teruggeven: Fout: Waarde niet beschikbaar." #: 04060109.xhp msgctxt "" @@ -21102,7 +21102,7 @@ "96\n" "help.text" msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains 100, E1 contains the name Vegetable Soup, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional Sorted parameter is not necessary." -msgstr "" +msgstr "U wilt het nummer van een gerecht uit het menu in cel A1 invoeren en de naam van het gerecht moet onmiddellijk als tekst verschijnen in de naastgelegen cel (B1). De toewijzing Nummer aan Naam is opgenomen in de matrix D1:E100. D1 bevat 100, E1 bevat de naam Groentensoep enzovoort, voor 100 menu-items. De getallen in kolom D zijn oplopend gesorteerd; dus, de optionele parameter Sorteren is niet nodig." #: 04060109.xhp msgctxt "" @@ -21576,7 +21576,7 @@ "124\n" "help.text" msgid "Returns the contents of a cell either from a one-row or one-column range. Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to VLOOKUP and HLOOKUP, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results." -msgstr "" +msgstr "Geeft de inhoud van een cel weer of uit een één-rij of één-kolom bereik. Optioneel wordt de toegewezen waarde (van dezelfde index) teruggegeven in een andere kolom en rij. Tegengesteld aan VERT.ZOEKEN en HORIZ.ZOEKEN mogen de zoek- en resultaatvector op verschillende posities liggen; zij hoeven niet aanliggend te zijn. Aansluitend daarop moet de zoekvector voor ZOEKEN oplopend gesorteerd zijn, anders zal de zoekactie geen bruikbare resultaten teruggeven." #: 04060109.xhp msgctxt "" @@ -21884,7 +21884,7 @@ "154\n" "help.text" msgid "HLOOKUP(SearchCriterion; Array; Index; Sorted)" -msgstr "" +msgstr "HORIZ.ZOEKEN (Zoekcriteria; Matrix; Index; Sorteren)" #: 04060109.xhp msgctxt "" @@ -21893,7 +21893,7 @@ "155\n" "help.text" msgid "See also: VLOOKUP (columns and rows are exchanged)" -msgstr "" +msgstr "Zie ook:VERT.ZOEKEN (kolommen en rijen worden omgewisseld)" #: 04060109.xhp msgctxt "" @@ -22444,7 +22444,7 @@ "1\n" "help.text" msgid "Text Functions" -msgstr "" +msgstr "Tekstfuncties" #: 04060110.xhp msgctxt "" @@ -25603,7 +25603,7 @@ "1\n" "help.text" msgid "Add-in Functions" -msgstr "" +msgstr "Invoegfuncties" #: 04060111.xhp msgctxt "" @@ -32422,7 +32422,7 @@ "par_idN10E62\n" "help.text" msgid "If the payments take place at regular intervals, use the IRR function." -msgstr "" +msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie IRR." #: 04060118.xhp msgctxt "" @@ -32662,7 +32662,7 @@ "par_id3153904\n" "help.text" msgid "Calculates the capital value (net present value) for a list of payments which take place on different dates. The calculation is based on a 365 days per year basis, ignoring leap years." -msgstr "" +msgstr "Berekent de kapitaalwaarde (netto contante waarde) voor een lijst van betalingen die op verschillende datums vallen. De berekening is gebaseerd op basis van een jaar met 365 dagen, waarbij schrikkeljaren genegeerd worden." #: 04060118.xhp msgctxt "" @@ -32670,7 +32670,7 @@ "par_idN11138\n" "help.text" msgid "If the payments take place at regular intervals, use the NPV function." -msgstr "" +msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie NVP." #: 04060118.xhp msgctxt "" @@ -32934,7 +32934,7 @@ "par_id3155586\n" "help.text" msgid "=RATE(3;-10;900) = -75.63% The interest rate is therefore 75.63%." -msgstr "" +msgstr "=KOERS(3;10;900) = -75.63% De rentekoers is daarom 75.63%." #: 04060118.xhp msgctxt "" @@ -35391,7 +35391,7 @@ "par_id3145308\n" "help.text" msgid "Returns the present value of an investment based on a series of periodic cash flows and a discount rate. To get the net present value, subtract the cost of the project (the initial cash flow at time zero) from the returned value." -msgstr "" +msgstr "Retourneert de huidige waarde van een investering op basis van een reeks periodieke cashflows en een discontovoet. Teneinde de netto huidige waarde te verkrijgen, trekt u de kosten van het project (de eerste cashflow op het tijdstip nul) van de retourwaarde af." #: 04060119.xhp msgctxt "" @@ -35399,7 +35399,7 @@ "par_idN111381\n" "help.text" msgid "If the payments take place at irregular intervals, use the XNPV function." -msgstr "" +msgstr "Als de betalingen op regelmatige basis plaatsvinden, gebruikt u functie XNVP." #: 04060119.xhp msgctxt "" @@ -37891,7 +37891,7 @@ "bm_id3156096\n" "help.text" msgid "BETADIST function cumulative probability density function;calculating" -msgstr "BÈTA.VERD-functie cumulatieve kansdichtheidsfunctie;berekenen" +msgstr "BETAVERD-functie cumulatieve kansdichtheidsfunctie;berekenen" #: 04060181.xhp msgctxt "" @@ -37899,7 +37899,7 @@ "hd_id3156096\n" "help.text" msgid "BETADIST" -msgstr "BÈTA.VERD" +msgstr "BETAVERD" #: 04060181.xhp msgctxt "" @@ -37923,7 +37923,7 @@ "par_id3147571\n" "help.text" msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)" -msgstr "BÈTA.VERD(Getal; Alfa; Bèta; Start; Einde; Cumulatief)" +msgstr "BETAVERD(Getal; Alfa; Bèta; Start; Einde; Cumulatief)" #: 04060181.xhp msgctxt "" @@ -37987,7 +37987,7 @@ "par_id3156118\n" "help.text" msgid "=BETADIST(0.75;3;4) returns the value 0.96" -msgstr "=BÈTA.VERD(0,75;3;4) geeft de waarde 0,96 terug" +msgstr "=BETAVERD(0,75;3;4) geeft de waarde 0,96 terug" #: 04060181.xhp msgctxt "" @@ -37995,7 +37995,7 @@ "bm_id2956096\n" "help.text" msgid "BETA.DIST function cumulative probability density function;calculating" -msgstr "BÈTA.VERD-functie cumulatieve kansdichtheidsfunctie;berekenen" +msgstr "BETA.VERD-functie cumulatieve kansdichtheidsfunctie;berekenen" #: 04060181.xhp msgctxt "" @@ -38027,7 +38027,7 @@ "par_id2947571\n" "help.text" msgid "BETA.DIST(Number; Alpha; Beta; Cumulative; Start; End)" -msgstr "BÈTA.VERD(Getal; Alfa; Bèta; Cumulatieve; Start; Einde)" +msgstr "BETA.VERD(Getal; Alfa; Bèta; Cumulatieve; Start; Einde)" #: 04060181.xhp msgctxt "" @@ -38091,7 +38091,7 @@ "par_id2956118\n" "help.text" msgid "=BETA.DIST(2;8;10;1;1;3) returns the value 0.6854706" -msgstr "=BÈTA.VERD(2;8;10;1;1;3) geeft de waarde 0,6854706 terug" +msgstr "=BETA.VERD(2;8;10;1;1;3) geeft de waarde 0,6854706 terug" #: 04060181.xhp msgctxt "" @@ -38099,7 +38099,7 @@ "par_id2956119\n" "help.text" msgid "=BETA.DIST(2;8;10;0;1;3) returns the value 1.4837646" -msgstr "=BÈTA.VERD(2;8;10;0;1;) geeft de waarde 1,4837646 terug" +msgstr "=BETA.VERD(2;8;10;0;1;) geeft de waarde 1,4837646 terug" #: 04060181.xhp msgctxt "" @@ -38107,7 +38107,7 @@ "bm_id3143228\n" "help.text" msgid "BINOMDIST function" -msgstr "BINOMIALE.VERD-functie" +msgstr "BINOMIALEVERD-functie" #: 04060181.xhp msgctxt "" @@ -38115,7 +38115,7 @@ "hd_id3143228\n" "help.text" msgid "BINOMDIST" -msgstr "BINOMIALE.VERD" +msgstr "BINOMIALEVERD" #: 04060181.xhp msgctxt "" @@ -38139,7 +38139,7 @@ "par_id3156009\n" "help.text" msgid "BINOMDIST(X; Trials; SP; C)" -msgstr "BINOMIALE.VERD(X; Experimenten; KS; C)" +msgstr "BINOMIALEVERD(X; Experimenten; KS; C)" #: 04060181.xhp msgctxt "" @@ -38187,7 +38187,7 @@ "par_id3145666\n" "help.text" msgid "=BINOMDIST(A1;12;0.5;0) shows (if the values 0 to 12 are entered in A1) the probabilities for 12 flips of a coin that Heads will come up exactly the number of times entered in A1." -msgstr "=BINOMIALE.VERD(A1;12;0,5;0) toont (als de waarden 0 tot en met 12 zijn ingevoerd in A1) de mogelijkheden voor het 12 keer opgooien van een munt waarbij Kop exact het aantal keren zal vallen als werd ingevoerd in A1." +msgstr "=BINOMIALEVERD(A1;12;0,5;0) toont (als de waarden 0 tot en met 12 zijn ingevoerd in A1) de mogelijkheden voor het 12 keer opgooien van een munt waarbij Kop exact het aantal keren zal vallen als werd ingevoerd in A1." #: 04060181.xhp msgctxt "" @@ -38195,7 +38195,7 @@ "par_id3150120\n" "help.text" msgid "=BINOMDIST(A1;12;0.5;1) shows the cumulative probabilities for the same series. For example, if A1 = 4, the cumulative probability of the series is 0, 1, 2, 3 or 4 times Heads (non-exclusive OR)." -msgstr "=BINOMIALE.VERD(A1;12;0,5;1) toont de cumulatieve kansen voor dezelfde reeksen. Als bijvoorbeeld A1 = 4 is de cumulatieve kans van de reeks 0, 1, 2, 3 of 4 keer Kop (niet-exclusieve OF)." +msgstr "=BINOMIALEVERD(A1;12;0,5;1) toont de cumulatieve kansen voor dezelfde reeksen. Als bijvoorbeeld A1 = 4 is de cumulatieve kans van de reeks 0, 1, 2, 3 of 4 keer Kop (niet-exclusieve OF)." #: 04060181.xhp msgctxt "" @@ -38299,7 +38299,7 @@ "bm_id2843228\n" "help.text" msgid "BINOM.INV function" -msgstr "BINOMIALE.VERD-functie" +msgstr "BINOMIALE.INV-functie" #: 04060181.xhp msgctxt "" @@ -38379,7 +38379,7 @@ "bm_id0119200902432928\n" "help.text" msgid "CHISQINV function" -msgstr "CHI.KWADR.INV-functie" +msgstr "CHIKWADRINV-functie" #: 04060181.xhp msgctxt "" @@ -38387,7 +38387,7 @@ "hd_id0119200902421451\n" "help.text" msgid "CHISQINV" -msgstr "CHI.KWADR.INV" +msgstr "CHIKWADRINV" #: 04060181.xhp msgctxt "" @@ -38395,7 +38395,7 @@ "par_id0119200902421449\n" "help.text" msgid "Returns the inverse of CHISQDIST." -msgstr "Geeft als resultaat de inverse van CHI.KWADR.VERD." +msgstr "Geeft als resultaat de inverse van CHIKWADRVERD." #: 04060181.xhp msgctxt "" @@ -38427,7 +38427,7 @@ "bm_id2919200902432928\n" "help.text" msgid "CHISQ.INV function" -msgstr "CHI.KWADR.INV-functie" +msgstr "CHIKWADR.INV-functie" #: 04060181.xhp msgctxt "" @@ -38435,7 +38435,7 @@ "hd_id2919200902421451\n" "help.text" msgid "CHISQ.INV" -msgstr "CHI.KWADR.INV" +msgstr "CHIKWADR.INV" #: 04060181.xhp msgctxt "" @@ -38459,7 +38459,7 @@ "par_id1150504\n" "help.text" msgid "CHISQ.INV(Probability; DegreesFreedom)" -msgstr "CHI.KWADR.INV(Waarschijnlijkheid; Vrijheidsgraden)" +msgstr "CHIKWADR.INV(Waarschijnlijkheid; Vrijheidsgraden)" #: 04060181.xhp msgctxt "" @@ -38611,7 +38611,7 @@ "bm_id2948835\n" "help.text" msgid "CHISQ.INV.RT function" -msgstr "CHI.KWADR.INV-functie" +msgstr "CHIKWADR.INV.RT-functie" #: 04060181.xhp msgctxt "" @@ -39299,7 +39299,7 @@ "hd_id2848690\n" "help.text" msgid "CHISQ.DIST" -msgstr "CHI.KWADR.VERD" +msgstr "CHIKWADR.VERD" #: 04060181.xhp msgctxt "" @@ -39323,7 +39323,7 @@ "par_id2858439\n" "help.text" msgid "CHISQ.DIST(Number; DegreesFreedom; Cumulative)" -msgstr "CHI.KWADR.VERD(Getal; Vrijheidsgraden; Cumulatief)" +msgstr "CHIKWADR.VERD(Getal; Vrijheidsgraden; Cumulatief)" #: 04060181.xhp msgctxt "" @@ -39467,7 +39467,7 @@ "bm_id0119200902231887\n" "help.text" msgid "CHISQDIST function chi-square distribution" -msgstr "CHI.KWADR.VERD-functie chi-kwadraat verdeling" +msgstr "CHIKWADRVERD-functie chi-kwadraat verdeling" #: 04060181.xhp msgctxt "" @@ -39475,7 +39475,7 @@ "hd_id0119200901583452\n" "help.text" msgid "CHISQDIST" -msgstr "CHI.KWADR.VERD" +msgstr "CHIKWADRVERD" #: 04060181.xhp msgctxt "" @@ -39499,7 +39499,7 @@ "par_id0119200902395679\n" "help.text" msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)" -msgstr "CHI.KWADR.VERD(Getal; Vrijheidsgraden; Cumulatief)" +msgstr "CHIKWADRVERD(Getal; Vrijheidsgraden; Cumulatief)" #: 04060181.xhp msgctxt "" @@ -39531,7 +39531,7 @@ "bm_id3150603\n" "help.text" msgid "EXPONDIST function exponential distributions" -msgstr "EXPON.VERD-functie exponentiële verdelingen" +msgstr "EXPONVERD-functie exponentiële verdelingen" #: 04060181.xhp msgctxt "" @@ -39539,7 +39539,7 @@ "hd_id3150603\n" "help.text" msgid "EXPONDIST" -msgstr "EXPON.VERD" +msgstr "EXPONVERD" #: 04060181.xhp msgctxt "" @@ -39563,7 +39563,7 @@ "par_id3150987\n" "help.text" msgid "EXPONDIST(Number; Lambda; C)" -msgstr "EXPON.VERD(Getal; Lambda; C)" +msgstr "EXPONVERD(Getal; Lambda; C)" #: 04060181.xhp msgctxt "" @@ -39603,7 +39603,7 @@ "par_id3150357\n" "help.text" msgid "=EXPONDIST(3;0.5;1) returns 0.78." -msgstr "=EXPON.VERD(3;0,5;1) geeft 0,78 terug." +msgstr "=EXPONVERD(3;0,5;1) geeft 0,78 terug." #: 04060181.xhp msgctxt "" @@ -39708,7 +39708,7 @@ "bm_id3145388\n" "help.text" msgid "FINV function inverse F probability distribution" -msgstr "F.INVERSE-functie inverse F-kansverdeling" +msgstr "FINVERSE-functie inverse F-kansverdeling" #: 04060182.xhp msgctxt "" @@ -39717,7 +39717,7 @@ "2\n" "help.text" msgid "FINV" -msgstr "F.INVERSE" +msgstr "FINVERSE" #: 04060182.xhp msgctxt "" @@ -39744,7 +39744,7 @@ "5\n" "help.text" msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "F.INVERSE(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" +msgstr "FINVERSE(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" #: 04060182.xhp msgctxt "" @@ -39789,7 +39789,7 @@ "10\n" "help.text" msgid "=FINV(0.5;5;10) yields 0.93." -msgstr "=F.INVERSE(0,5;5;10) levert 0,93 op." +msgstr "=FINVERSE(0,5;5;10) levert 0,93 op." #: 04060182.xhp msgctxt "" @@ -40117,7 +40117,7 @@ "bm_id3151390\n" "help.text" msgid "FTEST function" -msgstr "F.TOETS-functie" +msgstr "FTOETS-functie" #: 04060182.xhp msgctxt "" @@ -40126,7 +40126,7 @@ "28\n" "help.text" msgid "FTEST" -msgstr "F.TOETS" +msgstr "FTOETS" #: 04060182.xhp msgctxt "" @@ -40153,7 +40153,7 @@ "31\n" "help.text" msgid "FTEST(Data1; Data2)" -msgstr "F.TOETS(Gegevens1; Gegevens2)" +msgstr "FTOETS(Gegevens1; Gegevens2)" #: 04060182.xhp msgctxt "" @@ -40189,7 +40189,7 @@ "35\n" "help.text" msgid "=FTEST(A1:A30;B1:B12) calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population." -msgstr "=F.TOETS(A1:A30;B1:B12) berekent of de twee gegevensverzamelingen verschillend zijn in hun variantie en geeft de waarschijnlijkheid terug die beide verzamelingen zouden kunnen hebben uit dezelfde totale populatie." +msgstr "=FTOETS(A1:A30;B1:B12) berekent of de twee gegevensverzamelingen verschillend zijn in hun variantie en geeft de waarschijnlijkheid terug die beide verzamelingen zouden kunnen hebben uit dezelfde totale populatie." #: 04060182.xhp msgctxt "" @@ -40277,7 +40277,7 @@ "bm_id3150372\n" "help.text" msgid "FDIST function" -msgstr "F.VERDELING-functie" +msgstr "FVERDELING-functie" #: 04060182.xhp msgctxt "" @@ -40286,7 +40286,7 @@ "37\n" "help.text" msgid "FDIST" -msgstr "F.VERDELING" +msgstr "FVERDELING" #: 04060182.xhp msgctxt "" @@ -40313,7 +40313,7 @@ "40\n" "help.text" msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "F.VERDELING(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" +msgstr "FVERDELING(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" #: 04060182.xhp msgctxt "" @@ -40358,7 +40358,7 @@ "45\n" "help.text" msgid "=FDIST(0.8;8;12) yields 0.61." -msgstr "=F.VERDELING(0,8;8;12) levert 0,61 op." +msgstr "=FVERDELING(0,8;8;12) levert 0,61 op." #: 04060182.xhp msgctxt "" @@ -40473,7 +40473,7 @@ "bm_id2850372\n" "help.text" msgid "F.DIST.RT function" -msgstr "F.VERDELING-functie" +msgstr "F.VERDELING.RT-functie" #: 04060182.xhp msgctxt "" @@ -40509,7 +40509,7 @@ "40\n" "help.text" msgid "F.DIST.RT(Number; DegreesFreedom1; DegreesFreedom2)" -msgstr "F.VERDELING(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" +msgstr "F.VERDELING.RT(Getal; Vrijheidsgraden1; Vrijheidsgraden2)" #: 04060182.xhp msgctxt "" @@ -40554,7 +40554,7 @@ "45\n" "help.text" msgid "=F.DIST.RT(0.8;8;12) yields 0.6143396437." -msgstr "=F.VERDELING(0,8;8;12) levert 0,61 op." +msgstr "=F.VERDELING.RT(0,8;8;12) levert 0,61 op." #: 04060182.xhp msgctxt "" @@ -43057,7 +43057,7 @@ "77\n" "help.text" msgid "Returns the values of a lognormal distribution." -msgstr "Geeft de waarden van een lognormale verdeling als resultaat." +msgstr "Geeft de waarden van een lognormale verdeling als resultaat." #: 04060183.xhp msgctxt "" @@ -43692,7 +43692,7 @@ "39\n" "help.text" msgid "Number1; Number2;...Number30 are numerical values or ranges." -msgstr "" +msgstr "Getal1, Getal2,...Getal30 zijn numerieke waarden of bereiken." #: 04060184.xhp msgctxt "" @@ -44020,7 +44020,7 @@ "bm_id3149879\n" "help.text" msgid "NEGBINOMDIST functionnegative binomial distribution" -msgstr "NEG.BINOM.VERD-functienegatieve binomiale verdeling" +msgstr "NEGBINOMVERD-functienegatieve binomiale verdeling" #: 04060184.xhp msgctxt "" @@ -44109,7 +44109,7 @@ "bm_id2949879\n" "help.text" msgid "NEGBINOM.DIST functionnegative binomial distribution" -msgstr "NEG.BINOM.VERD-functienegatieve binomiale verdeling" +msgstr "NEGBINOM.VERD-functienegatieve binomiale verdeling" #: 04060184.xhp msgctxt "" @@ -49848,7 +49848,7 @@ "tit\n" "help.text" msgid "Named Ranges and Expressions" -msgstr "" +msgstr "Benoemde bereiken en expressies" #: 04070000.xhp msgctxt "" @@ -49857,7 +49857,7 @@ "1\n" "help.text" msgid "Named Ranges and Expressions" -msgstr "" +msgstr "Benoemde bereiken en expressies" #: 04070000.xhp msgctxt "" @@ -50512,7 +50512,7 @@ "par_id3151118\n" "help.text" msgid "Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document. The Function List deck is similar to the Functions tab page of the Function Wizard. The functions are inserted with placeholders to be replaced with your own values." -msgstr "Deze opdracht opent het venster Functielijst met alle functies die u in uw document kunt invoegen. Het venster Functielijst lijkt op het tabblad Functies van de Functie-Assistent. De functies worden met tijdelijke aanduidingen ingevoegd die moeten worden vervangen door uw eigen waarden." +msgstr "Deze opdracht opent het venster Functielijst met alle functies die u in uw document kunt invoegen. Het venster Functielijst lijkt op het tabblad Functies van de Functie-Assistent. De functies worden met tijdelijke aanduidingen ingevoegd die moeten worden vervangen door uw eigen waarden." #: 04080000.xhp msgctxt "" @@ -50544,7 +50544,7 @@ "par_id3149412\n" "help.text" msgid "Displays the available functions. When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the Insert Function into calculation sheet icon." -msgstr "" +msgstr "Geeft de functies van de geselecteerde categorie weer. Wanneer u een functie selecteert geeft het gebied onder het functievenster een korte beschrijving van deze functie weer. Teneinde de geselecteerde functie in het document toe te passen hoeft u er alleen maar op te dubbelklikken of klik op het pictogram Functie invoegen in blad." #: 04080000.xhp msgctxt "" @@ -50568,7 +50568,7 @@ "par_id3147345\n" "help.text" msgid "Inserts the selected function into the document." -msgstr "" +msgstr "Voegt de geselecteerde functie in het document in." #: 04090000.xhp msgctxt "" @@ -50788,7 +50788,7 @@ "par_id3156283\n" "help.text" msgid "This cell protection only takes effect if you also protect the sheet (Tools - Protect Sheet)." -msgstr "" +msgstr "Deze celbeveiling wordt actief als u het blad ook beveiligt (Extra - Werkblad beveiligen)." #: 05020600.xhp msgctxt "" @@ -51475,7 +51475,7 @@ "par_id1001240\n" "help.text" msgid "Three options are available:" -msgstr "" +msgstr "Er zijn drie opties beschikbaar:" #: 05060000.xhp msgctxt "" @@ -52876,7 +52876,7 @@ "par_id2414014\n" "help.text" msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Data - Calculate - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)." -msgstr "Automatisch berekenen moet ingeschakeld zijn om voorwaardelijke opmaak toe te kunnen passen. Kies 'Extra - Celinhoud - Automatisch berekenen' (er verschijnt een vinkje naast de opdracht wanneer Automatisch berekenen ingeschakeld is)." +msgstr "Automatisch berekenen moet ingeschakeld zijn om voorwaardelijke opmaak toe te kunnen passen. Kies Extra - Celinhoud - Automatisch berekenen (er verschijnt een vinkje naast de opdracht wanneer Automatisch berekenen ingeschakeld is)." #: 05120000.xhp msgctxt "" @@ -54581,7 +54581,7 @@ "par_id3156289\n" "help.text" msgid "Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable." -msgstr "Hiermee verdeelt u het scherm vanaf de linkerbovenhoek van de actieve cel en het gebied linksboven is niet langer verschuifbaar." +msgstr "Hiermee verdeelt u het scherm vanaf de linkerbovenhoek van de actieve cel en het gebied linksboven is niet langer verschuifbaar." #: 12010000.xhp msgctxt "" @@ -59708,7 +59708,7 @@ "par_id231020162249545526\n" "help.text" msgid "Number 1 to 7 for two-day weekends and 11 to 17 for one-day weekends." -msgstr "" +msgstr "Nummers 1 t/m 7 voor tweedaagse weekenden en 11 t/m 17 voor ééndaagse weekenden." #: common_func_workdaysintl.xhp msgctxt "" @@ -59716,7 +59716,7 @@ "par_id231020162249542082\n" "help.text" msgid "Number" -msgstr "" +msgstr "Getal" #: common_func_workdaysintl.xhp msgctxt "" @@ -59724,7 +59724,7 @@ "par_id23102016224954936\n" "help.text" msgid "Weekend" -msgstr "" +msgstr "Weekend" #: common_func_workdaysintl.xhp msgctxt "" @@ -59740,7 +59740,7 @@ "par_id231020162249544419\n" "help.text" msgid "Saturday and Sunday" -msgstr "" +msgstr "Zaterdag en zondag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59748,7 +59748,7 @@ "par_id231020162249543229\n" "help.text" msgid "Sunday and Monday" -msgstr "" +msgstr "Zondag en maandag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59756,7 +59756,7 @@ "par_id231020162249541638\n" "help.text" msgid "Monday and Tuesday" -msgstr "" +msgstr "Maandag en dinsdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59764,7 +59764,7 @@ "par_id231020162249548854\n" "help.text" msgid "Tuesday and Wednesday" -msgstr "" +msgstr "Dinsdag en woensdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59772,7 +59772,7 @@ "par_id23102016224954803\n" "help.text" msgid "Wednesday and Thursday" -msgstr "" +msgstr "Woensdag en donderdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59780,7 +59780,7 @@ "par_id231020162249545913\n" "help.text" msgid "Thursday and Friday" -msgstr "" +msgstr "Donderdag en vrijdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59788,7 +59788,7 @@ "par_id231020162249546426\n" "help.text" msgid "Friday and Saturday" -msgstr "" +msgstr "Vrijdag en zaterdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59796,7 +59796,7 @@ "par_id231020162249548630\n" "help.text" msgid "Sunday only" -msgstr "" +msgstr "Alleen zondag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59804,7 +59804,7 @@ "par_id231020162249547536\n" "help.text" msgid "Monday only" -msgstr "" +msgstr "Alleen maandag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59812,7 +59812,7 @@ "par_id231020162249545002\n" "help.text" msgid "Tuesday only" -msgstr "" +msgstr "Alleen dinsdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59820,7 +59820,7 @@ "par_id231020162249554939\n" "help.text" msgid "Wednesday only" -msgstr "" +msgstr "Alleen woensdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59828,7 +59828,7 @@ "par_id231020162249558942\n" "help.text" msgid "Thursday only" -msgstr "" +msgstr "Alleen donderdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59836,7 +59836,7 @@ "par_id231020162249558763\n" "help.text" msgid "Friday only" -msgstr "" +msgstr "Alleen vrijdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -59844,7 +59844,7 @@ "par_id231020162249552635\n" "help.text" msgid "Saturday only" -msgstr "" +msgstr "Alleen zaterdag" #: common_func_workdaysintl.xhp msgctxt "" @@ -64974,7 +64974,7 @@ "hd_id231020162249551873\n" "help.text" msgid "Example" -msgstr "" +msgstr "Voorbeeld" #: func_networkdays.intl.xhp msgctxt "" @@ -65102,7 +65102,7 @@ "hd_id3148677\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Syntaxis" #: func_networkdays.xhp msgctxt "" @@ -65110,7 +65110,7 @@ "par_id3145775\n" "help.text" msgid "NETWORKDAYS(StartDate; EndDate; Holidays; Workdays)" -msgstr "" +msgstr "NETTO.WERKDAGEN(Startdatum; Einddatum; Feestdagen; Werkdagen)" #: func_networkdays.xhp msgctxt "" @@ -65118,7 +65118,7 @@ "par_id3153885\n" "help.text" msgid "StartDate is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation." -msgstr "" +msgstr "Startdatum is de datum vanaf wanneer de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag opgenomen in de berekening." #: func_networkdays.xhp msgctxt "" @@ -65126,7 +65126,7 @@ "par_id3151110\n" "help.text" msgid "EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation." -msgstr "" +msgstr "Einddatum is de datum tot wanneer de berekening wordt uitgevoerd. Als de einddatum een werkdag is, wordt die dag opgenomen in de berekening." #: func_networkdays.xhp msgctxt "" @@ -65134,7 +65134,7 @@ "par_id3154115\n" "help.text" msgid "Holidays is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually." -msgstr "" +msgstr "Feestdagen is een optionele lijst van feestdagen. Dit zijn geen werkdagen. Voer een celbereik in waarin de feestdagen individueel zijn opgesomd." #: func_networkdays.xhp msgctxt "" @@ -65150,7 +65150,7 @@ "hd_id3146902\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Voorbeelden" #: func_networkdays.xhp msgctxt "" @@ -65158,7 +65158,7 @@ "par_id3154661\n" "help.text" msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"." -msgstr "" +msgstr "Hoeveel werkdagen vallen er tussen 15-12-2001 en 15-01-2002? De startdatume staat in C3 en de einddatum in D3. Cellen F3 tot en met J3 bevatten de volgende Kerst- en Nieuwjaarfeestdagen: \"24-12-2001\", \"25-12-2001\", \"26-12-2001\", \"31-12-2001\", \"01-01-2002\"." #: func_networkdays.xhp msgctxt "" @@ -65214,7 +65214,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datumfuncties" #: func_now.xhp msgctxt "" @@ -67024,7 +67024,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datumfuncties" #: func_workdays.intl.xhp msgctxt "" @@ -67032,7 +67032,7 @@ "tit\n" "help.text" msgid "WORKDAYS.INTL" -msgstr "" +msgstr "WERKDAGEN.INT" #: func_workdays.intl.xhp msgctxt "" @@ -67040,7 +67040,7 @@ "bm_id231020162341219565\n" "help.text" msgid "WORKDAYS.INTL function" -msgstr "" +msgstr "WERKDAGEN.INT-functie" #: func_workdays.intl.xhp msgctxt "" @@ -67048,7 +67048,7 @@ "hd_id231020162348002143\n" "help.text" msgid "WORKDAYS.INTL" -msgstr "" +msgstr "WERKDAGEN.INT" #: func_workdays.intl.xhp msgctxt "" @@ -67064,7 +67064,7 @@ "hd_id241020160008306802\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Syntaxis" #: func_workdays.intl.xhp msgctxt "" @@ -67072,7 +67072,7 @@ "par_id241020160008306838\n" "help.text" msgid "WORKDAY.INTL(StartDate; Days; Weekend; Holidays)" -msgstr "" +msgstr "WERKDAG.INT(Startdatum; Dagen; Weekend; Feestdagen)" #: func_workdays.intl.xhp msgctxt "" @@ -67080,7 +67080,7 @@ "par_id241020160008308885\n" "help.text" msgid "StartDate is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation. This is required." -msgstr "" +msgstr "Startdatum is de datum van waaraf de berekening wordt uitgevoerd. Als de startdatum een werkdag is, wordt die dag in de berekening meegenomen. Dit is vereist." #: func_workdays.intl.xhp msgctxt "" @@ -67088,7 +67088,7 @@ "par_id241020160008305329\n" "help.text" msgid "Days is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date." -msgstr "" +msgstr "Dagen is het aantal werkdagen. Positieve waarden voor een resultaat na de startdatum, negatieve waarden voor een resultaat voor de startdatum." #: func_workdays.intl.xhp msgctxt "" @@ -67096,7 +67096,7 @@ "hd_id241020160012172138\n" "help.text" msgid "Example" -msgstr "" +msgstr "Voorbeeld" #: func_workdays.intl.xhp msgctxt "" @@ -67136,7 +67136,7 @@ "par_id24102016001217206\n" "help.text" msgid "To define Friday and Saturday as weekend days, use the weekend parameter 7." -msgstr "" +msgstr "Gebruik de weekendparameter 7 om vrijdag en zaterdag als weekenddagen te definieren." #: func_workdays.intl.xhp msgctxt "" @@ -67152,7 +67152,7 @@ "par_id241020160012176149\n" "help.text" msgid "To define Sunday only the weekend day, use the weekend parameter 11." -msgstr "" +msgstr "Gebruik de weekendparameter 11 om zondag alleen als weekenddag te definieren." #: func_workdays.intl.xhp msgctxt "" @@ -67216,7 +67216,7 @@ "par_id241030160012187036\n" "help.text" msgid "WORKDAYS" -msgstr "" +msgstr "WERKDAGEN" #: func_workdays.intl.xhp msgctxt "" @@ -67224,7 +67224,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Datumfuncties" #: func_year.xhp msgctxt "" @@ -67998,7 +67998,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Sampling" -msgstr "" +msgstr "Kies Gegevens - Statistieken - Steekproefneming" #: statistics.xhp msgctxt "" @@ -69798,7 +69798,7 @@ "par_id1000040\n" "help.text" msgid "Choose Data - Statistics - Regression" -msgstr "" +msgstr "Kies Gegevens - Statistieken - Regressie" #: statistics_regression.xhp msgctxt "" @@ -69825,7 +69825,6 @@ msgstr "Stel het soort regressie in. Er zijn drie soorten beschikbaar:" #: statistics_regression.xhp -#, fuzzy msgctxt "" "statistics_regression.xhp\n" "par_id1701201620334364\n" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/04.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/04.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/04.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 14:48+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-24 19:23+0000\n" +"Last-Translator: vpanter \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467816527.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493061806.000000\n" #: 01020000.xhp msgctxt "" @@ -739,7 +739,7 @@ "17\n" "help.text" msgid "Shift+CommandCtrl+F4" -msgstr "" +msgstr "Shift+CommandoCtrl+F4" #: 01020000.xhp msgctxt "" @@ -757,7 +757,7 @@ "19\n" "help.text" msgid "F4" -msgstr "" +msgstr "F4" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/guide.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.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: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-02-26 10:21+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-24 19:45+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104483.000000\n" +"X-POOTLE-MTIME: 1493063156.000000\n" #: address_auto.xhp msgctxt "" @@ -1242,7 +1242,7 @@ "par_id3149207\n" "help.text" msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the Enter key. This value is not automatically updated, although \"Now\" continuously changes. In the Data menu, the menu item Calculate - AutoCalculate is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet." -msgstr "" +msgstr "De tijd sinds uw geboortedatum wordt berekend en weergegeven in de verschillende eenheden. De waarden worden berekend vanaf het moment dat u op de laatse formule ingaf en op de Enter-toets drukte. Deze waarde wordt niet automatisch bijgewerkt, hoewel \"NU\" natuurlijk steeds verandert. In het menu Gegevens, is het menu-item Berekenen - Automatisch berekenen normaal gesproken actief. Automatisch berekenen werkt echter niet bij de functie NU. Als dat wel zo was, was uw computer constant bezig het blad bij te werken." #: calc_series.xhp msgctxt "" @@ -1872,7 +1872,7 @@ "par_idN106C0\n" "help.text" msgid "To protect the cells from being changed / viewed / printed according to your settings in the Format - Cells dialog, choose Tools - Protect Sheet." -msgstr "" +msgstr "Kies Extra - Blad beveiligen om te voorkomen dat de cellen volgens uw instellingen in het dialoogvenster Opmaak - Cellen gewijzigd / bekeken / afgedrukt worden." #: cell_protect.xhp msgctxt "" @@ -1947,7 +1947,7 @@ "par_id3149656\n" "help.text" msgid "Select Tools - Protect Sheet or Tools - Protect Spreadsheet to remove the check mark indicating the protected status." -msgstr "" +msgstr "Selecteer Extra - Blad beveiligen of Extra - Werkblad beveiligen om de controlemarkering van de beveiligingsstatus te verwijderen." #: cell_unprotect.xhp msgctxt "" @@ -2398,7 +2398,7 @@ "40\n" "help.text" msgid "Choose Sheet - Link to External Data. The External Data dialog appears." -msgstr "" +msgstr "Kies Blad - Koppeling naar externe gegevens. Het dialloogvensterExterne gegevens opent." #: cellreferences_url.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/00.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2017-05-03 16:46:29.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: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-02-19 09:44+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-02 21:01+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487497465.000000\n" +"X-POOTLE-MTIME: 1493758891.000000\n" #: 00000001.xhp msgctxt "" @@ -617,7 +617,7 @@ "bm_id3150702\n" "help.text" msgid "Internet glossary common terms;Internet glossary glossaries;Internet terms terminology;Internet glossary" -msgstr "" +msgstr "internetwoordenlijst algemene termen; internetwoordenlijst woordenlijsten; internettermen terminologie; internetwoordenlijst" #: 00000002.xhp msgctxt "" @@ -625,7 +625,7 @@ "hd_id3150702\n" "help.text" msgid "Glossary of Internet Terms" -msgstr "" +msgstr "Woordenlijst met internettermen" #: 00000002.xhp msgctxt "" @@ -633,7 +633,7 @@ "par_id3155577\n" "help.text" msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news." -msgstr "" +msgstr "Als u niet vertrouwd bent met internet, zult u onbekende termen tegenkomen, zoals browser, bladwijzer, e-mail, homepage, zoekmachine en vele andere termen. In deze woordenlijst vindt u een aantal van de belangrijkste termen die u kunt tegenkomen op het internet, intranet, in e-mail en nieuws om uw eerste stappen te vergemakkelijken." #: 00000002.xhp msgctxt "" @@ -641,7 +641,7 @@ "hd_id18082016234439503\n" "help.text" msgid "CMIS" -msgstr "" +msgstr "CMIS" #: 00000002.xhp msgctxt "" @@ -657,7 +657,7 @@ "hd_id180820162344393005\n" "help.text" msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: 00000002.xhp msgctxt "" @@ -673,7 +673,7 @@ "hd_id3153146\n" "help.text" msgid "Frames" -msgstr "" +msgstr "Frames" #: 00000002.xhp msgctxt "" @@ -681,7 +681,7 @@ "par_id3157909\n" "help.text" msgid "Frames are useful for designing the layout of HTML pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in Edit - Object when the frame is selected." -msgstr "" +msgstr "Frames zijn handig bij het ontwerpen van de lay-out van HTML-pagina's. $[officename] gebruikt zwevende kaders waarin u objecten kunt plaatsen zoals afbeeldingen, filmbestanden en geluiden. In het contextmenu van een frame worden de opties weergegeven voor het herstellen en bewerken van de frame-inhoud. Sommige opdrachten in contextmenu's worden ook weergegeven in Bewerken - Object als het frame is geselecteerd." #: 00000002.xhp msgctxt "" @@ -689,7 +689,7 @@ "hd_id3147077\n" "help.text" msgid "FTP" -msgstr "" +msgstr "FTP" #: 00000002.xhp msgctxt "" @@ -697,7 +697,7 @@ "par_id3147335\n" "help.text" msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, HTTP (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients." -msgstr "" +msgstr "FTP staat voor File Transfer Protocol en is het standaardoverdrachtsprotocol voor bestanden op het internet. Een FTP-server is een programma op een computer die met het internet is verbonden en waarop de bestanden worden opgeslagen die met behulp van FTP verstuurd moeten worden. Terwijl FTP verantwoordelijk is voor het verzenden en downloaden van internetbestanden, verzorgt HTTP (Hypertext Transfer Protocol) de verbindingsinstellingen en gegevensoverdracht tussen WWW-servers en clients." #: 00000002.xhp msgctxt "" @@ -713,7 +713,7 @@ "hd_id3145609\n" "help.text" msgid "HTML" -msgstr "" +msgstr "HTML" #: 00000002.xhp msgctxt "" @@ -721,7 +721,7 @@ "par_id3161459\n" "help.text" msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from SGML and integrates text, graphics, videos and sound." -msgstr "" +msgstr "HTML (HyperText Markup Language) is een document codetaal die wordt gebruikt als bestandsindeling voor WWW-documenten. De taal is ontleend aan SGML en integreert tekst, afbeeldingen, video's en geluid." #: 00000002.xhp msgctxt "" @@ -729,7 +729,7 @@ "par_id3154346\n" "help.text" msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type Text and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type Text and not with the file type Web pages." -msgstr "" +msgstr "Als u HTML-opdrachten direct wilt invoeren, wanneer u bijvoorbeeld oefeningen uit een van de vele beschikbare HTML-boeken maakt, dient u er rekening mee te houden dat HTML-pagina's zuivere tekstbestanden zijn. Sla uw document op met het documenttype Tekst en geef het de bestandsnaamextensie .HTML. Zorg dat de extensie geen umlaut of andere speciale tekens uit de uitgebreide tekenset bevat. Als u dit bestand later opnieuw wilt openen in $[officename] om de HTML-code te bewerken, moet u het bestand laden met het bestandstype Tekst en niet met het bestandstype Webpagina's." #: 00000002.xhp msgctxt "" @@ -737,7 +737,7 @@ "par_id3153960\n" "help.text" msgid "There are several references on the Internet providing an introduction to the HTML language." -msgstr "" +msgstr "Op het internet kunt u referentiemateriaal vinden met een inleiding tot de HTML-taal." #: 00000002.xhp msgctxt "" @@ -745,7 +745,7 @@ "hd_id3147423\n" "help.text" msgid "HTTP" -msgstr "" +msgstr "HTTP" #: 00000002.xhp msgctxt "" @@ -753,7 +753,7 @@ "par_id3153379\n" "help.text" msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)." -msgstr "" +msgstr "HTTP (Hypertext Transfer Protocol) is een verzendrecord van WWW-documenten tussen WWW-servers (hosts) en browsers (clients)." #: 00000002.xhp msgctxt "" @@ -769,7 +769,7 @@ "hd_id3149290\n" "help.text" msgid "Hyperlink" -msgstr "" +msgstr "Hyperlink" #: 00000002.xhp msgctxt "" @@ -777,7 +777,7 @@ "par_id3145420\n" "help.text" msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents." -msgstr "" +msgstr "Hyperlinks zijn kruisverwijzingen, geaccentueerd in tekst van verscheidene kleuren, en worden geactiveerd door een muisklik. Met behulp van hyperlinks kunnen lezers naar specifieke informatie binnen een document springen en naar verwante informatie in andere documenten." #: 00000002.xhp msgctxt "" @@ -785,7 +785,7 @@ "par_id3156281\n" "help.text" msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)." -msgstr "" +msgstr "In $[officename] kunt u hyperlinks aan tekst, evenals afbeeldingen en tekstframes toewijzen (zie het pictogram voor het hyperlink-dialoogvenster op de Standaardbalk)." #: 00000002.xhp msgctxt "" @@ -801,7 +801,7 @@ "hd_id3152805\n" "help.text" msgid "ImageMap" -msgstr "" +msgstr "Imagetoewijzing" #: 00000002.xhp msgctxt "" @@ -809,7 +809,7 @@ "par_id3154685\n" "help.text" msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (URL), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the ImageMap Editor." -msgstr "" +msgstr "Een ImageMap is een verwijzingsgevoelige afbeelding of tekstframe. U kunt op een gedefinieerd gebied van de afbeelding of het tekstframe klikken om naar een doel (URL) te springen dat aan dat gebied is gekoppeld. De verwijzingsgebieden, samen met de gekoppelde URL's en bijbehorende tekst die worden weergegeven wanneer de muisaanwijzer op deze gebieden wordt geplaatst, worden gedefinieerd in de ImageMap-editor." #: 00000002.xhp msgctxt "" @@ -817,7 +817,7 @@ "par_id3153178\n" "help.text" msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the HTML page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap." -msgstr "" +msgstr "Er zijn twee verschillende typen ImageMaps. Een ImageMap aan de clientzijde wordt geanalyseerd op de clientcomputer, waarop de afbeelding vanaf het internet geladen is, terwijl de ImageMap aan de serverzijde wordt geanalyseerd op de computer die de HTML-pagina op het internet aanbiedt. Tijdens de serveranalyse worden bij het klikken op een ImageMap de relatieve coördinaten van de cursor binnen de afbeelding naar de server verzonden, waarop vervolgens door een toegewezen programma op de server gereageerd wordt. Tijdens de clientanalyse wordt bij het klikken op een gedefinieerde hotspot van de ImageMap de URL geactiveerd, alsof het een normale tekstkoppeling is. De URL verschijnt onder de muisaanwijzer wanneer deze over de ImageMap bewogen wordt." #: 00000002.xhp msgctxt "" @@ -825,7 +825,7 @@ "par_id3150740\n" "help.text" msgid "As ImageMaps can be used in different ways, they can be stored in different formats." -msgstr "" +msgstr "Aangezien ImageMaps op verschillende manieren kunnen worden gebruikt, kunnen ze in verschillende indelingen worden opgeslagen." #: 00000002.xhp msgctxt "" @@ -833,7 +833,7 @@ "hd_id3146874\n" "help.text" msgid "ImageMap Formats" -msgstr "" +msgstr "Indelingen voor ImageMaps" #: 00000002.xhp msgctxt "" @@ -841,7 +841,7 @@ "par_id3145153\n" "help.text" msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer." -msgstr "" +msgstr "ImageMaps kunnen worden onderverdeeld in twee groepen: de ImageMaps die worden geanalyseerd op de server (uw internetprovider) en de ImageMaps die worden geanalyseerd op de webbrowser op de computer van de lezer." #: 00000002.xhp msgctxt "" @@ -857,7 +857,7 @@ "hd_id3152881\n" "help.text" msgid "Server Side ImageMaps" -msgstr "" +msgstr "ImageMaps aan serverzijde" #: 00000002.xhp msgctxt "" @@ -865,7 +865,7 @@ "par_id3153057\n" "help.text" msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:" -msgstr "" +msgstr "ImageMaps aan de serverzijde verschijnen voor de lezer als een afbeelding of frame op de pagina. Klik met de muis op de ImageMap, waarna de coördinaten van de relatieve positie naar de server worden verzonden. Met behulp van een extra programma wordt op de server bepaald wat de volgende stap is. Er zijn verschillende niet-compatibele methoden om deze verwerking te definiëren, de twee meest gebruikelijke zijn:" #: 00000002.xhp msgctxt "" @@ -873,7 +873,7 @@ "par_id3147502\n" "help.text" msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)" -msgstr "" +msgstr "W3C (CERN) HTTP-server (bestandstype: MAP - CERN)" #: 00000002.xhp msgctxt "" @@ -881,7 +881,7 @@ "par_id3154011\n" "help.text" msgid "NCSA HTTP Server (Format type: MAP - NCSA)" -msgstr "" +msgstr "NCSA HTTP-server (bestandstype: MAP - NCSA)" #: 00000002.xhp msgctxt "" @@ -889,7 +889,7 @@ "par_id3149483\n" "help.text" msgid "$[officename] creates ImageMaps for both methods. Select the format from the File type list in the Save As dialog in the ImageMap Editor. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program." -msgstr "" +msgstr "$[officename] maakt voor beide methoden ImageMaps. Selecteer de indeling in de keuzelijst Bestandstype van het dialoogvenster Opslaan als in de ImageMap-editor. Er worden afzonderlijke Map-bestanden gemaakt die u moet uploaden naar de server. U moet uw provider of netwerkbeheerder vragen welk type ImageMap wordt ondersteund door de server en hoe u toegang krijgt tot het evaluatieprogramma." #: 00000002.xhp msgctxt "" @@ -905,7 +905,7 @@ "hd_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "" +msgstr "ImageMaps aan clientzijde" #: 00000002.xhp msgctxt "" @@ -913,7 +913,7 @@ "par_id3151290\n" "help.text" msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked URL when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time." -msgstr "" +msgstr "Het gebied van de afbeelding of frame waar de lezer kan klikken wordt aangegeven bij het verschijnen van de gekoppelde URL als de muis over het gebied wordt bewogen. De ImageMap is opgeslagen in een laag onder de afbeelding en bevat informatie over de gebieden waarnaar verwezen wordt. Het enige nadeel van Client Side ImageMaps is dat oudere webbrowsers ze niet kunnen lezen; een nadeel dat echter in de loop van de tijd vanzelf verdwijnt." #: 00000002.xhp msgctxt "" @@ -921,7 +921,7 @@ "par_id3149664\n" "help.text" msgid "When saving the ImageMap, select the file type SIP - StarView ImageMap. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click Apply. Nothing more is necessary. Client Side ImageMaps saved in HTML format are inserted directly into the page in HTML code." -msgstr "" +msgstr "Bij het opslaan van de ImageMap selecteert u het bestandstype SIP - StarView ImageMap. Hiermee wordt de ImageMap rechtstreeks opgeslagen in een indeling die op elke actieve afbeelding of elk actief frame in het document kan worden toegepast. Als u de ImageMap echter alleen wilt gebruiken voor de huidige afbeelding of het huidige tekstframe, hoeft u deze niet in een speciale indeling op te slaan. Na het definiëren van de gebieden klikt u eenvoudig op Toepassen. Meer is niet nodig. ImageMaps aan de clientzijde die zijn opgeslagen in de HTML-indeling, worden direct in HTML-code op de pagina ingevoegd." #: 00000002.xhp msgctxt "" @@ -937,7 +937,7 @@ "hd_id3159125\n" "help.text" msgid "Java" -msgstr "" +msgstr "Java" #: 00000002.xhp msgctxt "" @@ -945,7 +945,7 @@ "par_id3153188\n" "help.text" msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"." -msgstr "" +msgstr "De programmeertaal Java is een platform onafhankelijke programmeertaal die speciaal geschikt is voor gebruik op het internet. Webpagina's en toepassingen die zijn geprogrammeerd zijn met Java klassebestanden kunnen op alle moderne besturingssystemen worden gebruikt. Programma's die de programmeertaal Java gebruiken worden gewoonlijk ontwikkeld in een Java-ontwikkelomgeving en dan gecompileerd tot een \"bytecode\"." #: 00000002.xhp msgctxt "" @@ -953,7 +953,7 @@ "hd_id3145647\n" "help.text" msgid "Proxy" -msgstr "" +msgstr "Proxy" #: 00000002.xhp msgctxt "" @@ -961,7 +961,7 @@ "par_id3148455\n" "help.text" msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy." -msgstr "" +msgstr "Een proxy is een computer in het netwerk die optreedt als een soort klembord voor gegevensoverdracht. Telkens wanneer u internet bezoekt vanaf een bedrijfsnetwerk en een webpagina opvraagt die al is gelezen door een collega, kan de pagina sneller worden weergegeven dankzij de proxy, zolang die pagina nog in het geheugen is opgeslagen. Alles wat in dat geval gecontroleerd moet worden is of de pagina die is opgeslagen op de proxy, de laatste versie is. Als dit het geval is, hoeft de pagina niet te worden gedownload van het veel langzamere internet, maar kan de pagina direct vanaf de proxy worden geladen." #: 00000002.xhp msgctxt "" @@ -977,7 +977,7 @@ "hd_id3154729\n" "help.text" msgid "SGML" -msgstr "" +msgstr "SGML" #: 00000002.xhp msgctxt "" @@ -985,7 +985,7 @@ "par_id3147330\n" "help.text" msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used." -msgstr "" +msgstr "SGML staat voor \"Standard Generalized Markup Language\". SGML is gebaseerd op het idee dat documenten structurele en andere semantische elementen hebben die kunnen worden beschreven zonder verwijzingen naar hoe die elementen zouden moeten worden weergegeven. De werkelijke weergave van dergelijke documenten kan variëren, afhankelijk van het uitvoermedium en de opmaakvoorkeuren. In gestructureerde teksten definieert SGML niet alleen structuren (in de DTD = Document Type Definition), maar zorgt er ook voor dat zij consistent worden gebruikt." #: 00000002.xhp msgctxt "" @@ -993,7 +993,7 @@ "par_id3148747\n" "help.text" msgid "HTML is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages." -msgstr "" +msgstr "HTML is een gespecialiseerde toepassing van SGML. Dit betekent dat de meeste webbrowsers alleen een beperkt bereik van SGML-standaarden ondersteunen en dat bijna alle SGML-geschikte systemen aantrekkelijke HTML-pagina's kunnen produceren." #: 00000002.xhp msgctxt "" @@ -1009,7 +1009,7 @@ "hd_id3153950\n" "help.text" msgid "Search Engines" -msgstr "" +msgstr "Zoekmachines" #: 00000002.xhp msgctxt "" @@ -1017,7 +1017,7 @@ "par_id3157965\n" "help.text" msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words." -msgstr "" +msgstr "Een zoekmachine is een service op internet, gebaseerd op een softwareprogramma, dat wordt gebruikt om een grote hoeveelheid informatie met behulp van sleutelwoorden te doorzoeken" #: 00000002.xhp msgctxt "" @@ -1033,7 +1033,7 @@ "hd_id3150751\n" "help.text" msgid "Tags" -msgstr "" +msgstr "Labels" #: 00000002.xhp msgctxt "" @@ -1041,7 +1041,7 @@ "par_id3156360\n" "help.text" msgid "HTML pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags

at the beginning and

at the end of the title. Some tags only appear on their own such as
for a line break or to link a graphic." -msgstr "" +msgstr "HTML-pagina's bevatten bepaalde structurele en opmaakinstructies die tags worden genoemd. Tags zijn codewoorden die in de document beschrijvingstaal HTML tussen haakjes worden geplaatst. Vele tags bevatten tekst of hyperlink verwijzingen tussen de haakjes openen en sluiten. Titels worden bijvoorbeeld aangeduid door de tags

aan het begin en

aan het eind van de titel. Sommige tags verschijnen alleen, zonder sluitingstags, zoals
voor een regeleinde of om een afbeelding te koppelen." #: 00000002.xhp msgctxt "" @@ -1057,7 +1057,7 @@ "hd_id3153766\n" "help.text" msgid "URL" -msgstr "" +msgstr "URL" #: 00000002.xhp msgctxt "" @@ -1065,7 +1065,7 @@ "par_id3152931\n" "help.text" msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address." -msgstr "" +msgstr "De URL (Uniform Resource Locator) geeft het adres weer van een document of een server op internet. De algemene structuur van een URL varieert afhankelijk van het type, en ziet er meestal als volgt uit Service://Hostnaam:Poort/Pad/Pagina#Markering, hoewel niet alle elementen altijd nodig zijn. Een URL kan een FTP-adres, een WWW (HTTP)-adres, een bestandsadres of een e-mailadres zijn." #: 00000003.xhp msgctxt "" @@ -3106,7 +3106,7 @@ "197\n" "help.text" msgid "If, in %PRODUCTNAME - PreferencesTools - Options - Load/Save - HTML Compatibility, you select Mozilla Firefox, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (CSS stands for Cascading Style Sheets.) Importing is also carried out according to this standard." -msgstr "Als u via %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit, Mozilla Firefox, MS Internet Explorer of $[officename] Writer als exportoptie selecteert, worden bij het exporteren alle belangrijke attributen voor lettertypen geëxporteerd als directe attributen (bijvoorbeeld tekstkleur, tekengrootte, vet, cursief, enzovoort) in CSS1-opmaakprofielen. (CSS staat voor Cascading Style Sheets.) Importeren wordt ook volgens deze standaard uitgevoerd." +msgstr "Als u via %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit, Mozilla Firefox, MS Internet Explorer of $[officename] Writer als exportoptie selecteert, worden bij het exporteren alle belangrijke attributen voor lettertypen geëxporteerd als directe attributen (bijvoorbeeld tekstkleur, tekengrootte, vet, cursief, enzovoort) in CSS1-opmaakprofielen. (CSS staat voor Cascading Style Sheets.) Importeren wordt ook volgens deze standaard uitgevoerd." #: 00000020.xhp msgctxt "" @@ -3367,7 +3367,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 "Als in %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit, de exportoptie \"$[officename] Writer\" of \"Internet Explorer\" is geselecteerd, worden de inspringingen bij opsommingen geëxporteerd als CSS1-eigenschap \"margin-left\" in het STYLE-attribuut van de tags
        en
          . De eigenschap geeft het relatieve verschil aan ten opzichte van de inspringing van het volgende hogere niveau." +msgstr "Als in %PRODUCTNAME - VoorkeurenExtra - Opties - Laden/Opslaan - HTML-compatibiliteit, de exportoptie \"$[officename] Writer\" of \"Internet Explorer\" is geselecteerd, worden de inspringingen bij opsommingen geëxporteerd als CSS1-eigenschap \"margin-left\" in het STYLE-attribuut van de tags
            en
              . De eigenschap geeft het relatieve verschil aan ten opzichte van de inspringing van het volgende hogere niveau." #: 00000020.xhp msgctxt "" @@ -10116,7 +10116,7 @@ "par_id3163822\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Borders tab" -msgstr "" +msgstr "Kies de tabOpmaak - Frame en object - Eigenschappen - Randen" #: 00040500.xhp msgctxt "" @@ -10212,7 +10212,7 @@ "par_id3150592\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Area tab" -msgstr "" +msgstr "Kies de tabOpmaak - Frame en object - Eigenschappen - Oppervlak" #: 00040500.xhp msgctxt "" @@ -10620,7 +10620,7 @@ "par_id3151254\n" "help.text" msgid "Choose Format - Text or Format - Text - Change Case" -msgstr "" +msgstr "Kies Opmaak - Tekst of Opmaak - Tekst - Wijzig hoofdletters" #: 00040500.xhp msgctxt "" @@ -13278,7 +13278,7 @@ "tit\n" "help.text" msgid "Gallery context menu" -msgstr "Gallery-contextmenu" +msgstr "Galerij-contextmenu" #: 01010000.xhp msgctxt "" @@ -13287,7 +13287,7 @@ "1\n" "help.text" msgid "Gallery context menu" -msgstr "Gallery-contextmenu" +msgstr "Galerij-contextmenu" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-01-14 08:16+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-02 21:14+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484381765.000000\n" +"X-POOTLE-MTIME: 1493759671.000000\n" #: 01010000.xhp msgctxt "" @@ -172,7 +172,7 @@ "66\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Maakt een nieuw presentatie document ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -434,7 +434,7 @@ "par_idN10A15\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "" +msgstr "Maakt een nieuw presentatiedocument ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -2176,7 +2176,7 @@ "hd_id3146936\n" "help.text" msgid "Open" -msgstr "" +msgstr "Openen" #: 01020000.xhp msgctxt "" @@ -2184,7 +2184,7 @@ "par_id3151191\n" "help.text" msgid "Opens, opens a remote file or imports a file. " -msgstr "" +msgstr "Opent een lokaal bestand, opent een bestand op een server of importeert een bestand." #: 01020000.xhp msgctxt "" @@ -2192,7 +2192,7 @@ "par_id3149877\n" "help.text" msgid "The following sections describe the %PRODUCTNAME Open dialog box. 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 "De volgende secties beschrijven het dialoogvenster %PRODUCTNAME Openen. Om de dialoogvensters %PRODUCTNAME Openen en Opslaan te gebruiken, kies %PRODUCTNAME - VoorkeurenExtra - Opties - %PRODUCTNAME- Algemeen, en selecteer dan de Gebruik %PRODUCTNAME dialoogvensters in het gebied Dialoogvensters Openen/Opslaan." #: 01020000.xhp msgctxt "" @@ -2200,7 +2200,7 @@ "par_id3150713\n" "help.text" msgid "If the file that you want to open contains Styles, special rules apply." -msgstr "" +msgstr "Als het bestand dat u wilt openen, opmaakprofielen bevat, zijn er speciale regels van toepassing." #: 01020000.xhp msgctxt "" @@ -2208,7 +2208,7 @@ "hd_id3147250\n" "help.text" msgid "Up One Level" -msgstr "" +msgstr "Eén niveau hoger" #: 01020000.xhp msgctxt "" @@ -2216,7 +2216,7 @@ "par_id3147226\n" "help.text" msgid "Move up one folder in the folder hierarchy. Long-click to see the higher level folders." -msgstr "" +msgstr "Ga één map in de mapstructuur omhoog. Houd de muisknop lang ingedrukt om de mappen op hogere niveaus te bekijken." #: 01020000.xhp msgctxt "" @@ -2224,7 +2224,7 @@ "hd_id3145211\n" "help.text" msgid "Create New Folder" -msgstr "" +msgstr "Nieuwe map maken" #: 01020000.xhp msgctxt "" @@ -2232,7 +2232,7 @@ "par_id3153681\n" "help.text" msgid "Creates a new folder." -msgstr "" +msgstr "Maakt een nieuwe map aan." #: 01020000.xhp msgctxt "" @@ -2240,7 +2240,7 @@ "hd_id3148538\n" "help.text" msgid "Display area" -msgstr "" +msgstr "Weergavevenster" #: 01020000.xhp msgctxt "" @@ -2248,7 +2248,7 @@ "par_id3156113\n" "help.text" msgid "Displays the files and folders in the folder that you are in. To open a file, select the file, and then click Open." -msgstr "" +msgstr "Geeft de bestanden en submappen in de map weer waarin u zich bevindt. Wanneer u een bestand wilt openen, selecteert u het en klikt u vervolgens op Openen." #: 01020000.xhp msgctxt "" @@ -2256,7 +2256,7 @@ "par_id3159256\n" "help.text" msgid "To open more than one document at the same time, each in an own window, hold Command Ctrl while you click the files, and then click Open." -msgstr "" +msgstr "Houdt CommandCtrl ingedrukt terwijl u op de bestanden klikt en klik dan op Openen om meer dan één document op hetzelfde moment, elk in een eigen venster, te openen." #: 01020000.xhp msgctxt "" @@ -2264,7 +2264,7 @@ "par_id3154514\n" "help.text" msgid "Click a column header to sort the files. Click again to reverse the sort order." -msgstr "" +msgstr "Klik op een kolomkop om de bestanden te sorteren. Klik opnieuw om de sorteervolgorde om te keren." #: 01020000.xhp msgctxt "" @@ -2272,7 +2272,7 @@ "par_id3149514\n" "help.text" msgid "To delete a file, right-click the file, and then choose Delete." -msgstr "" +msgstr "Wanneer u een bestand wilt verwijderen, klikt u er met de rechtermuisknop op en kiest u vervolgens Verwijderen." #: 01020000.xhp msgctxt "" @@ -2280,7 +2280,7 @@ "par_id3147618\n" "help.text" msgid "To rename a file, right-click the file, and then choose Rename." -msgstr "" +msgstr "Wanneer u een bestand wilt hernoemen, klikt u met de rechtermuisknop op het bestand en kiest u vervolgens Naam wijzigen." #: 01020000.xhp msgctxt "" @@ -2288,7 +2288,7 @@ "par_id3153331\n" "help.text" msgid "Click to delete the file with the name shown in this dialog." -msgstr "" +msgstr "Klik hierop om het bestand te verwijderen waarvan de naam in dit dialoogvenster wordt getoond." #: 01020000.xhp msgctxt "" @@ -2296,7 +2296,7 @@ "par_id3161458\n" "help.text" msgid "Click to cancel deletion of the file with the name shown in this dialog." -msgstr "" +msgstr "Klik hierop om verwijdering van het bestand waarvan de naam in dit dialoogvenster wordt getoond, te annuleren." #: 01020000.xhp msgctxt "" @@ -2304,7 +2304,7 @@ "par_id3147531\n" "help.text" msgid "Click to delete all selected files." -msgstr "" +msgstr "Klik hierop om alle geselecteerde bestanden te verwijderen." #: 01020000.xhp msgctxt "" @@ -2312,7 +2312,7 @@ "hd_id3154280\n" "help.text" msgid "File name" -msgstr "" +msgstr "Bestandsnaam" #: 01020000.xhp msgctxt "" @@ -2320,7 +2320,7 @@ "par_id3161656\n" "help.text" msgid "Enter a file name or a path for the file. You can also enter a URL that starts with the protocol name ftp, http, or https." -msgstr "" +msgstr "Voer een bestandsnaam of een pad voor het bestand in. U kunt ook een URL invoeren dat begint met de protocolnaam ftp, http of https." #: 01020000.xhp msgctxt "" @@ -2328,7 +2328,7 @@ "par_id3150541\n" "help.text" msgid "If you want, you can use wildcards in the File name box to filter the list of files that is displayed." -msgstr "" +msgstr "U kunt desgewenst jokertekens in het vakje Bestandsnaam gebruiken om de weergegeven lijst met bestanden te filteren." #: 01020000.xhp msgctxt "" @@ -2336,7 +2336,7 @@ "par_id3153779\n" "help.text" msgid " For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click Open. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name." -msgstr "" +msgstr " Wanneer u bijvoorbeeld alle tekstbestanden in een map wilt weergeven, voert u het jokerteken * met de extensie van het tekstbestand (*.txt) in en klikt u vervolgens op Openen. Gebruik het jokerteken vraagteken (?) om een willekeurig teken aan te duiden, zoals in (??3*.txt), waarbij alleen tekstbestanden met een '3' als het derde teken in de bestandsnaam worden weergegeven." #: 01020000.xhp msgctxt "" @@ -2344,7 +2344,7 @@ "hd_id3145117\n" "help.text" msgid "Version" -msgstr "" +msgstr "Versie" #: 01020000.xhp msgctxt "" @@ -2352,7 +2352,7 @@ "par_id3149291\n" "help.text" msgid "If there are multiple versions of the selected file, select the version that you want to open. You can save and organize multiple versions of a document by choosing File - Versions. The versions of a document are opened in read-only mode." -msgstr "" +msgstr "Als er meerdere versies van het geselecteerde bestand bestaan, selecteert u de versie die u wilt openen. U kunt meerdere versies van een document opslaan en beheren door Bestand - Versies te kiezen. De versies van een document worden in alleen-lezen modus geopend." #: 01020000.xhp msgctxt "" @@ -2360,7 +2360,7 @@ "hd_id3150767\n" "help.text" msgid "File type" -msgstr "" +msgstr "Bestandssoort" #: 01020000.xhp msgctxt "" @@ -2368,7 +2368,7 @@ "par_id3153969\n" "help.text" msgid "Select the file type that you want to open, or select All Files (*) to display a list of all of the files in the folder." -msgstr "" +msgstr "Selecteer het bestandstype dat u wilt openen of selecteer Alle bestanden (*) om een lijst met alle bestanden in de map weer te geven." #: 01020000.xhp msgctxt "" @@ -2376,7 +2376,7 @@ "hd_id3154125\n" "help.text" msgid "Open" -msgstr "" +msgstr "Openen" #: 01020000.xhp msgctxt "" @@ -2384,7 +2384,7 @@ "par_id3152933\n" "help.text" msgid "Opens the selected document(s)." -msgstr "" +msgstr "Opent de geselecteerde documenten." #: 01020000.xhp msgctxt "" @@ -2392,7 +2392,7 @@ "hd_id3147085\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Invoegen" #: 01020000.xhp msgctxt "" @@ -2400,7 +2400,7 @@ "par_id3156293\n" "help.text" msgid "If you opened the dialog by choosing Insert - File, the Open button is labeled Insert. Inserts the selected file into the current document at the cursor position." -msgstr "" +msgstr "Als u het dialoogvenster hebt geopend door Invoegen - Bestand te kiezen, wordt de knop Openen met Invoegen aangeduid. Voegt het geselecteerde bestand in het huidige document bij de cursorpositie in." #: 01020000.xhp msgctxt "" @@ -2408,7 +2408,7 @@ "hd_id3144762\n" "help.text" msgid "Read-only" -msgstr "" +msgstr "Alleen-lezen" #: 01020000.xhp msgctxt "" @@ -2416,7 +2416,7 @@ "par_id3145785\n" "help.text" msgid "Opens the file in read-only mode." -msgstr "" +msgstr "Opent het document in alleen-lezen modus." #: 01020000.xhp msgctxt "" @@ -2424,7 +2424,7 @@ "hd_id3149984\n" "help.text" msgid "Play" -msgstr "" +msgstr "Afspelen" #: 01020000.xhp msgctxt "" @@ -2432,7 +2432,7 @@ "par_id3147289\n" "help.text" msgid "Plays the selected sound file. Click again to stop playing the sound file." -msgstr "" +msgstr "Speelt het geselecteerde geluidsbestand af. Klik opnieuw om het afspelen van het geluidsbestand te stoppen." #: 01020000.xhp msgctxt "" @@ -2440,7 +2440,7 @@ "hd_id3149260\n" "help.text" msgid "Opening Documents With Templates" -msgstr "" +msgstr "Documenten met sjablonen openen" #: 01020000.xhp msgctxt "" @@ -2448,7 +2448,7 @@ "par_id3145367\n" "help.text" msgid "%PRODUCTNAME recognizes templates that are located in any folder from the following list:" -msgstr "" +msgstr "%PRODUCTNAME herkent sjablonen die zijn opgeslagen in een map uit de volgende lijst:" #: 01020000.xhp msgctxt "" @@ -2456,7 +2456,7 @@ "par_id3151292\n" "help.text" msgid "the shared template folder" -msgstr "" +msgstr "de gedeelde sjabloonmap" #: 01020000.xhp msgctxt "" @@ -2464,7 +2464,7 @@ "par_id3144442\n" "help.text" msgid "the user template folder in the home directory in the Documents and Settings folder" -msgstr "" +msgstr "de sjabloonmap van de gebruiker in de basismapin de map Documents and Settings " #: 01020000.xhp msgctxt "" @@ -2496,7 +2496,7 @@ "par_id3150105\n" "help.text" msgid "When you open a document that was created from a \"sticky template\" (as defined above), %PRODUCTNAME checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document." -msgstr "" +msgstr "Als u een document opent dat gemaakt is met behulp van een \"gekoppeld sjabloon\" (zoals hierboven beschreven), controleert %PRODUCTNAME of het sjabloon gewijzigd is sinds het document het laatst was geopend. Als het sjabloon gewijzigd is, wordt een dialoogvenster weergegeven waarin u kunt selecteren welke profielen toegepast worden op het document." #: 01020000.xhp msgctxt "" @@ -2504,7 +2504,7 @@ "par_id3153096\n" "help.text" msgid "To apply the new styles from the template to the document, click Update Styles." -msgstr "" +msgstr "Wanneer u de nieuwe opmaakprofielen van de sjabloon op het document wilt toepassen, klikt u op Ja." #: 01020000.xhp msgctxt "" @@ -2512,7 +2512,7 @@ "par_id3147581\n" "help.text" msgid "To retain the styles that are currently used in the document, click Keep Old Styles." -msgstr "" +msgstr "Wanneer u de opmaakprofielen wilt behouden die momenteel in het document worden gebruikt, klikt u op Nee." #: 01020000.xhp msgctxt "" @@ -2520,7 +2520,7 @@ "par_id3154988\n" "help.text" msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened." -msgstr "" +msgstr "Als een document met behulp van een sjabloon is gemaakt die niet kan worden gevonden, wordt er een dialoogvenster getoond waarin u wordt gevraagd hoe u de volgende keer dat het document wordt geopend, verder wilt gaan." #: 01020000.xhp msgctxt "" @@ -2528,7 +2528,7 @@ "par_id3151351\n" "help.text" msgid "To break the link between the document and the missing template, click No, otherwise %PRODUCTNAME will look for the template the next time you open the document." -msgstr "" +msgstr "Wanneer u de koppeling tussen het document en de ontbrekende sjabloon wilt verbreken, klikt u op Nee, anders zoekt %PRODUCTNAME de sjabloon wanneer u het document de volgende keer opent." #: 01020000.xhp msgctxt "" @@ -3478,7 +3478,7 @@ "hd_id3149576\n" "help.text" msgid "Template:" -msgstr "" +msgstr "Sjabloon:" #: 01100200.xhp msgctxt "" @@ -3486,7 +3486,7 @@ "par_id3147530\n" "help.text" msgid "Displays the template that was used to create the file." -msgstr "" +msgstr "Geeft de sjabloon weer die is gebruikt om het bestand te maken." #: 01100200.xhp msgctxt "" @@ -3544,7 +3544,7 @@ "hd_id3155342\n" "help.text" msgid "Total editing time:" -msgstr "" +msgstr "Totale bewerkingstijd:" #: 01100200.xhp msgctxt "" @@ -3552,7 +3552,7 @@ "par_id3149795\n" "help.text" msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file." -msgstr "" +msgstr "Geeft de totale tijd weer dat het bestand geopend is geweest voor bewerking. De bewerkingstijd wordt bijgewerkt wanneer u het bestand opslaat." #: 01100200.xhp msgctxt "" @@ -3596,7 +3596,7 @@ "hd_id3154046\n" "help.text" msgid "Reset Properties" -msgstr "" +msgstr "Eigenschappen herstellen" #: 01100200.xhp msgctxt "" @@ -3751,7 +3751,7 @@ "hd_id3153311\n" "help.text" msgid "Cells:" -msgstr "" +msgstr "Cellen" #: 01100400.xhp msgctxt "" @@ -5028,7 +5028,7 @@ "bm_id3147294\n" "help.text" msgid "printers; properties settings; printers properties; printers default printer; setting up printers; default printer page formats; restriction" -msgstr "" +msgstr "printers; eigenschappen instellingen; printers eigenschappen; printers standaardprinter; instellen printers; standaardprinter paginaformaten; beperking" #: 01140000.xhp msgctxt "" @@ -5036,7 +5036,7 @@ "hd_id3147294\n" "help.text" msgid "Printer Settings" -msgstr "" +msgstr "Printer-instellingen" #: 01140000.xhp msgctxt "" @@ -5052,7 +5052,7 @@ "par_id3148620\n" "help.text" msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects." -msgstr "" +msgstr "U kunt een kleine vertraging ondervinden wanneer u de standaardprinter voor een document met ingesloten $[officename] OLE-objecten wijzigt." #: 01140000.xhp msgctxt "" @@ -5060,7 +5060,7 @@ "hd_id3145345\n" "help.text" msgid "Printer" -msgstr "" +msgstr "Printer" #: 01140000.xhp msgctxt "" @@ -5068,7 +5068,7 @@ "par_id3145211\n" "help.text" msgid "Lists the information that applies to the selected printer." -msgstr "" +msgstr "Lijst met informatie van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5076,7 +5076,7 @@ "par_id3148538\n" "help.text" msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer." -msgstr "" +msgstr "Als de lijst leeg is, moet u een standaardprinter voor uw besturingssysteem installeren. Raadpleeg de online-Help van uw besturingssysteem voor instructies over het installeren en instellen van een standaardprinter." #: 01140000.xhp msgctxt "" @@ -5084,7 +5084,7 @@ "hd_id3154381\n" "help.text" msgid "Name" -msgstr "" +msgstr "Naam" #: 01140000.xhp msgctxt "" @@ -5100,7 +5100,7 @@ "hd_id3156153\n" "help.text" msgid "Status" -msgstr "" +msgstr "Status" #: 01140000.xhp msgctxt "" @@ -5108,7 +5108,7 @@ "par_id3150465\n" "help.text" msgid "Describes the current status of the selected printer." -msgstr "" +msgstr "Beschrijft de huidige status van de geslecteerde printer." #: 01140000.xhp msgctxt "" @@ -5116,7 +5116,7 @@ "hd_id3154898\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #: 01140000.xhp msgctxt "" @@ -5124,7 +5124,7 @@ "par_id3156326\n" "help.text" msgid "Displays the type of printer that you selected." -msgstr "" +msgstr "Toont het type van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5132,7 +5132,7 @@ "hd_id3149416\n" "help.text" msgid "Location" -msgstr "" +msgstr "Locatie" #: 01140000.xhp msgctxt "" @@ -5140,7 +5140,7 @@ "par_id3149955\n" "help.text" msgid "Displays the port for the selected printer." -msgstr "" +msgstr "Toont de poort van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5148,7 +5148,7 @@ "hd_id3145316\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Notitie" #: 01140000.xhp msgctxt "" @@ -5156,7 +5156,7 @@ "par_id3155923\n" "help.text" msgid "Displays additional information for the printer." -msgstr "" +msgstr "Toont aanvullende informatie van de geselecteerde printer." #: 01140000.xhp msgctxt "" @@ -5164,7 +5164,7 @@ "hd_id3149669\n" "help.text" msgid "Properties" -msgstr "" +msgstr "Eigenschappen" #: 01140000.xhp msgctxt "" @@ -5172,7 +5172,7 @@ "par_id3149045\n" "help.text" msgid "Changes the printer settings of your operating system for the current document." -msgstr "" +msgstr "Wijzigt de printerinstellingen van uw besturingssysteem voor het huidige document." #: 01140000.xhp msgctxt "" @@ -5180,7 +5180,7 @@ "par_id3157322\n" "help.text" msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing Format - Page." -msgstr "" +msgstr "Zorg ervoor dat de layout-optie Liggend of Staand die in het dialoogvenster met printereigenschappen is ingesteld, overeenkomt met het paginaformaat dat u instelt door Opmaak - Pagina te kiezen." #: 01140000.xhp msgctxt "" @@ -5188,7 +5188,7 @@ "hd_id201612110303091265\n" "help.text" msgid "Options" -msgstr "" +msgstr "Opties" #: 01140000.xhp msgctxt "" @@ -5204,7 +5204,7 @@ "par_id3157323\n" "help.text" msgid "The Options button is only available in %PRODUCTNAME Writer and Calc." -msgstr "" +msgstr "De knop Opties is alleen beschikbaar in %PRODUCTNAME Writer en Calc." #: 01160000.xhp msgctxt "" @@ -5534,7 +5534,7 @@ "par_id3151299\n" "help.text" msgid "Closes all $[officename] programs and prompts you to save your changes. This command does not exist on Mac OS X systems." -msgstr "" +msgstr "Sluit alle $[officename]-toepassingen en vraagt u om uw wijzigingen op te slaan. Deze opdracht komt niet voor op Mac OS X systemen." #: 01170000.xhp msgctxt "" @@ -6726,7 +6726,7 @@ "par_id3149893\n" "help.text" msgid "Finds or replaces text or formats in the current document." -msgstr "" +msgstr "Zoekt en vervangt tekstopmaakprofielen in het huidige document." #: 02100000.xhp msgctxt "" @@ -6758,7 +6758,7 @@ "hd_id3152425\n" "help.text" msgid "Find" -msgstr "" +msgstr "Zoeken" #: 02100000.xhp msgctxt "" @@ -6766,7 +6766,7 @@ "par_id3155805\n" "help.text" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Voer de tekst in dat u wilt zoeken of kies een vorige zoekopdracht in de lijst." #: 02100000.xhp msgctxt "" @@ -6774,7 +6774,7 @@ "par_id3153683\n" "help.text" msgid "Search options are listed under the Find box and in the Other options area of the dialog." -msgstr "" +msgstr "Zoekopties worden genoemd onder het vak Zoeken en in het gedeelte Overige opties van het dialoogvenster." #: 02100000.xhp msgctxt "" @@ -6782,7 +6782,7 @@ "hd_id3154924\n" "help.text" msgid "Match case" -msgstr "" +msgstr "Hoofdlettergevoelig" #: 02100000.xhp msgctxt "" @@ -6798,7 +6798,7 @@ "par_id3154760\n" "help.text" msgid "Distinguishes between uppercase and lowercase characters." -msgstr "" +msgstr "Onderscheid maken tussen hoofdletters en kleine letters." #: 02100000.xhp msgctxt "" @@ -6806,7 +6806,7 @@ "hd_id3148538\n" "help.text" msgid "Entire CellsWhole words only" -msgstr "" +msgstr "Alleen hele cellen Alleen hele woorden" #: 02100000.xhp msgctxt "" @@ -6814,7 +6814,7 @@ "par_id3149579\n" "help.text" msgid "Searches for whole words or cells that are identical to the search text." -msgstr "" +msgstr "Zoeken naar hele woorden of cellen die identiek zijn aan de zoektekst." #: 02100000.xhp msgctxt "" @@ -6830,7 +6830,7 @@ "hd_id3152960\n" "help.text" msgid "All sheets" -msgstr "" +msgstr "Alle bladen" #: 02100000.xhp msgctxt "" @@ -6838,7 +6838,7 @@ "par_id3145619\n" "help.text" msgid "Searches through all of the sheets in the current spreadsheet file." -msgstr "" +msgstr "Zoekt in alle bladen van het huidige werkbladbestand." #: 02100000.xhp msgctxt "" @@ -6854,7 +6854,7 @@ "hd_id3152551\n" "help.text" msgid "Replace" -msgstr "" +msgstr "Vervangen" #: 02100000.xhp msgctxt "" @@ -10849,7 +10849,7 @@ "par_id3150382\n" "help.text" msgid "Displays the image map, so that you can click and edit the hotspots." -msgstr "Geeft de ImageMap weer, zodat u op de hotspots kunt klikken en deze kunt bewerken." +msgstr "Geeft de ImageMap weer, zodat u op de hotspots kunt klikken en deze kunt bewerken." #: 02220000.xhp msgctxt "" @@ -14054,7 +14054,7 @@ "2\n" "help.text" msgid "Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file." -msgstr "Voegt een zwevend kader in het huidige document in. Zwevende kaders worden in HTML-documenten gebruikt om de inhoud van een ander bestand weer te geven." +msgstr "Voegt een zwevend kader in het huidige document in. Zwevende kaders worden in HTML-documenten gebruikt om de inhoud van een ander bestand weer te geven." #: 04160500.xhp msgctxt "" @@ -19215,7 +19215,7 @@ "par_id3155351\n" "help.text" msgid "Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command." -msgstr " Definieer hier de instellingen voor tweeregelig schrijven in Aziatische talen. Selecteer de tekens in uw tekst en kies dan deze opdracht." +msgstr " Definieer hier de instellingen voor tweeregelig schrijven in Aziatische talen. Selecteer de tekens in uw tekst en kies dan deze opdracht." #: 05020600.xhp msgctxt "" @@ -37465,7 +37465,7 @@ "par_id3155271\n" "help.text" msgid "Locate the %PRODUCTNAME Basic library that you want to add to the current list, and then click Open." -msgstr "Zoek de %PRODUCTNAME BASIC-bibliotheek die u aan de huidige lijst wilt toevoegen, en klik dan op 'Openen'." +msgstr "Zoek de %PRODUCTNAME BASIC-bibliotheek die u aan de huidige lijst wilt toevoegen, en klik dan op 'Openen'." #: 06130500.xhp msgctxt "" @@ -44986,7 +44986,7 @@ "par_idN1058B\n" "help.text" msgid "Adds the current macro source to the list of trusted sources." -msgstr "Voegt de huidige macrobron aan de lijst van betrouwbare bronnen toe." +msgstr "Voegt de huidige macrobron aan de lijst van betrouwbare bronnen toe." #: securitywarning.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/02.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/02.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/02.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-24 13:22+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-23 10:12+0000\n" +"Last-Translator: kees538 \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485264130.000000\n" +"X-POOTLE-MTIME: 1492942322.000000\n" #: 01110000.xhp msgctxt "" @@ -13498,7 +13498,7 @@ "6\n" "help.text" msgid "You can remove the current AutoFilter with the Reset Filter/Sorting icon or with Data - Filter - Reset Filter." -msgstr "U kunt de huidige AutoFilter verwijderen met de knop of met Gegevens - Filter - AutoFilter verbergen." +msgstr "U kunt de huidige AutoFilter verwijderen met de knopFilter/sortering herstellen of met Gegevens - Filter - AutoFilter verbergen." #: 12030000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/autopi.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/autopi.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/autopi.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/autopi.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-06 15:18+0000\n" -"Last-Translator: Cor Nouws \n" +"PO-Revision-Date: 2017-04-23 10:13+0000\n" +"Last-Translator: kees538 \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467818330.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492942385.000000\n" #: 01000000.xhp msgctxt "" @@ -4065,7 +4065,7 @@ "par_id3154894\n" "help.text" msgid "Choose the layout from different templates and styles, and choose landscape or portrait page orientation." -msgstr "Kies de lay-out uit verschillende sjablonen en opmaakprofielen, en kies een horizontale of verticale afdrukstand." +msgstr "Kies de lay-out uit verschillende sjablonen en opmaakprofielen en kies een horizontale of verticale afdrukstand." #: 01100400.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.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: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-01-07 10:57+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-23 10:15+0000\n" +"Last-Translator: Cor Nouws \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786647.000000\n" +"X-POOTLE-MTIME: 1492942518.000000\n" #: 02000000.xhp msgctxt "" @@ -2625,7 +2625,7 @@ "par_id191120151905584287\n" "help.text" msgid "Parameter names may not contain any of the characters `!\"$%^*()+={}[]@'~#<>?/,. They may not be the same as field names or SQL reserved words. They may be the same as aliases." -msgstr "Namen van parameters mogen niet de karakters `!\"$%^*()+={}[]@'~#<>?/, bevatten. Ze mogen ook niet dezelfde veldnamen hebben als voor SQL gereserveerde woorden. Ze mogen wel hetzelfde zijn als aliassen." +msgstr "Namen van parameters mogen niet de karakters `!\"$%^*()+={}[]@'~#<>?/, bevatten. Ze mogen ook niet dezelfde veldnamen hebben als voor SQL gereserveerde woorden. Ze mogen wel hetzelfde zijn als aliassen." #: 02010100.xhp msgctxt "" @@ -5470,7 +5470,7 @@ "par_id3154422\n" "help.text" msgid "Displays the description for the selected table." -msgstr "Geeft de beschrijving van de geselecteerde tabel weer." +msgstr "Geeft de beschrijving van de geselecteerde tabel weer." #: 11000002.xhp msgctxt "" @@ -5565,7 +5565,7 @@ "par_id3150499\n" "help.text" msgid "Specifies the settings for ODBC databases. This includes your user access data, driver settings, and font definitions." -msgstr "Specificeert de instellingen voor ODBC-databases. Hieronder vallen uw gegevens voor gebruikerstoegang, uw stuurprogramma-instellingen en lettertypedefinities." +msgstr "Specificeert de instellingen voor ODBC-databases. Hieronder vallen uw gegevens voor gebruikerstoegang, uw stuurprogramma-instellingen en lettertypedefinities." #: 11020000.xhp msgctxt "" @@ -5806,7 +5806,7 @@ "par_id3147088\n" "help.text" msgid "Specify the settings for a dBASE database." -msgstr "Specificeer de instellingen voor een dBASE-database." +msgstr "Specificeer de instellingen voor een dBASE-database." #: 11030000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/guide.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-21 15:39+0100\n" -"PO-Revision-Date: 2017-02-16 11:27+0000\n" +"PO-Revision-Date: 2017-04-23 10:24+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487244425.000000\n" +"X-POOTLE-MTIME: 1492943081.000000\n" #: aaa_start.xhp msgctxt "" @@ -15626,7 +15626,7 @@ "bm_id380260\n" "help.text" msgid "Format Paintbrush clone formatting formatting;copying copying;formatting Paintbrush" -msgstr "Opmaak van Paintbrushklonen;opmaakkopiëren;opmaakPaintbrush" +msgstr "Opmaak van Paintbrush klonen;opmaak opmaak;kopiëren kopiëren;opmaak Paintbrush" #: paintbrush.xhp msgctxt "" @@ -16658,7 +16658,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 "markeren van wijzigingen wijzigingen; wijzigingsfunctie wijzigingsfunctie; voorbeeld wijzigingen vastleggen Wijzigingen bijhouden, zie wijzigingsfunctie" +msgstr "markeren van wijzigingen wijzigingen markeren wijzigingen; wijzigingsfunctie wijzigingsfunctie; voorbeeld wijzigingen vastleggen Wijzigingen bijhouden, zie wijzigingsfunctie" #: redlining.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-02-24 07:20+0000\n" +"PO-Revision-Date: 2017-04-23 10:26+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1487920817.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492943206.000000\n" #: 01000000.xhp msgctxt "" @@ -9100,7 +9100,7 @@ "33\n" "help.text" msgid "Specifies a color for the grid lines in the current document. To see the grid line color that was saved with the document, go to %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Application Colors, under Scheme find the entry Spreadsheet - Grid lines and set the color to \"Automatic\"." -msgstr "Stelt de kleur in voor de rasterlijnen in het huidige document. Om de kleur van de rasterlijnen te zien die met het document is opgeslagen, gaat u naar%PRODUCTNAME - PreferencesExtra - Opties - %PRODUCTNAME - Vormgeving, onder Gebruikergedefinieerde kleuren zoek Werkbad - Rasterlijnen en stel de kleur in op \"Automatisch\"." +msgstr "Stelt de kleur in voor de rasterlijnen in het huidige document. Om de kleur van de rasterlijnen te zien die met het document is opgeslagen, gaat u naar%PRODUCTNAME - PreferencesExtra - Opties - %PRODUCTNAME - Vormgeving, onder Gebruikergedefinieerde kleuren zoek Werkbad - Rasterlijnen en stel de kleur in op \"Automatisch\"." #: 01060100.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/simpress/01.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/simpress/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/01.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-17 08:06+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-01 20:15+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487318817.000000\n" +"X-POOTLE-MTIME: 1493669715.000000\n" #: 01170000.xhp msgctxt "" @@ -492,7 +492,7 @@ "2\n" "help.text" msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files." -msgstr "" +msgstr "Opent de Navigator, waar u snel naar andere dia's kunt gaan of u tussen open bestanden kunt schakelen." #: 02110000.xhp msgctxt "" @@ -563,7 +563,7 @@ "12\n" "help.text" msgid "Jumps to the first slide in the slide show." -msgstr "" +msgstr "Springt naar de eerste dia van de presentatie." #: 02110000.xhp msgctxt "" @@ -598,7 +598,7 @@ "15\n" "help.text" msgid "Moves back one slide in the slide show." -msgstr "" +msgstr "Gaat een dia terug in de presentatie." #: 02110000.xhp msgctxt "" @@ -633,7 +633,7 @@ "18\n" "help.text" msgid "Move forward one slide in the slide show." -msgstr "" +msgstr "Gaat een dia verder in de presentatie." #: 02110000.xhp msgctxt "" @@ -668,7 +668,7 @@ "21\n" "help.text" msgid "Jumps to the last slide in the slide show." -msgstr "" +msgstr "Springt naar de laatste dia in de presentatie." #: 02110000.xhp msgctxt "" @@ -703,7 +703,7 @@ "24\n" "help.text" msgid "Drag and drop slides and named objects into the active slide. You can only insert slides and named objects from a saved file. You can only insert named objects as copies." -msgstr "" +msgstr "Sleep dia's en benoemde objectn in een actieve dia.U kunt alleen dia's en benoemde object van een opgeslagen bestand invoegen. U kunt benoemde objecten alleen als kopies invoegen." #: 02110000.xhp msgctxt "" @@ -842,7 +842,7 @@ "37\n" "help.text" msgid "Lists available slides. Double-click a slide to make it the active slide." -msgstr "" +msgstr "Toont de beschikbare dia’s. Dubbelklik op een dia om deze actief te maken." #: 02110000.xhp msgctxt "" @@ -860,7 +860,7 @@ "35\n" "help.text" msgid "Lists available $[officename] files. Select a file to display the contents you can insert." -msgstr "" +msgstr "Toont de beschikbare $[officename]-bestanden. Selecteer een bestand om de inhoud, die u kunt invoegen, weer te geven." #: 02120000.xhp msgctxt "" @@ -2159,7 +2159,7 @@ "par_id083120160418133174\n" "help.text" msgid "Header and footer dialog" -msgstr "" +msgstr "Dialoogvenster Kop- en voettekst" #: 03152000.xhp msgctxt "" @@ -6768,7 +6768,7 @@ "bm_id3153818\n" "help.text" msgid "presentations; settings for slide shows; settings for presentations; window / full screen multiple displays" -msgstr "" +msgstr "presentaties; instellingen voor presentaties; instellingen voor presentaties; venster / volledig scherm meerdere schermen" #: 06080000.xhp msgctxt "" @@ -6856,7 +6856,7 @@ "hd_id3150653\n" "help.text" msgid "Presentation Mode" -msgstr "" +msgstr "Presentatiemodus" #: 06080000.xhp msgctxt "" @@ -6872,7 +6872,7 @@ "hd_id3150482\n" "help.text" msgid "Full screen" -msgstr "" +msgstr "Volledig scherm" #: 06080000.xhp msgctxt "" @@ -6888,7 +6888,7 @@ "hd_id3153034\n" "help.text" msgid "In a window" -msgstr "" +msgstr "In een venster" #: 06080000.xhp msgctxt "" @@ -6904,7 +6904,7 @@ "hd_id3145593\n" "help.text" msgid "Loop and repeat after" -msgstr "" +msgstr "Opnieuw en herhaal na" #: 06080000.xhp msgctxt "" @@ -7008,7 +7008,7 @@ "par_id3150475\n" "help.text" msgid "Anything you write with the pen will appear in your slides after exiting the slideshow. The properties of the pen can be changed by choosing the Pen Width or Change pen Color command in the context menu of the running slide show." -msgstr "" +msgstr "Alles wat u met de pen schrijft, wordt opgeslagen als u de presentatie afsluit. De eigenschappen van de pen kunnen aangepast worden door Penbreedte of Wijzig penkleur te kiezen in het contextmenu van de lopende presentatie." #: 06080000.xhp msgctxt "" @@ -7064,7 +7064,7 @@ "hd_id6086611\n" "help.text" msgid "Multiple Displays" -msgstr "" +msgstr "Meerdere schermen" #: 06080000.xhp msgctxt "" @@ -7072,7 +7072,7 @@ "par_id5446943\n" "help.text" msgid "By default the primary display is used for slide show mode. If the current desktop is displayed on more than one display, you can select which display to use for full screen slide show mode. If the current desktop spans only one display, or if the multi display feature is not supported on the current system, you cannot select another display." -msgstr "" +msgstr "Voor presentatiemodus wordt standaard de primaire monitor gebruikt. Als het huidige bureaublad op meer dan een monitor wordt weergegeven, kunt u selecteren welke monitor u voor presentaties op volledig scherm wilt gebruiken. Als het huidige bureaublad maar één monitor beslaat, of als de functie voor meerdere monitoren op het huidige systeem niet ondersteund wordt, kunt u geen andere monitor selecteren." #: 06080000.xhp msgctxt "" @@ -7080,7 +7080,7 @@ "hd_id4962309\n" "help.text" msgid "Presentation display" -msgstr "" +msgstr "Presentatie-weergave" #: 06080000.xhp msgctxt "" @@ -7088,7 +7088,7 @@ "par_id5168919\n" "help.text" msgid "Select a display to use for full screen slide show mode." -msgstr "" +msgstr "Selecteer een monitor die u voor presentaties op volledig scherm wilt gebruiken." #: 06080000.xhp msgctxt "" @@ -7096,7 +7096,7 @@ "par_id4846339\n" "help.text" msgid "If the system allows the user to span a window over all available displays, you can also select \"All displays\". In this case the presentation is spanned over all available displays." -msgstr "" +msgstr "Als het systeem toestaat dat een gebruiker een venster over alle beschikbare monitoren verspreidt, kunt u ook 'Alle monitoren' selecteren. De presentatie beslaat dan alle beschikbare monitoren." #: 06080000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/simpress/guide.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/simpress/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/simpress/guide.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-26 10:22+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-01 20:19+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104558.000000\n" +"X-POOTLE-MTIME: 1493669978.000000\n" #: 3d_create.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3150207\n" "help.text" msgid "3D rotation objects; generating3D objects; generating3D scenes; creatingconverting; to curves, polygons, 3Dextrusion objects" -msgstr "3D-rotatieobjecten; genereren3D-objecten; genererenconverteren; naar bogen, veelhoeken, 3Dextrusieobjecten" +msgstr "3D-rotatieobjecten; genereren3D-objecten; genereren3D-scenes; crmakeneatingconverteren; naar bogen, veelhoeken, 3Dextrusieobjecten" #: 3d_create.xhp msgctxt "" @@ -1178,7 +1178,7 @@ "par_idN1083F\n" "help.text" msgid "Choose File - Templates - Save As Template to save the document as a template." -msgstr "" +msgstr "Kies Bestand - Sjablonen - Opslaan als sjabloon om het document als sjabloon op te slaan." #: background.xhp msgctxt "" @@ -1194,7 +1194,7 @@ "par_idN1084A\n" "help.text" msgid "Now you can use the Templates window to open a new presentation based on your new template." -msgstr "" +msgstr "U kunt nu de Assistent Presentatie gebruiken om een nieuwe presentatie te openen die gebaseerd is op uw nieuwe sjabloon." #: change_scale.xhp msgctxt "" @@ -3528,7 +3528,7 @@ "tit\n" "help.text" msgid "Instructions for Using $[officename] Impress" -msgstr "Instructies voor het gebruik van %PRODUCTNAME Impress" +msgstr "Instructies voor het gebruik van $[officename] Impress" #: main.xhp msgctxt "" @@ -3633,7 +3633,7 @@ "19\n" "help.text" msgid "Select Slide - Slide Master Design." -msgstr "" +msgstr "Selecteer Dia - Masterdia-ontwerp." #: masterpage.xhp msgctxt "" @@ -3704,7 +3704,7 @@ "par_idN106FA\n" "help.text" msgid "Left-click to apply the master page to all slides. Right-click for a submenu." -msgstr "" +msgstr "Klik met de linkermuisknop om de hoofdpagina op alle dia's toe te passen. Klik met de rechtermuisknop voor een submenu." #: masterpage.xhp msgctxt "" @@ -3712,7 +3712,7 @@ "par_idN10747\n" "help.text" msgid "Applies the master page to all slides." -msgstr "" +msgstr "Past de hoofdpagina op alle dia's toe." #: masterpage.xhp msgctxt "" @@ -3720,7 +3720,7 @@ "par_idN10762\n" "help.text" msgid "Applies the master page or the slide design to the selected slides." -msgstr "" +msgstr "Past de hoofdpagina of het dia-ontwerp op de geselecteerde dia's toe." #: masterpage.xhp msgctxt "" @@ -3728,7 +3728,7 @@ "par_idN10785\n" "help.text" msgid "Resizes the preview of the master pages." -msgstr "" +msgstr "Verandert het formaat van het voorbeeld van de hoofdpagina's." #: masterpage.xhp msgctxt "" @@ -3736,7 +3736,7 @@ "par_idN107CB\n" "help.text" msgid "Click to apply a slide design to all selected slides. Right-click for a submenu." -msgstr "" +msgstr "Klik om een dia-ontwerp op alle geselecteerde dia's toe te passen. Klik met de rechtermuisknop voor een submenu." #: masterpage.xhp msgctxt "" @@ -4799,7 +4799,7 @@ "par_id3145248\n" "help.text" msgid "If you want the whole presentation to auto-repeat, open the menu Slide Show - Slide Show Settings. Click Loop and repeat after and OK." -msgstr "" +msgstr "Als u wilt dat de volledige presentatie automatisch wordt herhaald, opent u het menu Presentatie - Instellingen presentatie. Klik op Auto en vervolgens op OK." #: rehearse_timings.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/smath/00.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/smath/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/smath/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2015-11-27 14:07+0000\n" +"PO-Revision-Date: 2017-04-23 10:30+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1448633271.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492943451.000000\n" #: 00000004.xhp msgctxt "" @@ -547,7 +547,7 @@ "par_id3153803\n" "help.text" msgid "Choose Tools - Import MathML from Clipboard" -msgstr "Kies Extra - Formule importeren" +msgstr "Kies Extra - Formule importeren" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/swriter/00.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/swriter/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-26 10:22+0000\n" +"PO-Revision-Date: 2017-04-23 10:36+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1488104562.000000\n" +"X-POOTLE-MTIME: 1492943781.000000\n" #: 00000004.xhp msgctxt "" @@ -360,7 +360,7 @@ "par_id3973244\n" "help.text" msgid "Choose Edit - Direct Cursor Mode" -msgstr "Kies Bewerken - DirctCursormodus" +msgstr "Kies Bewerken - DirctCursormodus" #: 00000403.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-01-07 11:00+0000\n" +"PO-Revision-Date: 2017-04-23 10:48+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786810.000000\n" +"X-POOTLE-MTIME: 1492944491.000000\n" #: anchor_object.xhp msgctxt "" @@ -326,7 +326,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 "nummering; lijsten, tijdens typen lijsten met opsommingstekens;maken tijdens typen lijsten;automatische nummering getallen;lijsten automatische nummering; functie AutoCorrectie opsomingstekens; automatisch gebruiken automatische opsommingstekens alinea's; automatische nummering" +msgstr "nummering; lijsten, tijdens typen lijsten met opsommingstekens;maken tijdens typen lijsten;automatische nummering getallen;lijsten automatische nummering; functie AutoCorrectie opsomingstekens; automatisch gebruiken alinea's; automatische nummering" #: auto_numbering.xhp msgctxt "" @@ -9961,7 +9961,7 @@ "bm_id3155183\n" "help.text" msgid "page breaks; inserting and deleting inserting; page breaks deleting;page breaks pages; inserting/deleting page breaks manual page breaks tables;deleting page breaks before" -msgstr "pagina-einden; invoegen en verwijderen invoegen; pagina-einden verwijderen;pagina-einden pagina's; pagina-einden invoegen/verwijderen handmatige pagina-einden" +msgstr "pagina-einden; invoegen en verwijderen invoegen; pagina-einden verwijderen;pagina-einden pagina's; pagina-einden invoegen/verwijderen handmatige pagina-einden tabellen;pagina-einden ervoor verwijderen" #: page_break.xhp msgctxt "" @@ -13099,7 +13099,7 @@ "bm_id3149832\n" "help.text" msgid "multi-column text text; multi-column columns; on text pages text columns sections; columns in/use of" -msgstr "tekst in meerdere kolommen tekst; in meerdere kolommen kolommen; op tekstpagina's tekstkolommen secties; opmerkingen secties; in/gebruiken in kolommen" +msgstr "tekst in meerdere kolommen tekst; in meerdere kolommen kolommen; op tekstpagina's tekstkolommen secties; in/gebruiken in kolommen" #: sections.xhp msgctxt "" @@ -13606,7 +13606,7 @@ "par_id0525200902184476\n" "help.text" msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the extensions web page." -msgstr "De toepasselijke woordenboeken moeten zijn geïnstalleerd om de spelling en de grammatica van een tekst te kunnen controleren. Voor veel talen bestaan drie verschillende woordenboeken: een spellingcontrole, een woordenboek voor afbrekingen en een thesaurus. Elk woordenboek is slechts geldig voor één taal. Controles voor grammatica kunnen worden gedownload en geïnstalleerd als extensies. Zie de extensies webpagina." +msgstr "De toepasselijke woordenboeken moeten zijn geïnstalleerd om de spelling en de grammatica van een tekst te kunnen controleren. Voor veel talen bestaan drie verschillende woordenboeken: een spellingcontrole, een woordenboek voor afbrekingen en een thesaurus. Elk woordenboek is slechts geldig voor één taal. Controles voor grammatica kunnen worden gedownload en geïnstalleerd als extensies. Zie de extensies webpagina." #: spellcheck_dialog.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/swriter.po libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter.po --- libreoffice-5.3.3~rc1/translations/source/nl/helpcontent2/source/text/swriter.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/helpcontent2/source/text/swriter.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-07 10:59+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-24 20:13+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483786772.000000\n" +"X-POOTLE-MTIME: 1493064817.000000\n" #: classificationbar.xhp msgctxt "" @@ -22,7 +22,7 @@ "tit\n" "help.text" msgid "Document Classification" -msgstr "" +msgstr "Classificatie van het document" #: classificationbar.xhp msgctxt "" @@ -30,7 +30,7 @@ "hd_id3156324\n" "help.text" msgid "Document Classification " -msgstr "" +msgstr "Classificatie van het document " #: classificationbar.xhp msgctxt "" @@ -46,7 +46,7 @@ "par_id030820161744119967\n" "help.text" msgid "Document classification and security is an important issue for businesses and governments." -msgstr "" +msgstr "De classificatie en beveiliging van documenten is belangrijk onderwerp voor bedrijven en overheden." #: classificationbar.xhp msgctxt "" @@ -54,7 +54,7 @@ "par_id030820161744113553\n" "help.text" msgid "Information is exchanged between users and organizations that collaborate to pursue a business goal. Where sensitive information is involved, it is assumed that the parties will have agreed what information is sensitive and how such information will be identified and handled. Any recipient of a resource will rely upon the provider of the information to follow the agreed procedures to identify the sensitivity of the information." -msgstr "" +msgstr "Informatie wordt uitgewisseld tussen gebruikers en organisaties, die samenwerken om een professioneel doel na te streven. Wanneer gevoelige informatie wordt verwerkt, kan men veronderstellen dat de partijen overeenkomen welke informatie gevoelig is en hoe zulke informatie geïdentificeerd en behandeld wordt. Iedere ontvanger van informatie zal vertrouwen op de leverancier van de informatie dat de afgesproken procedures gevolgd werden om de gevoeligheid van de informatie te identificeren." #: classificationbar.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.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: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-04-09 12:09+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-22 06:32+0000\n" +"Last-Translator: vpanter \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491739775.000000\n" +"X-POOTLE-MTIME: 1492842740.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -28663,7 +28663,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "Niet-afdrukbare tekens (Ctrl+F10)" +msgstr "Niet-afdrukbare tekens wisselen" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/nl/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/nl/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/sc/source/ui/src.po 2017-05-03 16:46:29.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: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-04-07 06:35+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-05-01 08:05+0000\n" +"Last-Translator: Cor Nouws \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491546913.000000\n" +"X-POOTLE-MTIME: 1493625911.000000\n" #: filter.src msgctxt "" @@ -18156,7 +18156,7 @@ "1\n" "string.text" msgid "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." -msgstr "Waarden van de inverse van CHI.KWADR.VERD(x;vrijheidsgraden;WAAR())." +msgstr "Waarden van de inverse van CHIKWADRVERD(x;vrijheidsgraden;WAAR())." #: scfuncs.src msgctxt "" @@ -18201,7 +18201,7 @@ "1\n" "string.text" msgid "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())." -msgstr "Waarden van de inverse van CHI.KWADR.VERD(x;vrijheidsgraden;WAAR())." +msgstr "Waarden van de inverse van CHIKWADR.VERD(x;vrijheidsgraden;WAAR())." #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/scaddins/source/analysis.po libreoffice-5.3.3~rc2/translations/source/nl/scaddins/source/analysis.po --- libreoffice-5.3.3~rc1/translations/source/nl/scaddins/source/analysis.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/scaddins/source/analysis.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2015-11-22 10:00+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-22 06:33+0000\n" +"Last-Translator: vpanter \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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1448186439.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492842783.000000\n" #: analysis.src msgctxt "" @@ -3072,7 +3072,7 @@ "1\n" "string.text" msgid "Returns the discount rate for a security" -msgstr "Geeft de percentuele korting (disconto) op een waardepapier" +msgstr "Geeft de procentuele korting op een waardepapier" #: analysis.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/scaddins/source/pricing.po libreoffice-5.3.3~rc2/translations/source/nl/scaddins/source/pricing.po --- libreoffice-5.3.3~rc1/translations/source/nl/scaddins/source/pricing.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/scaddins/source/pricing.po 2017-05-03 16:46:29.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:14+0100\n" -"PO-Revision-Date: 2014-02-21 07:56+0000\n" -"Last-Translator: kees538 \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-04-23 09:27+0000\n" +"Last-Translator: kees538 \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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1392969406.0\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492939630.000000\n" #: pricing.src msgctxt "" @@ -428,7 +428,7 @@ "19\n" "string.text" msgid "String to define if the option is of type knock-(i)n (touch) or knock-(o)ut (no-touch)" -msgstr "tekst om te definiëren of de optie van type knock-(i)n of knock-(o)ut is" +msgstr "Tekenreeks om te definiëren of de optie van het type knock-(i)n of knock-(o)ut is" #: pricing.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/sfx2/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/nl/sfx2/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/nl/sfx2/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/sfx2/uiconfig/ui.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-24 12:22+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-19 20:00+0000\n" +"Last-Translator: vpanter \n" "Language-Team: none\n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482582127.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492632008.000000\n" #: alienwarndialog.ui msgctxt "" @@ -798,6 +798,15 @@ "\n" "This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details." msgstr "" +"%PRODUCTNAME is beschikbaar gesteld onder de bepalingen van d Mozilla Public License, v. 2.0. Een kopie van de MPL is te vinden op http://mozilla.org/MPL/2.0/.\n" +"\n" +"Additionele copyright meldingen van derde partijen en licentiebepalingen voor delen van de software staan in het bestand LICENSE.html; kies Licentie tonen om de precieze details te zien in het Engels.\n" +"\n" +"Alle handelsmerken en geregistreerde handelsmerken die hierin worden genoemd zijn het eigendom van hun respectievelijke eigenaars.\n" +"\n" +"Copyright © 2000, 2017 LibreOffice medewerkers. Alle rechten voorbehouden.\n" +"\n" +"Dit product is gemaakt door %OOOVENDOR, gebaseerd op OpenOffice.org, dat is Copyright 2000, 2011 Oracle en/of haar dochterondernemingen. %OOOVENDOR is erkentelijk voor alle leden van de gemeenschap, zie http://www.libreoffice.org/ voor meer informatie." #: linkeditdialog.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/nl/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/nl/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/svx/source/stbctrls.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-24 12:51+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-04-19 20:02+0000\n" +"Last-Translator: vpanter \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482583873.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492632131.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Niet alle SmartArts konden geladen worden. Opslaan in Microsoft Office 2010 of later zou dit probleem vermijden." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nl/sw/source/ui/app.po libreoffice-5.3.3~rc2/translations/source/nl/sw/source/ui/app.po --- libreoffice-5.3.3~rc1/translations/source/nl/sw/source/ui/app.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nl/sw/source/ui/app.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-24 14:08+0000\n" +"PO-Revision-Date: 2017-04-27 09:30+0000\n" "Last-Translator: kees538 \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482588514.000000\n" +"X-POOTLE-MTIME: 1493285433.000000\n" #: app.src msgctxt "" @@ -790,7 +790,7 @@ "STR_FDLG_TEMPLATE_NAME\n" "string.text" msgid "separated by: " -msgstr "gescheiden door: " +msgstr "Gescheiden door: " #: app.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nn/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/nn/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-03-09 19:44+0000\n" +"PO-Revision-Date: 2017-05-03 08:55+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1489088696.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493801738.000000\n" #: 01120000.xhp msgctxt "" @@ -5678,7 +5678,7 @@ "par_id231020162315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060102.xhp msgctxt "" @@ -5686,7 +5686,7 @@ "par_id231020163315043955\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060103.xhp msgctxt "" @@ -8937,7 +8937,7 @@ "par_id3163813\n" "help.text" msgid "=ISEVEN(48) returns TRUE" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ERPARTAL(48) returnerer SANN." #: 04060104.xhp msgctxt "" @@ -8953,7 +8953,7 @@ "par_id7154759\n" "help.text" msgid "=ISEVEN(0) returns TRUE" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ERPARTAL(0) returnerer SANN." #: 04060104.xhp msgctxt "" @@ -11247,7 +11247,7 @@ "par_id3147475\n" "help.text" msgid "ABS(Number)" -msgstr "GAUSS(Tal)" +msgstr "ABS(Tal)" #: 04060106.xhp msgctxt "" @@ -11271,7 +11271,7 @@ "par_id3152787\n" "help.text" msgid "=ABS(-56) returns 56." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ABS(-56) returnerer 56." #: 04060106.xhp msgctxt "" @@ -11279,7 +11279,7 @@ "par_id3148752\n" "help.text" msgid "=ABS(12) returns 12." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ABS(12) returnerer 12." #: 04060106.xhp msgctxt "" @@ -11287,7 +11287,7 @@ "par_id320139\n" "help.text" msgid "=ABS(0) returns 0." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ABS(0) returnerer 0." #: 04060106.xhp msgctxt "" @@ -12007,7 +12007,7 @@ "par_id3145419\n" "help.text" msgid "=ATANH(0) returns 0." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ATANH(0) returnerer 0." #: 04060106.xhp msgctxt "" @@ -12663,7 +12663,7 @@ "par_id3147525\n" "help.text" msgid "=FACT(0) returns 1." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=FAKULTET(0) returnerer 1." #: 04060106.xhp msgctxt "" @@ -12815,7 +12815,7 @@ "par_id8477736\n" "help.text" msgid "=EVEN(2) returns 2." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.PARTAL(2) returnerer 2." #: 04060106.xhp msgctxt "" @@ -12823,7 +12823,7 @@ "par_id159611\n" "help.text" msgid "=EVEN(0) returns 0." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.PARTAL(0) returnerer 0." #: 04060106.xhp msgctxt "" @@ -12831,7 +12831,7 @@ "par_id6097598\n" "help.text" msgid "=EVEN(-0.5) returns -2." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.PARTAL(-0,5 returnerer -2." #: 04060106.xhp msgctxt "" @@ -13191,7 +13191,7 @@ "par_id3153517\n" "help.text" msgid "=COMBIN(3;2) returns 3." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=KOMBINASJON(3;2) returnerer 3." #: 04060106.xhp msgctxt "" @@ -13279,7 +13279,7 @@ "par_id3152904\n" "help.text" msgid "=COMBINA(3;2) returns 6." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=KOMBINASJONA(3;2) returnerer 6." #: 04060106.xhp msgctxt "" @@ -13439,7 +13439,7 @@ "par_id5747245\n" "help.text" msgid "=LN(EXP(321)) returns 321." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=LN(EKSP(321)) returnerer 321." #: 04060106.xhp msgctxt "" @@ -13671,7 +13671,7 @@ "par_id3145710\n" "help.text" msgid "=CEILING(-11;-2) returns -10" -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM(-11; -2) returnerer -10." #: 04060106.xhp msgctxt "" @@ -13679,7 +13679,7 @@ "par_id3145725\n" "help.text" msgid "=CEILING(-11;-2;0) returns -10" -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM(-11;-2;0) returnerer -10." #: 04060106.xhp msgctxt "" @@ -13687,7 +13687,7 @@ "par_id3145740\n" "help.text" msgid "=CEILING(-11;-2;1) returns -12" -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM(-11; -2; 1) returnerer -12." #: 04060106.xhp msgctxt "" @@ -14335,7 +14335,7 @@ "par_id1278420\n" "help.text" msgid "=MOD(11.25;2.5) returns 1.25." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=REST(11,25;2,5) returnerer 1,25." #: 04060106.xhp msgctxt "" @@ -14663,7 +14663,7 @@ "par_id7726676\n" "help.text" msgid "=ROUNDDOWN(-45.67) returns -45." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.NED(-45,67) returnerer -45." #: 04060106.xhp msgctxt "" @@ -15943,7 +15943,7 @@ "par_id3157283\n" "help.text" msgid "=ODD(1.2) returns 3." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(1,2) returnerer 3." #: 04060106.xhp msgctxt "" @@ -15951,7 +15951,7 @@ "par_id8746910\n" "help.text" msgid "=ODD(1) returns 1." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(1) returnerer 1." #: 04060106.xhp msgctxt "" @@ -15959,7 +15959,7 @@ "par_id9636524\n" "help.text" msgid "=ODD(0) returns 1." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(0) returnerer 1." #: 04060106.xhp msgctxt "" @@ -15967,7 +15967,7 @@ "par_id5675527\n" "help.text" msgid "=ODD(-3.1) returns -5." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.TIL.ODDETAL(-3,1) returnerer -5." #: 04060106.xhp msgctxt "" @@ -16127,7 +16127,7 @@ "par_id3163945\n" "help.text" msgid "=FLOOR( -11;-2) returns -12" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM.NED(-11;-2) returnerer -12." #: 04060106.xhp msgctxt "" @@ -16143,7 +16143,7 @@ "par_id3163988\n" "help.text" msgid "=FLOOR( -11;-2;1) returns -10" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=AVRUND.GJELDANDE.MULTIPLUM.NED(-11;-2;1) returnerer -10." #: 04060106.xhp msgctxt "" @@ -22098,7 +22098,7 @@ "172\n" "help.text" msgid "=ROWS(A10:B12) returns 3." -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=RADER(A10;B12) returnerer 3." #: 04060109.xhp msgctxt "" @@ -48762,7 +48762,7 @@ "161\n" "help.text" msgid "=PERMUTATIONA(11;2) returns 121." -msgstr "=DELTA(1; 2) returnerer 0." +msgstr "=PERMUTASJONA(11; 2) returnerer 121." #: 04060185.xhp msgctxt "" @@ -67303,7 +67303,7 @@ "43\n" "help.text" msgid "=YEAR(1) returns 1899" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ÅR(1) returnerer 1899." #: func_year.xhp msgctxt "" @@ -67312,7 +67312,7 @@ "44\n" "help.text" msgid "=YEAR(2) returns 1900" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ÅR(2) returnerer 1900." #: func_year.xhp msgctxt "" @@ -67321,7 +67321,7 @@ "45\n" "help.text" msgid "=YEAR(33333.33) returns 1991" -msgstr "=IMABS(\"5+12j\") returnerer 13." +msgstr "=ÅR(33333,33) returnerer 1981." #: func_yearfrac.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/nn/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-03-11 10:58+0000\n" +"PO-Revision-Date: 2017-05-03 08:56+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1489229904.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493801767.000000\n" #: 01000000.xhp msgctxt "" @@ -2454,7 +2454,7 @@ "hd_id3154754\n" "help.text" msgid "Pick" -msgstr "" +msgstr "Plukk" #: 01010501.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/shared/01.po libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po --- libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/shared/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-01 15:38+0000\n" +"PO-Revision-Date: 2017-04-29 14:33+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491061105.000000\n" +"X-POOTLE-MTIME: 1493476398.000000\n" #: 01010000.xhp msgctxt "" @@ -44608,7 +44608,7 @@ "hd_id7700430\n" "help.text" msgid "Filling in form fields" -msgstr "A preencher campos de formulário" +msgstr "Preencher campos de formulário" #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/shared/optionen.po libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po --- libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:27+0200\n" -"PO-Revision-Date: 2017-03-24 23:55+0000\n" +"PO-Revision-Date: 2017-04-26 13:31+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1490399719.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493213487.000000\n" #: 01000000.xhp msgctxt "" @@ -6068,7 +6068,7 @@ "par_id3146898\n" "help.text" msgid "If the Images and objects option is not selected, no graphics will be loaded from the Internet. Graphics within a table and without an indication of their size can cause display problems when using an older HTML standard on the browsed page." -msgstr "" +msgstr "Se a opção Imagens e objetos não estiver selecionada, as imagens não serão carregadas da Internet. As imagens de uma tabela sem a indicação do seu tamanho, podem causar problemas de visualização se utilizarem um padrão HTML mais antigo na página que está a ser visualizada." #: 01040200.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/swriter/00.po libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/00.po --- libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/swriter/00.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/00.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-24 23:43+0000\n" +"PO-Revision-Date: 2017-04-26 13:31+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490399039.000000\n" +"X-POOTLE-MTIME: 1493213505.000000\n" #: 00000004.xhp msgctxt "" @@ -1104,7 +1104,7 @@ "par_id3155597\n" "help.text" msgid "Choose Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Entries tab (when Table of Objects is the selected type)" -msgstr "Escolha Inserir - Índice remissivo e índice - Índice remissivo, índice ou bibliografia - Entradas (se o tipo selecionado for Tabela de objetos)" +msgstr "Escolha Inserir - Índice remissivo e índice - Índice remissivo, índice ou bibliografia - Entradas (se o tipo selecionado for Índice de objetos)" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/swriter/01.po libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po --- libreoffice-5.3.3~rc1/translations/source/pt/helpcontent2/source/text/swriter/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/helpcontent2/source/text/swriter/01.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-04-01 16:58+0000\n" +"PO-Revision-Date: 2017-04-26 13:34+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491065899.000000\n" +"X-POOTLE-MTIME: 1493213672.000000\n" #: 01120000.xhp msgctxt "" @@ -11864,7 +11864,7 @@ "2\n" "help.text" msgid "The following options are available when you select Table of Objects as the index type." -msgstr "Estão disponíveis as seguintes opções quando se seleciona Tabela de objetos como o tipo de índice." +msgstr "Estão disponíveis as seguintes opções quando se seleciona Índice de objetos como o tipo de índice." #: 04120216.xhp msgctxt "" @@ -11882,7 +11882,7 @@ "4\n" "help.text" msgid "Select the object types that you want to include in a table of objects." -msgstr "Selecione os tipos de objetos que pretende incluir numa tabela (índice) de objetos." +msgstr "Selecione os tipos de objetos que pretende incluir no índice de objetos." #: 04120217.xhp msgctxt "" @@ -12714,7 +12714,7 @@ "tit\n" "help.text" msgid "Entries (table of objects)" -msgstr "Entradas (tabela de objetos)" +msgstr "Entradas (índice de objetos)" #: 04120226.xhp msgctxt "" @@ -12723,7 +12723,7 @@ "1\n" "help.text" msgid "Entries (table of objects)" -msgstr "Entradas (tabela de objetos)" +msgstr "Entradas (índice de objetos)" #: 04120226.xhp msgctxt "" @@ -12732,7 +12732,7 @@ "2\n" "help.text" msgid "Specify the format for the entries in a Table of Objects. " -msgstr "Especifique o formato das entradas numa Tabela de objetos. " +msgstr "Especifique o formato das entradas num índice de objetos." #: 04120226.xhp msgctxt "" @@ -12741,7 +12741,7 @@ "3\n" "help.text" msgid "A Table of Objects only has one index level." -msgstr "Uma tabela de objetos só possui um nível de índice." +msgstr "Um índice de objetos só possui um nível de índice." #: 04120227.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/sd/uiconfig/simpress/ui.po libreoffice-5.3.3~rc2/translations/source/pt/sd/uiconfig/simpress/ui.po --- libreoffice-5.3.3~rc1/translations/source/pt/sd/uiconfig/simpress/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/sd/uiconfig/simpress/ui.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-04-01 16:53+0000\n" +"PO-Revision-Date: 2017-04-29 14:32+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491065631.000000\n" +"X-POOTLE-MTIME: 1493476368.000000\n" #: customanimationeffecttab.ui msgctxt "" @@ -1940,7 +1940,7 @@ "label\n" "string.text" msgid "No Fill" -msgstr "Não preencher" +msgstr "Sem preenchimento" #: notebookbar_groups.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/svx/source/stbctrls.po libreoffice-5.3.3~rc2/translations/source/pt/svx/source/stbctrls.po --- libreoffice-5.3.3~rc1/translations/source/pt/svx/source/stbctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/svx/source/stbctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-01-21 16:10+0000\n" +"PO-Revision-Date: 2017-05-02 21:37+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485015028.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1493761058.000000\n" #: stbctrls.src msgctxt "" @@ -155,7 +155,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Não foi possível carregar os objetos SmartArts. Guardar no Microsoft Office 2010 ou posterior teria evitado este problema." #: stbctrls.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/svx/source/tbxctrls.po libreoffice-5.3.3~rc2/translations/source/pt/svx/source/tbxctrls.po --- libreoffice-5.3.3~rc1/translations/source/pt/svx/source/tbxctrls.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/svx/source/tbxctrls.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-21 16:11+0000\n" +"PO-Revision-Date: 2017-04-29 14:32+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1485015069.000000\n" +"X-POOTLE-MTIME: 1493476373.000000\n" #: colrctrl.src msgctxt "" @@ -478,7 +478,7 @@ "RID_SVXSTR_NOFILL\n" "string.text" msgid "No Fill" -msgstr "Não preencher" +msgstr "Sem preenchimento" #: tbcontrl.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/sw/source/uibase/utlui.po libreoffice-5.3.3~rc2/translations/source/pt/sw/source/uibase/utlui.po --- libreoffice-5.3.3~rc1/translations/source/pt/sw/source/uibase/utlui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/sw/source/uibase/utlui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-19 22:28+0000\n" +"PO-Revision-Date: 2017-04-26 13:05+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484864881.000000\n" +"X-POOTLE-MTIME: 1493211922.000000\n" #: attrdesc.src msgctxt "" @@ -896,7 +896,7 @@ "STR_TOX_OBJ\n" "string.text" msgid "Table of Objects" -msgstr "Tabela de objetos" +msgstr "Índice de objetos" #: initui.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/pt/sw/uiconfig/swriter/ui.po libreoffice-5.3.3~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po --- libreoffice-5.3.3~rc1/translations/source/pt/sw/uiconfig/swriter/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/pt/sw/uiconfig/swriter/ui.po 2017-05-03 16:46:29.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: 2016-12-27 21:50+0100\n" -"PO-Revision-Date: 2017-03-24 23:49+0000\n" +"PO-Revision-Date: 2017-04-26 13:05+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490399396.000000\n" +"X-POOTLE-MTIME: 1493211926.000000\n" #: abstractdialog.ui msgctxt "" @@ -17351,7 +17351,7 @@ "5\n" "stringlist.text" msgid "Table of Objects" -msgstr "Tabela de objetos" +msgstr "Índice de objetos" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/dbaccess/uiconfig/ui.po libreoffice-5.3.3~rc2/translations/source/uk/dbaccess/uiconfig/ui.po --- libreoffice-5.3.3~rc1/translations/source/uk/dbaccess/uiconfig/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/dbaccess/uiconfig/ui.po 2017-05-03 16:46:29.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: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2017-04-03 20:43+0000\n" -"Last-Translator: Андрій Бандура \n" +"PO-Revision-Date: 2017-05-02 19:59+0000\n" +"Last-Translator: Михаїл Юрійович \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491252194.000000\n" +"X-POOTLE-MTIME: 1493755154.000000\n" #: admindialog.ui msgctxt "" @@ -383,7 +383,7 @@ "label\n" "string.text" msgid "De_finition and data" -msgstr "_Означення та дані" +msgstr "Ст_руктура та дані" #: copytablepage.ui msgctxt "" @@ -392,7 +392,7 @@ "label\n" "string.text" msgid "Def_inition" -msgstr "О_значення" +msgstr "Ст_руктура" #: copytablepage.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "A_s table view" -msgstr "_Як таблиця" +msgstr "_Як представлення" #: copytablepage.ui msgctxt "" @@ -2639,7 +2639,7 @@ "label\n" "string.text" msgid "Use Outer Join syntax '{oj }'" -msgstr "Використовуйте синтаксис зовнішнього з'єднання '{oj }'" +msgstr "Використовувати синтаксис зовнішнього з'єднання '{oj }'" #: specialsettingspage.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/scalc/01.po libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po --- libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/scalc/01.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/01.po 2017-05-03 16:46:29.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: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2017-04-03 16:52+0000\n" -"Last-Translator: Андрій Бандура \n" +"PO-Revision-Date: 2017-04-23 17:26+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1491238323.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492968388.000000\n" #: 01120000.xhp msgctxt "" @@ -2906,7 +2906,7 @@ "par_id3150792\n" "help.text" msgid "Display the page breaks and print ranges in the sheet. Choose View - Normal to switch this mode off." -msgstr "Відображає розбиття на сторінки та діапазон друку в аркушу. Виберіть Перегляд - Звичайний для вимикання цього режиму." +msgstr "Показує розбиття на сторінки та діапазон друку на аркуші. Виберіть Перегляд - Звичайний, щоб вимкнути цей режим." #: 03100000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/scalc/04.po libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/04.po --- libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/scalc/04.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/04.po 2017-05-03 16:46:29.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: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-03-20 17:12+0000\n" -"Last-Translator: Андрій Бандура \n" +"PO-Revision-Date: 2017-04-23 17:26+0000\n" +"Last-Translator: Olexandr Pylypchuk \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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490029958.000000\n" +"X-POOTLE-MTIME: 1492968417.000000\n" #: 01020000.xhp msgctxt "" @@ -856,7 +856,7 @@ "30\n" "help.text" msgid "Checks spelling in the current sheet." -msgstr "Перевіряє правопис поточного аркушу." +msgstr "Перевіряє правопис на поточному аркуші." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/scalc/guide.po libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/guide.po --- libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/scalc/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/scalc/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:39+0100\n" -"PO-Revision-Date: 2017-03-26 12:46+0000\n" +"PO-Revision-Date: 2017-04-23 17:31+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490532363.000000\n" +"X-POOTLE-MTIME: 1492968679.000000\n" #: address_auto.xhp msgctxt "" @@ -2828,7 +2828,7 @@ "55\n" "help.text" msgid "Now you can apply the conditional formatting to the sheet:" -msgstr "Тепер можна застосувати умовне форматування до аркушу:" +msgstr "Тепер можна застосувати умовне форматування до аркуша:" #: cellstyle_conditional.xhp msgctxt "" @@ -3965,7 +3965,7 @@ "par_id9303872\n" "help.text" msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges." -msgstr "Якщо до того ж аркушу потрібно застосувати кілька автофільтрів, спочатку слід визначити діапазони бази даних, після чого застосувати автофільтри до цих діапазонів." +msgstr "Якщо до того ж аркуша потрібно застосувати кілька автофільтрів, спочатку слід визначити діапазони бази даних, після чого застосувати автофільтри до цих діапазонів." #: database_filter.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/shared/explorer/database.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-04-10 17:09+0000\n" +"PO-Revision-Date: 2017-05-02 19:59+0000\n" "Last-Translator: Михаїл Юрійович \n" "Language-Team: LANGUAGE \n" "Language: uk\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1491844167.000000\n" +"X-POOTLE-MTIME: 1493755142.000000\n" #: 02000000.xhp msgctxt "" @@ -7208,7 +7208,7 @@ "par_idN105A5\n" "help.text" msgid "Use Outer Join syntax '{OJ }'" -msgstr "" +msgstr "Використовувати синтаксис зовнішнього з'єднання '{OJ }'" #: dabaadvpropdat.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/swriter/guide.po libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po --- libreoffice-5.3.3~rc1/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/guide.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:12+0100\n" -"PO-Revision-Date: 2017-03-26 13:33+0000\n" +"PO-Revision-Date: 2017-04-23 17:31+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490535237.000000\n" +"X-POOTLE-MTIME: 1492968690.000000\n" #: anchor_object.xhp msgctxt "" @@ -11205,7 +11205,7 @@ "par_idN1070E\n" "help.text" msgid "In the properties dialog for your printer, set the paper orientation to landscape." -msgstr "У діалоговому вікні властивостей для принтера задайте альбомну орієнтацію аркушу." +msgstr "У діалоговому вікні властивостей для принтера задайте альбомну орієнтацію аркуша." #: print_brochure.xhp msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-5.3.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-5.3.3~rc1/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2017-05-03 16:46:29.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: 2016-12-27 21:51+0100\n" -"PO-Revision-Date: 2017-04-15 21:44+0000\n" -"Last-Translator: Михаїл Юрійович \n" +"PO-Revision-Date: 2017-04-23 17:32+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" "Language-Team: translation@linux.org.ua\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1492292699.000000\n" +"X-POOTLE-MTIME: 1492968726.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -986,7 +986,7 @@ "Label\n" "value.text" msgid "To Next Sheet" -msgstr "До наступного аркушу" +msgstr "До наступного аркуша" #: CalcCommands.xcu msgctxt "" @@ -1004,7 +1004,7 @@ "Label\n" "value.text" msgid "To Previous Sheet" -msgstr "До попереднього аркушу" +msgstr "До попереднього аркуша" #: CalcCommands.xcu msgctxt "" @@ -1931,7 +1931,7 @@ "Label\n" "value.text" msgid "Sheet Area Input Field" -msgstr "Поле вводу області аркушу" +msgstr "Поле вводу області аркуша" #: CalcCommands.xcu msgctxt "" @@ -27898,7 +27898,7 @@ "Label\n" "value.text" msgid "Unprotect sheet" -msgstr "Зняти захист з аркушу" +msgstr "Зняти захист з аркуша" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/uk/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/uk/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2017-03-26 13:06+0000\n" +"PO-Revision-Date: 2017-04-23 17:33+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: LANGUAGE \n" "Language: uk\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490533614.000000\n" +"X-POOTLE-MTIME: 1492968786.000000\n" #: filter.src msgctxt "" @@ -738,7 +738,7 @@ "STR_UNDO_UNPROTECT_TAB\n" "string.text" msgid "Unprotect sheet" -msgstr "Зняти захист з аркушу" +msgstr "Зняти захист з аркуша" #: globstr.src msgctxt "" @@ -2378,7 +2378,7 @@ "STR_SPELLING_BEGIN_TAB\n" "string.text" msgid "Should the spellcheck be continued at the beginning of the current sheet?" -msgstr "Продовжити перевірку орфографії з початку поточного аркушу?" +msgstr "Продовжити перевірку правопису з початку поточного аркуша?" #: globstr.src msgctxt "" @@ -2402,7 +2402,7 @@ "STR_SPELLING_STOP_OK\n" "string.text" msgid "The spellcheck of this sheet has been completed." -msgstr "Перевірку орфографії цього аркушу завершено." +msgstr "Перевірку правопису на цьому аркуші завершено." #: globstr.src msgctxt "" @@ -3017,7 +3017,7 @@ "beyond the sheet." msgstr "" "Заповнені комірки не можна\n" -"перемістити за межі аркушу." +"перемістити за межі аркуша." #: globstr.src msgctxt "" @@ -24526,7 +24526,7 @@ "SCSTR_PROTECTTAB\n" "string.text" msgid "Protect Sheet" -msgstr "Захист аркушу" +msgstr "Захистити аркуш" #: scstring.src msgctxt "" @@ -24534,7 +24534,7 @@ "SCSTR_UNPROTECTTAB\n" "string.text" msgid "Unprotect sheet" -msgstr "Зняти захист з аркушу" +msgstr "Зняти захист з аркуша" #: scstring.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/sc/uiconfig/scalc/ui.po libreoffice-5.3.3~rc2/translations/source/uk/sc/uiconfig/scalc/ui.po --- libreoffice-5.3.3~rc1/translations/source/uk/sc/uiconfig/scalc/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-26 13:07+0000\n" +"PO-Revision-Date: 2017-04-23 17:33+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: none\n" "Language: uk\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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490533623.000000\n" +"X-POOTLE-MTIME: 1492968803.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -5069,7 +5069,7 @@ "label\n" "string.text" msgid "_After current sheet" -msgstr "П_ісля поточного аркушу" +msgstr "П_ісля поточного аркуша" #: insertsheet.ui msgctxt "" @@ -8237,7 +8237,7 @@ "title\n" "string.text" msgid "Protect Sheet" -msgstr "Захист аркушу" +msgstr "Захистити аркуш" #: protectsheetdlg.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/uk/wizards/source/euro.po libreoffice-5.3.3~rc2/translations/source/uk/wizards/source/euro.po --- libreoffice-5.3.3~rc1/translations/source/uk/wizards/source/euro.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/uk/wizards/source/euro.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2016-04-11 19:59+0000\n" +"PO-Revision-Date: 2017-04-23 17:33+0000\n" "Last-Translator: Olexandr Pylypchuk \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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1460404782.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492968833.000000\n" #: euro.src msgctxt "" @@ -230,7 +230,7 @@ "STEP_AUTOPILOT + 7\n" "string.text" msgid "Temporarily unprotect sheet without query" -msgstr "Тимчасово зняти захист з аркушу без запиту" +msgstr "Тимчасово зняти захист з аркуша без запиту" #: euro.src msgctxt "" @@ -278,7 +278,7 @@ "STATUSLINE + 4\n" "string.text" msgid "Sheet protection for each sheet will be restored..." -msgstr "Відновлюється захист кожного аркушу..." +msgstr "Відновлюється захист кожного аркуша..." #: euro.src msgctxt "" @@ -390,7 +390,7 @@ "MESSAGES + 12\n" "string.text" msgid "Sheet cannot be unprotected" -msgstr "Неможливо зняти захист з аркушу" +msgstr "Неможливо зняти захист з аркуша" #: euro.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/vec/sc/uiconfig/scalc/ui.po libreoffice-5.3.3~rc2/translations/source/vec/sc/uiconfig/scalc/ui.po --- libreoffice-5.3.3~rc1/translations/source/vec/sc/uiconfig/scalc/ui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/vec/sc/uiconfig/scalc/ui.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-28 05:18+0000\n" +"PO-Revision-Date: 2017-04-27 05:30+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490678297.000000\n" +"X-POOTLE-MTIME: 1493271043.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -10307,7 +10307,7 @@ "label\n" "string.text" msgid "Minim_um" -msgstr "Tramite _modìfega de łe cełe" +msgstr "Mìn_emo" #: solverdlg.ui msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/vec/sfx2/source/view.po libreoffice-5.3.3~rc2/translations/source/vec/sfx2/source/view.po --- libreoffice-5.3.3~rc1/translations/source/vec/sfx2/source/view.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/vec/sfx2/source/view.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2017-03-30 05:43+0000\n" +"PO-Revision-Date: 2017-04-27 15:34+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490852580.000000\n" +"X-POOTLE-MTIME: 1493307264.000000\n" #: view.src msgctxt "" @@ -160,7 +160,7 @@ "STR_REPAIREDDOCUMENT\n" "string.text" msgid " (repaired document)" -msgstr " (documento riparà)" +msgstr " (documento justà)" #: view.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/vec/wizards/source/formwizard.po libreoffice-5.3.3~rc2/translations/source/vec/wizards/source/formwizard.po --- libreoffice-5.3.3~rc1/translations/source/vec/wizards/source/formwizard.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/vec/wizards/source/formwizard.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:32+0100\n" -"PO-Revision-Date: 2017-03-29 16:35+0000\n" +"PO-Revision-Date: 2017-04-27 15:36+0000\n" "Last-Translator: VenetoABC \n" "Language-Team: LANGUAGE \n" "Language: vec\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1490805341.000000\n" +"X-POOTLE-MTIME: 1493307416.000000\n" #: dbwizres.src msgctxt "" @@ -70,7 +70,7 @@ "RID_COMMON_START + 6\n" "string.text" msgid "The files required could not be found.
              Please start the %PRODUCTNAME Setup and choose 'Repair'." -msgstr "No ze mìa posìbiłe trovar i file che te ghe domandà.
              Fa partir el programa de instałasion de %PRODUCTNAME e sełesiona 'Reparasion'." +msgstr "No ze mìa posìbiłe trovar i file che te ghe domandà.
              Fa partir el programa de instałasion de %PRODUCTNAME e sełesiona 'Justa'." #: dbwizres.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/cui/source/options.po libreoffice-5.3.3~rc2/translations/source/zh-CN/cui/source/options.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/cui/source/options.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/cui/source/options.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-01-20 04:40+0000\n" +"PO-Revision-Date: 2017-04-21 04:07+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1484887210.000000\n" +"X-POOTLE-MTIME: 1492747679.000000\n" #: connpooloptions.src msgctxt "" @@ -296,7 +296,7 @@ "RID_SVXSTR_OPTIONS_RESTART\n" "string.text" msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect." -msgstr "请重新启动%PRODUCTNAME以便新的或更改的值生效。" +msgstr "请重新启动 %PRODUCTNAME 以便新的或更改的值生效。" #: optjava.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/desktop/source/deployment/gui.po libreoffice-5.3.3~rc2/translations/source/zh-CN/desktop/source/deployment/gui.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/desktop/source/deployment/gui.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/desktop/source/deployment/gui.po 2017-05-03 16:46:29.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: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-07-05 11:41+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2017-04-21 04:08+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467718906.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747713.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -423,7 +423,7 @@ "Click 'OK' to replace the installed extension.\n" "Click 'Cancel' to stop the installation." msgstr "" -"您将要安装扩展'$NAME'的$NEW版本。\n" +"您将要安装扩展 '$NAME' 的 $NEW 版本。\n" "这个扩展的新版本 $DEPLOYED 已经安装。\n" "点击“确定”以替换已安装的扩展。\n" "点击“取消”结束安装。" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/readlicense_oo/docs.po libreoffice-5.3.3~rc2/translations/source/zh-CN/readlicense_oo/docs.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/readlicense_oo/docs.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/readlicense_oo/docs.po 2017-05-03 16:46:29.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: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-03-28 04:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-04-21 04:09+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1459139123.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747742.000000\n" #: 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 "${PRODUCTNAME} 社区负责此产品的开发,我们邀请您参与进来,成为LibreOffice全球社区中的一员。如果您是新用户,可以访问 ${PRODUCTNAME} 网站查阅 ${PRODUCTNAME} 项目以及相关信息。访问 http://zh-cn.libreoffice.org。" +msgstr "${PRODUCTNAME} 社区负责此产品的开发,我们邀请您参与进来,成为 LibreOffice 全球社区中的一员。如果您是新用户,可以访问 ${PRODUCTNAME} 网站查阅 ${PRODUCTNAME} 项目以及相关信息。访问 http://zh-cn.libreoffice.org。" #: readme.xrm msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/sc/source/ui/src.po libreoffice-5.3.3~rc2/translations/source/zh-CN/sc/source/ui/src.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/sc/source/ui/src.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/sc/source/ui/src.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-10 23:38+0100\n" -"PO-Revision-Date: 2016-12-29 11:56+0000\n" +"PO-Revision-Date: 2017-04-21 04:10+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1483012597.000000\n" +"X-POOTLE-MTIME: 1492747808.000000\n" #: filter.src msgctxt "" @@ -1247,7 +1247,7 @@ "STR_FILTER_SELCOUNT\n" "string.text" msgid "$1 of $2 records found" -msgstr "在$1条记录中找到了$2条" +msgstr "在 $1 条记录中找到了 $2 条" #: globstr.src msgctxt "" @@ -4695,7 +4695,7 @@ "STR_TABLE_COUNT\n" "string.text" msgid "Sheet %1 of %2" -msgstr "工作表 %1,共%2张" +msgstr "工作表 %1,共 %2 张" #: globstr.src msgctxt "" @@ -4704,7 +4704,7 @@ "STR_FUNCTIONS_FOUND\n" "string.text" msgid "%1 and %2 more" -msgstr "%1个,还有%2个" +msgstr "%1 个,还有 %2 个" #: globstr.src msgctxt "" @@ -19830,7 +19830,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "置信度(默认为0.95);0到1(不包括1)之间的值,表示1到100%的预测区间。" +msgstr "置信度(默认为 0.95);0 到 1(不包括 1)之间的值,表示 1 到 100% 的预测区间。" #: scfuncs.src msgctxt "" @@ -19965,7 +19965,7 @@ "9\n" "string.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "置信度(默认为0.95);0到1(不包括1)之间的值,表示1到100%的预测区间。" +msgstr "置信度(默认为 0.95);0 到 1(不包括 1)之间的值,表示 1 到 100% 的预测区间。" #: scfuncs.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/scp2/source/activex.po libreoffice-5.3.3~rc2/translations/source/zh-CN/scp2/source/activex.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/scp2/source/activex.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/scp2/source/activex.po 2017-05-03 16:46:29.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: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-03-28 04:27+0000\n" -"Last-Translator: 琨珑 锁 \n" +"PO-Revision-Date: 2017-04-21 04:10+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1459139247.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747813.000000\n" #: module_activex.ulf msgctxt "" @@ -30,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "Deprecated Component (see release notes) to enable Microsoft Internet Explorer to display %PRODUCTNAME documents." -msgstr "已弃用,用于在Microsoft Internet Explorer中显示%PRODUCTNAME文档。" +msgstr "已弃用,用于在 Microsoft Internet Explorer 中显示 %PRODUCTNAME 文档。" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/scp2/source/ooo.po libreoffice-5.3.3~rc2/translations/source/zh-CN/scp2/source/ooo.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/scp2/source/ooo.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/scp2/source/ooo.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-12-01 12:11+0100\n" -"PO-Revision-Date: 2016-12-27 23:34+0000\n" +"PO-Revision-Date: 2017-04-21 04:10+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-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482881643.000000\n" +"X-POOTLE-MTIME: 1492747841.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -2254,7 +2254,7 @@ "STR_NAME_MODULE_LANGPACK_PA_IN\n" "LngText.text" msgid "Punjabi" -msgstr "印度方言 [Punjabi]" +msgstr "旁遮普语 [Punjabi]" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-5.3.3~rc1/translations/source/zh-CN/svtools/source/misc.po libreoffice-5.3.3~rc2/translations/source/zh-CN/svtools/source/misc.po --- libreoffice-5.3.3~rc1/translations/source/zh-CN/svtools/source/misc.po 2017-04-19 15:26:56.000000000 +0000 +++ libreoffice-5.3.3~rc2/translations/source/zh-CN/svtools/source/misc.po 2017-05-03 16:46:29.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-04-11 22:26+0200\n" -"PO-Revision-Date: 2016-12-27 23:54+0000\n" +"PO-Revision-Date: 2017-04-21 04:11+0000\n" "Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1482882872.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1492747867.000000\n" #: imagemgr.src msgctxt "" @@ -2814,7 +2814,7 @@ "LANGUAGE_GUARANI_PARAGUAY\n" "pairedlist.text" msgid "Guarani (Paraguay)" -msgstr "Guarani (Paraguay) [巴拉圭瓜拉尼语]" +msgstr "Guarani (Paraguay) [瓜拉尼语,巴拉圭]" #: langtab.src msgctxt "" diff -Nru libreoffice-5.3.3~rc1/vcl/inc/win/saldata.hxx libreoffice-5.3.3~rc2/vcl/inc/win/saldata.hxx --- libreoffice-5.3.3~rc1/vcl/inc/win/saldata.hxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/vcl/inc/win/saldata.hxx 2017-05-03 16:46:29.000000000 +0000 @@ -121,7 +121,9 @@ std::map< UINT,sal_uInt16 > maVKMap; // map some dynamic VK_* entries // must be deleted before exit(), so delete it in DeInitSalData() - std::unique_ptr m_pTextOutRenderer; + std::unique_ptr m_pD2DWriteTextOutRenderer; + // tdf#107205 need 2 instances because D2DWrite can't rotate text + std::unique_ptr m_pExTextOutRenderer; }; inline void SetSalData( SalData* pData ) { ImplGetSVData()->mpSalData = pData; } diff -Nru libreoffice-5.3.3~rc1/vcl/win/gdi/winlayout.cxx libreoffice-5.3.3~rc2/vcl/win/gdi/winlayout.cxx --- libreoffice-5.3.3~rc1/vcl/win/gdi/winlayout.cxx 2017-04-19 15:27:20.000000000 +0000 +++ libreoffice-5.3.3~rc2/vcl/win/gdi/winlayout.cxx 2017-05-03 16:46:29.000000000 +0000 @@ -3080,18 +3080,24 @@ abort(); } - if (!pSalData->m_pTextOutRenderer) + if (bUseDWrite) { - if (bUseDWrite && D2DWriteTextOutRenderer::InitModules()) + static bool const bSuccess(D2DWriteTextOutRenderer::InitModules()); + if (bSuccess && !pSalData->m_pD2DWriteTextOutRenderer) { - pSalData->m_pTextOutRenderer.reset(new D2DWriteTextOutRenderer()); + pSalData->m_pD2DWriteTextOutRenderer.reset(new D2DWriteTextOutRenderer()); } - else + if (pSalData->m_pD2DWriteTextOutRenderer) { - pSalData->m_pTextOutRenderer.reset(new ExTextOutRenderer()); + return *pSalData->m_pD2DWriteTextOutRenderer; } + // else: fall back to GDI } - return *pSalData->m_pTextOutRenderer; + if (!pSalData->m_pExTextOutRenderer) + { + pSalData->m_pExTextOutRenderer.reset(new ExTextOutRenderer); + } + return *pSalData->m_pExTextOutRenderer; }