diff -Nru libreoffice-l10n-5.0.2~rc2/basic/source/classes/sbxmod.cxx libreoffice-l10n-5.0.3~rc2/basic/source/classes/sbxmod.cxx --- libreoffice-l10n-5.0.2~rc2/basic/source/classes/sbxmod.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/basic/source/classes/sbxmod.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -77,6 +77,8 @@ #include "sbxmod.hxx" #include "parser.hxx" +#include + using namespace com::sun::star; using namespace com::sun::star::lang; using namespace com::sun::star::reflection; @@ -1068,6 +1070,7 @@ void SbModule::Run( SbMethod* pMeth ) { SAL_INFO("basic","About to run " << OUStringToOString( pMeth->GetName(), RTL_TEXTENCODING_UTF8 ).getStr() << ", vba compatmode is " << mbVBACompat ); + static sal_uInt16 nMaxCallLevel = 0; bool bDelInst = ( GetSbData()->pInst == NULL ); @@ -1175,7 +1178,9 @@ { GetSbData()->pInst->EnableCompatibility( true ); } + while( pRt->Step() ) {} + if( pRt->pNext ) pRt->pNext->unblock(); @@ -2035,14 +2040,35 @@ { if( !SbxMethod::LoadData( rStrm, 1 ) ) return false; - sal_Int16 n; - rStrm.ReadInt16( n ); + + sal_uInt16 nFlag; + rStrm.ReadUInt16( nFlag ); + sal_Int16 nTempStart = (sal_Int16)nStart; + if( nVer == 2 ) + { rStrm.ReadUInt16( nLine1 ).ReadUInt16( nLine2 ).ReadInt16( nTempStart ).ReadCharAsBool( bInvalid ); + //tdf#94617 + if (nFlag & 0x8000) + { + sal_uInt16 nMult = nFlag & 0x7FFF; + sal_Int16 nMax = std::numeric_limits::max(); + nStart = nMult * nMax + nTempStart; + } + else + { + nStart = nTempStart; + } + } + else + { + nStart = nTempStart; + } + // HACK ue to 'Referenz could not be saved' SetFlag( SBX_NO_MODIFY ); - nStart = nTempStart; + return true; } @@ -2050,11 +2076,19 @@ { if( !SbxMethod::StoreData( rStrm ) ) return false; - rStrm.WriteInt16( nDebugFlags ) + + //tdf#94617 + sal_Int16 nMax = std::numeric_limits::max(); + sal_Int16 nStartTemp = nStart % nMax; + sal_uInt16 nDebugFlagsTemp = nStart / nMax; + nDebugFlagsTemp |= 0x8000; + + rStrm.WriteUInt16( nDebugFlagsTemp ) .WriteInt16( nLine1 ) .WriteInt16( nLine2 ) - .WriteInt16( nStart ) + .WriteInt16( nStartTemp ) .WriteBool( bInvalid ); + return true; } diff -Nru libreoffice-l10n-5.0.2~rc2/basic/source/inc/filefmt.hxx libreoffice-l10n-5.0.3~rc2/basic/source/inc/filefmt.hxx --- libreoffice-l10n-5.0.2~rc2/basic/source/inc/filefmt.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/basic/source/inc/filefmt.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -40,11 +40,12 @@ // Version 11: #29955 force anew compilation because of build-inconsistences // Version 12: aoo#64377 increase code size that basic can handle // tdf#75973 support user defined types B_USERTYPES in password protected macros +// Version 13: tdf#94617 store methods nStart information greater than sal_Int16 limit // #define B_LEGACYVERSION 0x00000011L #define B_EXT_IMG_VERSION 0x00000012L -#define B_CURVERSION 0x00000012L +#define B_CURVERSION 0x00000013L // The file contains either a module- or a library-record. // Those records contain further records. Every record's got diff -Nru libreoffice-l10n-5.0.2~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx libreoffice-l10n-5.0.3~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx --- libreoffice-l10n-5.0.2~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -609,8 +609,8 @@ // 2.Pass: Get the total needed memory for class ExceptionType // (with embedded type_info) and keep the sizes for each instance - // is stored in alloced int array - int *excecptionTypeSizeArray = new int[nLen]; + // is stored in allocated int array + int *exceptionTypeSizeArray = new int[nLen]; nLen = 0; for (pCompTD = (typelib_CompoundTypeDescription*)pTD; @@ -625,14 +625,14 @@ n++; typeInfoLen = n*4; } - excecptionTypeSizeArray[nLen++] = typeInfoLen + sizeof(ExceptionType); + exceptionTypeSizeArray[nLen++] = typeInfoLen + sizeof(ExceptionType); } // Total ExceptionType related mem int excTypeAddLen = 0; for (int i = 0; i < nLen; i++) { - excTypeAddLen += excecptionTypeSizeArray[i]; + excTypeAddLen += exceptionTypeSizeArray[i]; } // Allocate mem for code and all dynamic data in one chunk to guarantee @@ -684,7 +684,7 @@ // Next trampoline entry offset pCodeOffset += codeSnippetSize; // Next ExceptionType placement offset - etMemOffset += excecptionTypeSizeArray[nPos - 1]; + etMemOffset += exceptionTypeSizeArray[nPos - 1]; // Keep offset of addresses of ET for D-Tor call in ~RaiseInfo types[nPos++] @@ -694,7 +694,7 @@ assert(etMem + etMemOffset == pCode + totalSize); // remove array - delete excecptionTypeSizeArray; + delete[] exceptionTypeSizeArray; } RaiseInfo::~RaiseInfo() throw () diff -Nru libreoffice-l10n-5.0.2~rc2/configure.ac libreoffice-l10n-5.0.3~rc2/configure.ac --- libreoffice-l10n-5.0.2~rc2/configure.ac 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/configure.ac 2015-10-24 15:21:49.000000000 +0000 @@ -9,7 +9,7 @@ # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[5.0.2.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[5.0.3.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) @@ -11318,6 +11318,7 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([[ #define SAL_OVERRIDE +#include #include "tst_exclude_socket_notifiers.moc" int main(int argc, char *argv[]) @@ -11351,6 +11352,7 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([[ #define SAL_OVERRIDE +#include #include "tst_exclude_posted_events.moc" int main(int argc, char *argv[]) diff -Nru libreoffice-l10n-5.0.2~rc2/connectivity/source/commontools/FValue.cxx libreoffice-l10n-5.0.3~rc2/connectivity/source/commontools/FValue.cxx --- libreoffice-l10n-5.0.2~rc2/connectivity/source/commontools/FValue.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/connectivity/source/commontools/FValue.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -103,6 +103,74 @@ } return bIsCompatible; } + + static bool isStorageComparable(sal_Int32 _eType1, sal_Int32 _eType2) + { + bool bIsComparable = true; + + if (_eType1 != _eType2) + { + SAL_INFO( "connectivity.commontools", "ORowSetValue::isStorageCompatible _eType1 != _eType2" ); + switch (_eType1) + { + case DataType::CHAR: + case DataType::VARCHAR: + case DataType::LONGVARCHAR: + bIsComparable = (DataType::CHAR == _eType2) + || (DataType::VARCHAR == _eType2) + || (DataType::LONGVARCHAR == _eType2); + break; + + case DataType::DECIMAL: + case DataType::NUMERIC: + bIsComparable = (DataType::DECIMAL == _eType2) + || (DataType::NUMERIC == _eType2); + break; + + case DataType::DOUBLE: + case DataType::REAL: + bIsComparable = (DataType::DOUBLE == _eType2) + || (DataType::REAL == _eType2); + break; + + case DataType::BINARY: + case DataType::VARBINARY: + case DataType::LONGVARBINARY: + bIsComparable = (DataType::BINARY == _eType2) + || (DataType::VARBINARY == _eType2) + || (DataType::LONGVARBINARY == _eType2); + break; + + case DataType::INTEGER: + bIsComparable = (DataType::SMALLINT == _eType2) + || (DataType::TINYINT == _eType2) + || (DataType::BIT == _eType2) + || (DataType::BOOLEAN == _eType2); + break; + case DataType::SMALLINT: + bIsComparable = (DataType::TINYINT == _eType2) + || (DataType::BIT == _eType2) + || (DataType::BOOLEAN == _eType2); + break; + case DataType::TINYINT: + bIsComparable = (DataType::BIT == _eType2) + || (DataType::BOOLEAN == _eType2); + break; + + case DataType::BLOB: + case DataType::CLOB: + case DataType::OBJECT: + bIsComparable = (DataType::BLOB == _eType2) + || (DataType::CLOB == _eType2) + || (DataType::OBJECT == _eType2); + break; + + default: + bIsComparable = false; + } + } + return bIsComparable; + } } @@ -775,7 +843,7 @@ if(m_bNull && _rRH.isNull()) return true; - if ( m_eTypeKind != _rRH.m_eTypeKind ) + if ( !isStorageComparable(m_eTypeKind, _rRH.m_eTypeKind )) { switch(m_eTypeKind) { diff -Nru libreoffice-l10n-5.0.2~rc2/connectivity/source/drivers/mork/MConnection.cxx libreoffice-l10n-5.0.3~rc2/connectivity/source/drivers/mork/MConnection.cxx --- libreoffice-l10n-5.0.2~rc2/connectivity/source/drivers/mork/MConnection.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/connectivity/source/drivers/mork/MConnection.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -143,7 +143,9 @@ if (!m_pBook->open(strPath.getStr())) { SAL_WARN("connectivity.mork", "Can not parse abook mork file: " << strPath); - throwGenericSQLException( STR_COULD_NOT_LOAD_FILE, *this ); + const OUString sError( getResources().getResourceStringWithSubstitution( + STR_COULD_NOT_LOAD_FILE, "$filename$", abook)); + ::dbtools::throwGenericSQLException( sError, *this ); } // read history only in production @@ -153,7 +155,9 @@ if (!m_pHistory->open(strPath.getStr())) { SAL_WARN("connectivity.mork", "Can not parse history mork file: " << strPath); - throwGenericSQLException( STR_COULD_NOT_LOAD_FILE, *this ); + const OUString sError( getResources().getResourceStringWithSubstitution( + STR_COULD_NOT_LOAD_FILE, "$filename$", history)); + ::dbtools::throwGenericSQLException( sError, *this ); } } diff -Nru libreoffice-l10n-5.0.2~rc2/dbaccess/source/ui/querydesign/TableWindowTitle.cxx libreoffice-l10n-5.0.3~rc2/dbaccess/source/ui/querydesign/TableWindowTitle.cxx --- libreoffice-l10n-5.0.2~rc2/dbaccess/source/ui/querydesign/TableWindowTitle.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/dbaccess/source/ui/querydesign/TableWindowTitle.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -110,7 +110,11 @@ { GrabFocus(); if ( m_pTabWin ) - m_pTabWin->Command( rEvt ); + { + // tdf#94709 - protect shutdown code-path. + VclPtr xTabWin(m_pTabWin); + xTabWin->Command( rEvt ); + } else Control::Command(rEvt); } diff -Nru libreoffice-l10n-5.0.2~rc2/debian/changelog libreoffice-l10n-5.0.3~rc2/debian/changelog --- libreoffice-l10n-5.0.2~rc2/debian/changelog 2015-09-18 11:09:33.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/changelog 2015-10-28 22:22:11.000000000 +0000 @@ -1,16 +1,49 @@ -libreoffice-l10n (1:5.0.2~rc2-0ubuntu1~wily1~ppa1) wily; urgency=medium +libreoffice-l10n (1:5.0.3~rc2-0ubuntu1) wily; urgency=medium * new upstream rc + + -- Bjoern Michaelsen Wed, 28 Oct 2015 00:39:00 +0100 + +libreoffice-l10n (1:5.0.2-0ubuntu3) wily; urgency=medium + + * fall back to SYSTEM_GCC_VERSION, when SYSTEM_GCJ_VERSION is empty + * substitute xfonts-mathml with fonts-stix (lp: #1487148) + * cherry-pick from Debian: + - readd conflicts against openoffice-unbundled to libreoffice-common. + openoffice*-debian-menus contains /usr/bin/soffice + * fix gug language description (thanks Rene) + * add build version for "About LibreOffice" + * create profile defaulting to human style on unity (lp: #1508177) + * reenable Ubuntu palette + * handle integral translations + + -- Bjoern Michaelsen Fri, 23 Oct 2015 00:23:47 +0200 + +libreoffice-l10n (1:5.0.2-0ubuntu2) xenial; urgency=medium + + * No-change rebuild for python3 defaults change. + + -- Matthias Klose Fri, 23 Oct 2015 15:04:41 +0000 + +libreoffice-l10n (1:5.0.2-0ubuntu1) wily; urgency=medium + + * new upstream release * removed upstreamed patches + * cherry-picks from Debian: + - update shlibs.override + - bump gtk+ requirements + - move liblibreofficekitgtk.so to -gtk - -- Bjoern Michaelsen Fri, 18 Sep 2015 13:05:43 +0200 + -- Bjoern Michaelsen Thu, 01 Oct 2015 00:49:31 +0200 -libreoffice-l10n (1:5.0.1-0ubuntu2~wily1~ppa1) wily; urgency=medium +libreoffice-l10n (1:5.0.1-0ubuntu2) wily; urgency=medium - * use system libwps, libcmis, cppunit - * use system libetonyek, which is in main now (lp: #1410883) + * Build for arm64 and ppc64el. + * Build using system libraries for libcppunit, libetonyek, liborcus, + libpagemaker, libwps and libcmis. The internal copies are not updated + for at least ppc64el. - -- Bjoern Michaelsen Fri, 11 Sep 2015 09:21:37 +0200 + -- Matthias Klose Fri, 11 Sep 2015 17:22:56 +0200 libreoffice-l10n (1:5.0.1-0ubuntu1) wily; urgency=medium diff -Nru libreoffice-l10n-5.0.2~rc2/debian/config libreoffice-l10n-5.0.3~rc2/debian/config --- libreoffice-l10n-5.0.2~rc2/debian/config 2015-09-18 11:09:33.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/config 2015-10-28 22:22:11.000000000 +0000 @@ -1,5 +1,5 @@ -BUILD_DEPS:=autoconf, automake, bc, bison, bzip2, dpkg-dev (>= 1.16.1), fastjar, flex (>= 2.3.35), gperf, libarchive-zip-perl, libc0.1 (>= 2.10.2-7) [kfreebsd-i386 kfreebsd-amd64], libcups2-dev, libfontconfig1-dev, libfreetype6-dev (>= 2.2.0), libice-dev, libsm-dev, libx11-dev, libxaw7-dev, libxext-dev, libxinerama-dev, libxkbfile-dev, libxrender-dev, libxt-dev, libxtst-dev, pkg-config, unzip, x11proto-render-dev, xsltproc, zip, zlib1g-dev , binutils (>= 2.23) [mips mipsel], libc6 (>= 2.17-6) [mips mipsel] , gcc- [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] ,g++- [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , libgl1-mesa-dev, libglu1-mesa-dev , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev , libgraphite2-dev (>= 0.9.3) , libharfbuzz-dev (>= 0.9.18) , libexttextcat-dev (>= 3.1.1) , libjpeg-dev , libxml2-dev, libxml2-utils , libxslt1-dev , libexpat1-dev , unixodbc-dev (>= 2.2.11) , libsane-dev , libpng12-dev , libcurl4-gnutls-dev , libssl-dev (>= 0.9.8) , python3 , python3-dev (>= 3.3) , dh-python , debhelper (>= 7.2.3~) , libcppunit-dev (>= 1.13.2-2.1) , gdb , fontconfig , fonts-liberation , junit4 (>= 4.8.2-2) , maven-repo-helper , java-common (>= 0.49) , default-jdk , default-jdk (>= 1:1.7-48) [ia64] , gcj-jdk [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , gcj-native-helper [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386], libgcj-common (>= 1:4.4.1) [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , ant (>= 1.7.0), ant-optional (>= 1.7.0) , javahelper (>= 0.37~) , libnss3-dev (>= 3.12.3) , cpp-5 , libhunspell-dev (>= 1.1.5-2) , libhyphen-dev (>= 2.4) , libboost-dev (>= 1.58), libboost-date-time-dev (>= 1.58), libboost-iostreams-dev (>= 1.58) , libboost-system-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-program-options-dev (>= 1.58) , libmdds-dev (>= 0.12) , libvigraimpex-dev , libclucene-dev (>= 2.3.3.4-4.1) , librevenge-dev , libwpd-dev (>= 0.10) , libmythes-dev (>= 2:1.2) , libwps-dev (>= 0.4) , libwpg-dev (>= 0.3) , libvisio-dev (>= 0.1) , libcdr-dev (>= 0.1) , libmspub-dev (>= 0.1) , libmwaw-dev (>= 0.3.5) , libodfgen-dev (>= 0.1) , libetonyek-dev (>= 0.1.2) , libfreehand-dev (>= 0.1) , libabw-dev (>= 0.1) , libe-book-dev (>= 0.1.1) , libcmis-dev (>= 0.5.0-2ubuntu2) , libeot-dev , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.3-6ubuntu1) , libgtk2.0-dev (>= 2.10) , libgtk-3-dev (>= 3.2~) , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [!kfreebsd-amd64 !kfreebsd-i386] , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libglew-dev , libglm-dev (>= 0.9.6.3) , libglib2.0-dev (>= 2.15.0) , libgconf2-dev , gettext , make (>= 3.81-8.2) -CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --prefix=/usr --mandir=/usr/share/man --docdir=/usr/share/doc/libreoffice --enable-lockdown --libdir=/usr/lib --host=x86_64-linux-gnu --build=x86_64-linux-gnu --disable-online-update --disable-fetch-external --disable-gstreamer-0-10 --without-fonts --without-myspell-dicts --disable-dependency-tracking --enable-hardlink-deliver --enable-release-build --enable-verbose --with-alloc=system --enable-extension-integration --with-system-dicts --with-system-hunspell --with-system-altlinuxhyph --with-system-boost --with-system-mdds --with-system-vigra --with-system-mythes --with-system-icu --with-system-librevenge --with-system-libwpd --with-system-libwpg --with-system-libwps --with-system-libvisio --with-system-libcdr --with-system-libmspub --with-system-libmwaw --with-system-libodfgen --with-system-libetonyek --with-system-libfreehand --with-system-libebook --with-system-libabw --with-system-cairo --with-system-beanshell --with-system-hsqldb --with-system-lpsolve --with-system-bluez --with-system-neon --with-system-redland --with-system-glew --with-system-openssl --with-system-apache-commons --with-system-graphite --with-system-harfbuzz --with-system-libexttextcat --with-system-cppunit --with-system-mariadb --with-system-mysql-cppconn --with-system-postgresql --with-system-libcmis --with-system-jpeg --with-system-libxml --with-system-expat --with-system-odbc --with-system-curl --with-system-sane --with-system-mesa-headers --with-system-poppler --with-system-libpng --with-system-nss --with-system-clucene --with-system-lcms2 --with-system-openldap --with-system-liblangtag --with-system-ucpp --with-system-firebird --with-system-libeot --with-system-glm --disable-firebird-sdbc --disable-coinmp --enable-symbols --with-jdk-home=/usr/lib/jvm/default-java --enable-ext-wiki-publisher --with-commons-codec-jar=/usr/share/java/commons-codec.jar --with-commons-lang-jar=/usr/share/java/commons-lang.jar --with-commons-httpclient-jar=/usr/share/java/commons-httpclient.jar --with-commons-logging-jar=/usr/share/java/commons-logging.jar --with-commons-logging-jar=/usr/share/java/commons-logging.jar --with-idlc-cpp=cpp-5 --with-external-dict-dir=/usr/share/hunspell --with-external-hyph-dir=/usr/share/hyphen --with-boost-libdir=/usr/lib/x86_64-linux-gnu --with-external-thes-dir=/usr/share/mythes --enable-eot --disable-kde --enable-kde4 --disable-kdeab --enable-ext-mariadb-connector --disable-firebird-sdbc --enable-gtk3 --disable-evolution2 --enable-python=system --with-hsqldb-jar=/usr/share/java/hsqldb1.8.0.jar --enable-scripting-beanshell --enable-scripting-javascript --enable-dbus --enable-gstreamer-1-0 --with-webdav=neon --disable-ccache --with-parallelism= +BUILD_DEPS:=autoconf, automake, bc, bison, bzip2, dpkg-dev (>= 1.16.1), fastjar, flex (>= 2.3.35), gperf, libarchive-zip-perl, libc0.1 (>= 2.10.2-7) [kfreebsd-i386 kfreebsd-amd64], libcups2-dev, libfontconfig1-dev, libfreetype6-dev (>= 2.2.0), libice-dev, libsm-dev, libx11-dev, libxaw7-dev, libxext-dev, libxinerama-dev, libxkbfile-dev, libxrender-dev, libxt-dev, libxtst-dev, pkg-config, unzip, x11proto-render-dev, xsltproc, zip, zlib1g-dev , binutils (>= 2.23) [mips mipsel], libc6 (>= 2.17-6) [mips mipsel] , gcc-5 [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] ,g++-5 [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , libgl1-mesa-dev, libglu1-mesa-dev , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev , libgraphite2-dev (>= 0.9.3) , libharfbuzz-dev (>= 0.9.18) , libexttextcat-dev (>= 3.1.1) , libjpeg-dev , libxml2-dev, libxml2-utils , libxslt1-dev , libexpat1-dev , unixodbc-dev (>= 2.2.11) , libsane-dev , libpng12-dev , libcurl4-gnutls-dev , libssl-dev (>= 0.9.8) , python3 , python3-dev (>= 3.3) , dh-python , debhelper (>= 7.2.3~) , libcppunit-dev (>= 1.13.2-2.1) , gdb , fontconfig , fonts-liberation , junit4 (>= 4.8.2-2) , maven-repo-helper , java-common (>= 0.49) , default-jdk , default-jdk (>= 1:1.7-48) [ia64] , gcj-jdk [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , gcj-native-helper [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386], libgcj-common (>= 1:4.4.1) [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , ant (>= 1.7.0), ant-optional (>= 1.7.0) , javahelper (>= 0.37~) , libnss3-dev (>= 3.12.3) , cpp-5 , libhunspell-dev (>= 1.1.5-2) , libhyphen-dev (>= 2.4) , libboost-dev (>= 1.58), libboost-date-time-dev (>= 1.58), libboost-iostreams-dev (>= 1.58) , libmdds-dev (>= 0.12) , liborcus-dev (>= 0.9.2-2) , libvigraimpex-dev , libclucene-dev (>= 2.3.3.4-4.1) , librevenge-dev , libwpd-dev (>= 0.10) , libmythes-dev (>= 2:1.2) , libwps-dev (>= 0.4) , libwpg-dev (>= 0.3) , libvisio-dev (>= 0.1) , libcdr-dev (>= 0.1) , libmspub-dev (>= 0.1) , libmwaw-dev (>= 0.3.5) , libodfgen-dev (>= 0.1) , libetonyek-dev (>= 0.1.2) , libfreehand-dev (>= 0.1) , libabw-dev (>= 0.1) , libpagemaker-dev , libe-book-dev (>= 0.1.1) , libcmis-dev (>= 0.5.0-3ubuntu1) , libeot-dev , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.3-6ubuntu1) , libgtk2.0-dev (>= 2.10) , libgtk-3-dev (>= 3.8~) , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [!kfreebsd-amd64 !kfreebsd-i386] , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libglew-dev , libglm-dev (>= 0.9.6.3) , libglib2.0-dev (>= 2.15.0) , libgconf2-dev , gettext , make (>= 3.81-8.2) +CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:5.0.3~rc2-0ubuntu1' --prefix=/usr --mandir=/usr/share/man --docdir=/usr/share/doc/libreoffice --enable-lockdown --libdir=/usr/lib --host=x86_64-linux-gnu --build=x86_64-linux-gnu --disable-online-update --disable-fetch-external --disable-gstreamer-0-10 --without-fonts --without-myspell-dicts --disable-dependency-tracking --enable-hardlink-deliver --enable-release-build --enable-verbose --with-alloc=system --enable-extension-integration --with-system-dicts --with-system-hunspell --with-system-altlinuxhyph --with-system-boost --with-system-mdds --with-system-vigra --with-system-mythes --with-system-icu --with-system-librevenge --with-system-libwpd --with-system-libwpg --with-system-libwps --with-system-libvisio --with-system-libcdr --with-system-libmspub --with-system-libmwaw --with-system-libodfgen --with-system-libetonyek --with-system-libfreehand --with-system-libebook --with-system-libabw --with-system-libpagemaker --with-system-cairo --with-system-beanshell --with-system-hsqldb --with-system-lpsolve --with-system-bluez --with-system-neon --with-system-redland --with-system-glew --with-system-openssl --with-system-apache-commons --with-system-graphite --with-system-harfbuzz --with-system-libexttextcat --with-system-cppunit --with-system-mariadb --with-system-mysql-cppconn --with-system-postgresql --with-system-libcmis --with-system-jpeg --with-system-libxml --with-system-expat --with-system-odbc --with-system-curl --with-system-sane --with-system-mesa-headers --with-system-poppler --with-system-libpng --with-system-nss --with-system-clucene --with-system-lcms2 --with-system-openldap --with-system-liblangtag --with-system-orcus --with-system-ucpp --with-system-firebird --with-system-libeot --with-system-glm --disable-firebird-sdbc --disable-coinmp --enable-symbols --with-jdk-home=/usr/lib/jvm/default-java --enable-ext-wiki-publisher --with-commons-codec-jar=/usr/share/java/commons-codec.jar --with-commons-lang-jar=/usr/share/java/commons-lang.jar --with-commons-httpclient-jar=/usr/share/java/commons-httpclient.jar --with-commons-logging-jar=/usr/share/java/commons-logging.jar --with-commons-logging-jar=/usr/share/java/commons-logging.jar --with-idlc-cpp=cpp-5 --with-external-dict-dir=/usr/share/hunspell --with-external-hyph-dir=/usr/share/hyphen --with-boost-libdir=/usr/lib/x86_64-linux-gnu --with-external-thes-dir=/usr/share/mythes --enable-eot --disable-kde --enable-kde4 --disable-kdeab --enable-ext-mariadb-connector --disable-firebird-sdbc --enable-gtk3 --disable-evolution2 --enable-python=system --with-hsqldb-jar=/usr/share/java/hsqldb1.8.0.jar --enable-scripting-beanshell --enable-scripting-javascript --enable-dbus --enable-gstreamer-1-0 --with-webdav=neon --disable-ccache --with-parallelism= CONFIGURE_FLAGS_LANG=--with-lang="en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja ka kk km ko kmr-Latn lt lv mk mn ml mr nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu" LANGPACKISOS:=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja ka kk km ko kmr-Latn lt lv mk mn ml mr nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu ISOS=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja ka kk km ko kmr-Latn lt lv mk mn ml mr nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu diff -Nru libreoffice-l10n-5.0.2~rc2/debian/control libreoffice-l10n-5.0.3~rc2/debian/control --- libreoffice-l10n-5.0.2~rc2/debian/control 2015-09-18 11:09:36.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/control 2015-10-28 22:22:20.000000000 +0000 @@ -4,7 +4,7 @@ Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian LibreOffice Maintainers Uploaders: Rene Engelhard -Build-Depends: autoconf, automake, bc, bison, bzip2, dpkg-dev (>= 1.16.1), fastjar, flex (>= 2.3.35), gperf, libarchive-zip-perl, libc0.1 (>= 2.10.2-7) [kfreebsd-i386 kfreebsd-amd64], libcups2-dev, libfontconfig1-dev, libfreetype6-dev (>= 2.2.0), libice-dev, libsm-dev, libx11-dev, libxaw7-dev, libxext-dev, libxinerama-dev, libxkbfile-dev, libxrender-dev, libxt-dev, libxtst-dev, pkg-config, unzip, x11proto-render-dev, xsltproc, zip, zlib1g-dev , binutils (>= 2.23) [mips mipsel], libc6 (>= 2.17-6) [mips mipsel] , gcc- [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] ,g++- [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , libgl1-mesa-dev, libglu1-mesa-dev , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev , libgraphite2-dev (>= 0.9.3) , libharfbuzz-dev (>= 0.9.18) , libexttextcat-dev (>= 3.1.1) , libjpeg-dev , libxml2-dev, libxml2-utils , libxslt1-dev , libexpat1-dev , unixodbc-dev (>= 2.2.11) , libsane-dev , libpng12-dev , libcurl4-gnutls-dev , libssl-dev (>= 0.9.8) , python3 , python3-dev (>= 3.3) , dh-python , debhelper (>= 7.2.3~) , libcppunit-dev (>= 1.13.2-2.1) , gdb , fontconfig , fonts-liberation , junit4 (>= 4.8.2-2) , maven-repo-helper , java-common (>= 0.49) , default-jdk , default-jdk (>= 1:1.7-48) [ia64] , gcj-jdk [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , gcj-native-helper [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386], libgcj-common (>= 1:4.4.1) [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , ant (>= 1.7.0), ant-optional (>= 1.7.0) , javahelper (>= 0.37~) , libnss3-dev (>= 3.12.3) , cpp-5 , libhunspell-dev (>= 1.1.5-2) , libhyphen-dev (>= 2.4) , libboost-dev (>= 1.58), libboost-date-time-dev (>= 1.58), libboost-iostreams-dev (>= 1.58) , libboost-system-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-program-options-dev (>= 1.58) , libmdds-dev (>= 0.12) , libvigraimpex-dev , libclucene-dev (>= 2.3.3.4-4.1) , librevenge-dev , libwpd-dev (>= 0.10) , libmythes-dev (>= 2:1.2) , libwps-dev (>= 0.4) , libwpg-dev (>= 0.3) , libvisio-dev (>= 0.1) , libcdr-dev (>= 0.1) , libmspub-dev (>= 0.1) , libmwaw-dev (>= 0.3.5) , libodfgen-dev (>= 0.1) , libetonyek-dev (>= 0.1.2) , libfreehand-dev (>= 0.1) , libabw-dev (>= 0.1) , libe-book-dev (>= 0.1.1) , libcmis-dev (>= 0.5.0-2ubuntu2) , libeot-dev , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.3-6ubuntu1) , libgtk2.0-dev (>= 2.10) , libgtk-3-dev (>= 3.2~) , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [!kfreebsd-amd64 !kfreebsd-i386] , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libglew-dev , libglm-dev (>= 0.9.6.3) , libglib2.0-dev (>= 2.15.0) , libgconf2-dev , gettext , make (>= 3.81-8.2), +Build-Depends: autoconf, automake, bc, bison, bzip2, dpkg-dev (>= 1.16.1), fastjar, flex (>= 2.3.35), gperf, libarchive-zip-perl, libc0.1 (>= 2.10.2-7) [kfreebsd-i386 kfreebsd-amd64], libcups2-dev, libfontconfig1-dev, libfreetype6-dev (>= 2.2.0), libice-dev, libsm-dev, libx11-dev, libxaw7-dev, libxext-dev, libxinerama-dev, libxkbfile-dev, libxrender-dev, libxt-dev, libxtst-dev, pkg-config, unzip, x11proto-render-dev, xsltproc, zip, zlib1g-dev , binutils (>= 2.23) [mips mipsel], libc6 (>= 2.17-6) [mips mipsel] , gcc-5 [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] ,g++-5 [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , libgl1-mesa-dev, libglu1-mesa-dev , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev , libgraphite2-dev (>= 0.9.3) , libharfbuzz-dev (>= 0.9.18) , libexttextcat-dev (>= 3.1.1) , libjpeg-dev , libxml2-dev, libxml2-utils , libxslt1-dev , libexpat1-dev , unixodbc-dev (>= 2.2.11) , libsane-dev , libpng12-dev , libcurl4-gnutls-dev , libssl-dev (>= 0.9.8) , python3 , python3-dev (>= 3.3) , dh-python , debhelper (>= 7.2.3~) , libcppunit-dev (>= 1.13.2-2.1) , gdb , fontconfig , fonts-liberation , junit4 (>= 4.8.2-2) , maven-repo-helper , java-common (>= 0.49) , default-jdk , default-jdk (>= 1:1.7-48) [ia64] , gcj-jdk [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , gcj-native-helper [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386], libgcj-common (>= 1:4.4.1) [hppa ia64 s390 sparc kfreebsd-amd64 kfreebsd-i386] , ant (>= 1.7.0), ant-optional (>= 1.7.0) , javahelper (>= 0.37~) , libnss3-dev (>= 3.12.3) , cpp-5 , libhunspell-dev (>= 1.1.5-2) , libhyphen-dev (>= 2.4) , libboost-dev (>= 1.58), libboost-date-time-dev (>= 1.58), libboost-iostreams-dev (>= 1.58) , libmdds-dev (>= 0.12) , liborcus-dev (>= 0.9.2-2) , libvigraimpex-dev , libclucene-dev (>= 2.3.3.4-4.1) , librevenge-dev , libwpd-dev (>= 0.10) , libmythes-dev (>= 2:1.2) , libwps-dev (>= 0.4) , libwpg-dev (>= 0.3) , libvisio-dev (>= 0.1) , libcdr-dev (>= 0.1) , libmspub-dev (>= 0.1) , libmwaw-dev (>= 0.3.5) , libodfgen-dev (>= 0.1) , libetonyek-dev (>= 0.1.2) , libfreehand-dev (>= 0.1) , libabw-dev (>= 0.1) , libpagemaker-dev , libe-book-dev (>= 0.1.1) , libcmis-dev (>= 0.5.0-3ubuntu1) , libeot-dev , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.3-6ubuntu1) , libgtk2.0-dev (>= 2.10) , libgtk-3-dev (>= 3.8~) , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [!kfreebsd-amd64 !kfreebsd-i386] , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libglew-dev , libglm-dev (>= 0.9.6.3) , libglib2.0-dev (>= 2.15.0) , libgconf2-dev , gettext , make (>= 3.81-8.2), Build-Depends-Indep: fdupes, imagemagick, xml-core, , doxygen (>= 1.8.4) , libcommons-codec-java, libcommons-httpclient-java, libcommons-lang-java, libcommons-logging-java (>= 1.1.1-9) , libbsh-java , fontforge Standards-Version: 3.9.4 Vcs-Git: https://alioth.debian.org/anonscm/git/pkg-openoffice/libreoffice.git @@ -892,12 +892,12 @@ libreoffice-grammarcheck-gug, libreoffice-help-gug, mythes-gug -Description: office productivity suite -- Paraguayan_gujarati language package +Description: office productivity suite -- Guarani language package LibreOffice is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. . This package contains the localization of LibreOffice in - Paraguayan_gujarati. + Guarani. It contains the user interface, the templates and the autotext features. (please note that not all this is available for all possible languages). You can switch user interface language using the locales system. diff -Nru libreoffice-l10n-5.0.2~rc2/debian/patches/integraltrans.diff libreoffice-l10n-5.0.3~rc2/debian/patches/integraltrans.diff --- libreoffice-l10n-5.0.2~rc2/debian/patches/integraltrans.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/patches/integraltrans.diff 2015-10-28 21:05:18.000000000 +0000 @@ -0,0 +1,23 @@ +From: Bjoern Michaelsen +Date: Fri, 23 Oct 2015 00:01:16 +0200 +Subject: [PATCH] use different var for inseparatable translations + +--- + sysui/CustomTarget_share.mk | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/sysui/CustomTarget_share.mk b/sysui/CustomTarget_share.mk +--- a/sysui/CustomTarget_share.mk ++++ b/sysui/CustomTarget_share.mk +@@ -227,7 +227,7 @@ $(share_WORKDIR)/%/build.flag: $(share_SRCDIR)/share/brand.pl $(LAUNCHERS) \ + $(eval $(call gb_CustomTarget_ulfex_rule,\ + $(share_WORKDIR)/%.ulf,\ + $(share_SRCDIR)/share/%.ulf,\ +- $(foreach lang,$(gb_TRANS_LANGS),\ ++ $(foreach lang,$(gb_TRANS_LANGS_INTEGRAL),\ + $(gb_POLOCATION)/$(lang)/sysui/desktop/share.po))) + + # vim: set noet sw=4 ts=4: +-- +2.1.4 + diff -Nru libreoffice-l10n-5.0.2~rc2/debian/patches/quicklistfix.diff libreoffice-l10n-5.0.3~rc2/debian/patches/quicklistfix.diff --- libreoffice-l10n-5.0.2~rc2/debian/patches/quicklistfix.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/patches/quicklistfix.diff 2015-10-28 21:05:18.000000000 +0000 @@ -0,0 +1,89 @@ +From: Bjoern Michaelsen +Date: Fri, 23 Oct 2015 10:26:11 +0200 +Subject: [PATCH] lp#1170035: Fix l10n for quicklist + +--- + solenv/bin/desktop-translate.pl | 2 +- + sysui/desktop/menus/base.desktop | 2 +- + sysui/desktop/menus/calc.desktop | 2 +- + sysui/desktop/menus/draw.desktop | 2 +- + sysui/desktop/menus/impress.desktop | 2 +- + sysui/desktop/menus/math.desktop | 2 +- + sysui/desktop/menus/writer.desktop | 2 +- + 7 files changed, 7 insertions(+), 7 deletions(-) + +diff --git a/solenv/bin/desktop-translate.pl b/solenv/bin/desktop-translate.pl +--- a/solenv/bin/desktop-translate.pl ++++ b/solenv/bin/desktop-translate.pl +@@ -66,7 +66,7 @@ if (!defined $template_dir) { + + # hack for unity section + my $outkey = $key; +-if ( $outkey eq "UnityQuicklist" ) { ++if ( $outkey eq "UnityQuickList" ) { + $outkey = "Name"; + } + +diff --git a/sysui/desktop/menus/base.desktop b/sysui/desktop/menus/base.desktop +--- a/sysui/desktop/menus/base.desktop ++++ b/sysui/desktop/menus/base.desktop +@@ -35,5 +35,5 @@ X-KDE-Protocols=file,http,ftp,webdav + + Actions=NewDocument; + [Desktop Action NewDocument] +-Name=New Database ++UnityQuickList=New Database + Exec=${UNIXBASISROOTNAME} --base +diff --git a/sysui/desktop/menus/calc.desktop b/sysui/desktop/menus/calc.desktop +--- a/sysui/desktop/menus/calc.desktop ++++ b/sysui/desktop/menus/calc.desktop +@@ -35,5 +35,5 @@ X-KDE-Protocols=file,http,ftp,webdav + + Actions=NewDocument; + [Desktop Action NewDocument] +-Name=New Spreadsheet ++UnityQuickList=New Spreadsheet + Exec=${UNIXBASISROOTNAME} --calc +diff --git a/sysui/desktop/menus/draw.desktop b/sysui/desktop/menus/draw.desktop +--- a/sysui/desktop/menus/draw.desktop ++++ b/sysui/desktop/menus/draw.desktop +@@ -35,5 +35,5 @@ X-KDE-Protocols=file,http,ftp,webdav + + Actions=NewDocument; + [Desktop Action NewDocument] +-Name=New Drawing ++UnityQuickList=New Drawing + Exec=${UNIXBASISROOTNAME} --draw +diff --git a/sysui/desktop/menus/impress.desktop b/sysui/desktop/menus/impress.desktop +--- a/sysui/desktop/menus/impress.desktop ++++ b/sysui/desktop/menus/impress.desktop +@@ -35,5 +35,5 @@ X-KDE-Protocols=file,http,ftp,webdav + + Actions=NewDocument; + [Desktop Action NewDocument] +-Name=New Presentation ++UnityQuickList=New Presentation + Exec=${UNIXBASISROOTNAME} --impress +diff --git a/sysui/desktop/menus/math.desktop b/sysui/desktop/menus/math.desktop +--- a/sysui/desktop/menus/math.desktop ++++ b/sysui/desktop/menus/math.desktop +@@ -36,5 +36,5 @@ X-KDE-Protocols=file,http,ftp,webdav + + Actions=NewDocument; + [Desktop Action NewDocument] +-Name=New Formula ++UnityQuickList=New Formula + Exec=${UNIXBASISROOTNAME} --math +diff --git a/sysui/desktop/menus/writer.desktop b/sysui/desktop/menus/writer.desktop +--- a/sysui/desktop/menus/writer.desktop ++++ b/sysui/desktop/menus/writer.desktop +@@ -35,5 +35,5 @@ X-KDE-Protocols=file,http,ftp,webdav + + Actions=NewDocument; + [Desktop Action NewDocument] +-Name=New Document ++UnityQuickList=New Document + Exec=${UNIXBASISROOTNAME} --writer +-- +2.1.4 + diff -Nru libreoffice-l10n-5.0.2~rc2/debian/patches/series libreoffice-l10n-5.0.3~rc2/debian/patches/series --- libreoffice-l10n-5.0.2~rc2/debian/patches/series 2015-09-18 11:06:36.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/patches/series 2015-10-28 21:05:18.000000000 +0000 @@ -26,7 +26,10 @@ hppa-is-32bit.diff gcj-no-bitness-check.diff rsc-no-error-about-unknown-switch.diff -#liborcus-0.9.1.diff +liborcus-0.9.1.diff disable-tiledrendering-test.diff -#lp-753627-readd-updated-Ubuntu-brand-palette-colors.diff +lp-753627-readd-updated-Ubuntu-brand-palette-colors.diff #mailmerge-base.diff +unity-default-human.diff +integraltrans.diff +quicklistfix.diff diff -Nru libreoffice-l10n-5.0.2~rc2/debian/patches/unity-default-human.diff libreoffice-l10n-5.0.3~rc2/debian/patches/unity-default-human.diff --- libreoffice-l10n-5.0.2~rc2/debian/patches/unity-default-human.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/patches/unity-default-human.diff 2015-10-28 21:05:18.000000000 +0000 @@ -0,0 +1,24 @@ +From: Bjoern Michaelsen +Date: Tue, 20 Oct 2015 23:10:36 +0200 +Subject: [PATCH] on unity, default to human if possible + +--- + vcl/source/app/IconThemeSelector.cxx | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/vcl/source/app/IconThemeSelector.cxx b/vcl/source/app/IconThemeSelector.cxx +--- a/vcl/source/app/IconThemeSelector.cxx ++++ b/vcl/source/app/IconThemeSelector.cxx +@@ -65,6 +65,9 @@ IconThemeSelector::GetIconThemeForDesktopEnvironment(const OUString& desktopEnvi + else if ( desktopEnvironment.equalsIgnoreAsciiCase("MacOSX") ) { + r = "breeze"; + } ++ else if ( desktopEnvironment.equalsIgnoreAsciiCase("unity") ) { ++ r = "human"; ++ } + else { + r = FALLBACK_ICON_THEME_ID; + } +-- +2.1.4 + diff -Nru libreoffice-l10n-5.0.2~rc2/download.lst libreoffice-l10n-5.0.3~rc2/download.lst --- libreoffice-l10n-5.0.2~rc2/download.lst 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/download.lst 2015-10-24 15:21:49.000000000 +0000 @@ -27,7 +27,7 @@ export COLLADA2GLTF_TARBALL := 4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 export CPPUNIT_MD5SUM := d1c6bdd5a76c66d2c38331e2d287bc01 export CPPUNIT_TARBALL := cppunit-1.13.2.tar.gz -export CT2N_TARBALL := 451ccf439a36a568653b024534669971-ConvertTextToNumber-1.3.2.oxt +export CT2N_TARBALL := 1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt export CURL_MD5SUM := 11bddbb452a8b766b932f859aaeeed39 export CURL_TARBALL := curl-7.43.0.tar.bz2 export DBGHELP_DLL := 13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll diff -Nru libreoffice-l10n-5.0.2~rc2/editeng/source/editeng/edtspell.cxx libreoffice-l10n-5.0.3~rc2/editeng/source/editeng/edtspell.cxx --- libreoffice-l10n-5.0.2~rc2/editeng/source/editeng/edtspell.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/editeng/source/editeng/edtspell.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -743,9 +743,13 @@ pCurNode->GetString(), rSttPos, nEndPos, *this, aLanguageTag); if( pFnd && pFnd->IsTextOnly() ) { + + // replace also last colon of keywords surrounded by colons (for example, ":name:") + bool replaceLastChar = pFnd->GetShort()[0] == ':' && pFnd->GetShort().endsWith(":"); + // then replace EditSelection aSel( EditPaM( pCurNode, rSttPos ), - EditPaM( pCurNode, nEndPos ) ); + EditPaM( pCurNode, nEndPos + (replaceLastChar ? 1 : 0) )); aSel = mpEditEngine->DeleteSelection(aSel); SAL_WARN_IF(nCursor < nEndPos, "editeng", "Cursor in the heart of the action?!"); diff -Nru libreoffice-l10n-5.0.2~rc2/editeng/source/editeng/eerdll.cxx libreoffice-l10n-5.0.3~rc2/editeng/source/editeng/eerdll.cxx --- libreoffice-l10n-5.0.2~rc2/editeng/source/editeng/eerdll.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/editeng/source/editeng/eerdll.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -101,8 +101,9 @@ ppDefItems = new SfxPoolItem*[EDITITEMCOUNT]; // Paragraph attributes: - SvxNumRule aDefaultNumRule( SvxNumRuleFlags::BULLET_REL_SIZE | SvxNumRuleFlags::BULLET_COLOR | SvxNumRuleFlags::CHAR_TEXT_DISTANCE, - SVX_MAX_NUM, false ); + SvxNumRule aDefaultNumRule( SvxNumRuleFlags::NONE, 0, false ); + + // SvxNumRule aDefaultNumRule(SvxNumRuleFlags::NONE, SVX_MAX_NUM, false); ppDefItems[0] = new SvxFrameDirectionItem( FRMDIR_HORI_LEFT_TOP, EE_PARA_WRITINGDIR ); ppDefItems[1] = new SvXMLAttrContainerItem( EE_PARA_XMLATTRIBS ); diff -Nru libreoffice-l10n-5.0.2~rc2/external/boost/boost.system.error_code_header_only_fix.patch.1 libreoffice-l10n-5.0.3~rc2/external/boost/boost.system.error_code_header_only_fix.patch.1 --- libreoffice-l10n-5.0.2~rc2/external/boost/boost.system.error_code_header_only_fix.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/boost/boost.system.error_code_header_only_fix.patch.1 2015-10-24 15:21:49.000000000 +0000 @@ -0,0 +1,21 @@ +bundled boost 1.55 error_code.cpp breaks when compiled with BOOST_ERROR_CODE_HEADER_ONLY + +--- boost/libs/system/src/error_code.cpp.orig 2015-09-08 16:37:11.595528207 +0200 ++++ boost/libs/system/src/error_code.cpp 2015-09-08 16:39:12.696518815 +0200 +@@ -17,6 +17,10 @@ + #define BOOST_SYSTEM_SOURCE + + #include ++ ++#ifndef BOOST_ERROR_CODE_CPP ++#define BOOST_ERROR_CODE_CPP ++ + #include + #include + #include +@@ -477,3 +480,5 @@ + + } // namespace system + } // namespace boost ++ ++#endif // BOOST_ERROR_CODE_CPP diff -Nru libreoffice-l10n-5.0.2~rc2/external/boost/UnpackedTarball_boost.mk libreoffice-l10n-5.0.3~rc2/external/boost/UnpackedTarball_boost.mk --- libreoffice-l10n-5.0.2~rc2/external/boost/UnpackedTarball_boost.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/boost/UnpackedTarball_boost.mk 2015-10-24 15:21:49.000000000 +0000 @@ -110,6 +110,9 @@ boost_patches += ubsan.patch.0 boost_patches += rtti.patch.0 +# 5.0 branch fix +boost_patches += boost.system.error_code_header_only_fix.patch.1 + $(eval $(call gb_UnpackedTarball_UnpackedTarball,boost)) $(eval $(call gb_UnpackedTarball_set_tarball,boost,$(BOOST_TARBALL))) diff -Nru libreoffice-l10n-5.0.2~rc2/external/ct2n/ConvertTextToNumber-1.3.2-no-license.patch libreoffice-l10n-5.0.3~rc2/external/ct2n/ConvertTextToNumber-1.3.2-no-license.patch --- libreoffice-l10n-5.0.2~rc2/external/ct2n/ConvertTextToNumber-1.3.2-no-license.patch 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/ct2n/ConvertTextToNumber-1.3.2-no-license.patch 2015-10-24 15:21:49.000000000 +0000 @@ -4,7 +4,7 @@ @@ -5,12 +5,4 @@ xmlns:xlink="http://www.w3.org/1999/xlink"> - + - diff -Nru libreoffice-l10n-5.0.2~rc2/external/firebird/firebird-macosx.patch.1 libreoffice-l10n-5.0.3~rc2/external/firebird/firebird-macosx.patch.1 --- libreoffice-l10n-5.0.2~rc2/external/firebird/firebird-macosx.patch.1 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/firebird/firebird-macosx.patch.1 2015-10-24 15:21:49.000000000 +0000 @@ -27,6 +27,15 @@ PLATFORM_POSTBUILD_TARGET=darwin_postbuild_target +@@ -57,7 +57,7 @@ + + LINK_TRACE = $(LIB_LINK) $(LIB_BUNDLE_OPTIONS) + +-LINK_CLIENT = $(LIB_LINK) -nodefaultlibs $(LINK_FIREBIRD_CLIENT_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_LINK_IMPLIB)\ ++LINK_CLIENT = $(LIB_LINK) $(LINK_FIREBIRD_CLIENT_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_LINK_IMPLIB)\ + $(LIB_CLIENT_LINK_OPTIONS) $(LIB_LINK_SONAME) + + ifeq (@VOID_PTR_SIZE@,8) diff -ur firebird.org/builds/posix/postfix.darwin firebird/builds/posix/postfix.darwin --- firebird.org/builds/posix/postfix.darwin 2013-07-12 20:55:46.000000000 +0200 +++ firebird/builds/posix/postfix.darwin 2013-07-15 12:07:36.000000000 +0200 diff -Nru libreoffice-l10n-5.0.2~rc2/external/hunspell/hunspell-1.3.3-rhbz1261421.patch libreoffice-l10n-5.0.3~rc2/external/hunspell/hunspell-1.3.3-rhbz1261421.patch --- libreoffice-l10n-5.0.2~rc2/external/hunspell/hunspell-1.3.3-rhbz1261421.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/hunspell/hunspell-1.3.3-rhbz1261421.patch 2015-10-24 15:21:49.000000000 +0000 @@ -0,0 +1,191 @@ +From 97e079a23d459aeb6e64435350d7710c90dbca85 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Fri, 11 Sep 2015 13:28:52 +0100 +Subject: [PATCH] Resolves: rhbz#1261421 crash on mashing hangul korean + keyboard + +--- + src/hunspell/hunspell.cxx | 69 +++++++++++++++++++++++++++++++++++------------ + src/hunspell/hunspell.hxx | 4 ++- + src/hunspell/replist.cxx | 18 ++++++++++--- + src/hunspell/replist.hxx | 2 ++ + src/tools/hunspell.cxx | 2 +- + 6 files changed, 78 insertions(+), 24 deletions(-) + +diff --git a/src/hunspell/hunspell.cxx b/src/hunspell/hunspell.cxx +index 7fae54b..d8ef357 100644 +--- misc/hunspell-1.3.3/src/hunspell/hunspell.cxx ++++ misc/build/hunspell-1.3.3/src/hunspell/hunspell.cxx +@@ -12,6 +12,7 @@ + #endif + #include "csutil.hxx" + ++#include + #include + + Hunspell::Hunspell(const char * affpath, const char * dpath, const char * key) +@@ -349,8 +350,13 @@ int Hunspell::spell(const char * word, int * info, char ** root) + + // input conversion + RepList * rl = (pAMgr) ? pAMgr->get_iconvtable() : NULL; +- if (rl && rl->conv(word, wspace)) wl = cleanword2(cw, wspace, unicw, &nc, &captype, &abbv); +- else wl = cleanword2(cw, word, unicw, &nc, &captype, &abbv); ++ int convstatus = rl ? rl->conv(word, wspace, MAXWORDUTF8LEN) : 0; ++ if (convstatus < 0) ++ return 0; ++ else if (convstatus > 0) ++ wl = cleanword2(cw, wspace, unicw, &nc, &captype, &abbv); ++ else ++ wl = cleanword2(cw, word, unicw, &nc, &captype, &abbv); + + if (wl == 0 || maxdic == 0) return 1; + if (root) *root = NULL; +@@ -702,8 +708,13 @@ int Hunspell::suggest(char*** slst, const char * word) + + // input conversion + RepList * rl = (pAMgr) ? pAMgr->get_iconvtable() : NULL; +- if (rl && rl->conv(word, wspace)) wl = cleanword2(cw, wspace, unicw, &nc, &captype, &abbv); +- else wl = cleanword2(cw, word, unicw, &nc, &captype, &abbv); ++ int convstatus = rl ? rl->conv(word, wspace, MAXWORDUTF8LEN) : 0; ++ if (convstatus < 0) ++ return 0; ++ else if (convstatus > 0) ++ wl = cleanword2(cw, wspace, unicw, &nc, &captype, &abbv); ++ else ++ wl = cleanword2(cw, word, unicw, &nc, &captype, &abbv); + + if (wl == 0) return 0; + int ns = 0; +@@ -1020,7 +1031,7 @@ int Hunspell::suggest(char*** slst, const char * word) + // output conversion + rl = (pAMgr) ? pAMgr->get_oconvtable() : NULL; + for (int j = 0; rl && j < ns; j++) { +- if (rl->conv((*slst)[j], wspace)) { ++ if (rl->conv((*slst)[j], wspace, MAXWORDUTF8LEN) > 0) { + free((*slst)[j]); + (*slst)[j] = mystrdup(wspace); + } +@@ -1395,8 +1406,13 @@ int Hunspell::analyze(char*** slst, const char * word) + + // input conversion + RepList * rl = (pAMgr) ? pAMgr->get_iconvtable() : NULL; +- if (rl && rl->conv(word, wspace)) wl = cleanword2(cw, wspace, unicw, &nc, &captype, &abbv); +- else wl = cleanword2(cw, word, unicw, &nc, &captype, &abbv); ++ int convstatus = rl ? rl->conv(word, wspace, MAXWORDUTF8LEN) : 0; ++ if (convstatus < 0) ++ return 0; ++ else if (convstatus > 0) ++ wl = cleanword2(cw, wspace, unicw, &nc, &captype, &abbv); ++ else ++ wl = cleanword2(cw, word, unicw, &nc, &captype, &abbv); + + if (wl == 0) { + if (abbv) { +@@ -1684,12 +1700,16 @@ int Hunspell::get_langnum() const + return langnum; + } + +-int Hunspell::input_conv(const char * word, char * dest) ++int Hunspell::input_conv(const char * word, char * dest, size_t destsize) + { + RepList * rl = (pAMgr) ? pAMgr->get_iconvtable() : NULL; +- return (rl && rl->conv(word, dest)); ++ return (rl && rl->conv(word, dest, destsize) > 0); + } + ++int Hunspell::input_conv(const char * word, char * dest) ++{ ++ return input_conv(word, dest, std::numeric_limits::max()); ++} + + // return the beginning of the element (attr == NULL) or the attribute + const char * Hunspell::get_xml_pos(const char * s, const char * attr) +diff --git a/src/hunspell/hunspell.hxx b/src/hunspell/hunspell.hxx +index e62f0dd..0b5ad2e 100644 +--- misc/hunspell-1.3.3/src/hunspell/hunspell.hxx ++++ misc/build/hunspell-1.3.3/src/hunspell/hunspell.hxx +@@ -226,7 +226,9 @@ public: + + /* need for putdic */ + int input_conv(const char * word, char * dest); +- ++ // ^^-deprecated, use this-vv" ++ int input_conv(const char * word, char * dest, size_t destsize); ++ + /* experimental and deprecated functions */ + + #ifdef HUNSPELL_EXPERIMENTAL +diff --git a/src/hunspell/replist.cxx b/src/hunspell/replist.cxx +index b9b1255..bac3e06 100644 +--- misc/hunspell-1.3.3/src/hunspell/replist.cxx ++++ misc/build/hunspell-1.3.3/src/hunspell/replist.cxx +@@ -74,6 +74,7 @@ + #include + #include + #include ++#include + + #include "replist.hxx" + #include "csutil.hxx" +@@ -139,19 +140,30 @@ int RepList::add(char * pat1, char * pat2) { + return 0; + } + +-int RepList::conv(const char * word, char * dest) { ++int RepList::conv(const char * word, char * dest, size_t destsize) { + int stl = 0; + int change = 0; + for (size_t i = 0; i < strlen(word); i++) { + int n = near(word + i); + int l = match(word + i, n); + if (l) { ++ size_t replen = strlen(dat[n]->pattern2); ++ if (stl+replen >= destsize) ++ return -1; + strcpy(dest + stl, dat[n]->pattern2); +- stl += strlen(dat[n]->pattern2); ++ stl += replen; + i += l - 1; + change = 1; +- } else dest[stl++] = word[i]; ++ } else { ++ if (stl+1 >= destsize) ++ return -1; ++ dest[stl++] = word[i]; ++ } + } + dest[stl] = '\0'; + return change; + } ++ ++int RepList::conv(const char * word, char * dest) { ++ return conv(word, dest, std::numeric_limits::max()); ++} +diff --git a/src/hunspell/replist.hxx b/src/hunspell/replist.hxx +index 1e3d6e4..e418298 100644 +--- misc/hunspell-1.3.3/src/hunspell/replist.hxx ++++ misc/build/hunspell-1.3.3/src/hunspell/replist.hxx +@@ -99,5 +99,7 @@ public: + int near(const char * word); + int match(const char * word, int n); + int conv(const char * word, char * dest); ++ // ^^-deprecated, use this-vv" ++ int conv(const char * word, char * dest, size_t destsize); + }; + #endif +diff --git a/src/tools/hunspell.cxx b/src/tools/hunspell.cxx +index 6124ac4..1b50fe1 100644 +--- misc/hunspell-1.3.3/src/tools/hunspell.cxx ++++ misc/build/hunspell-1.3.3/src/tools/hunspell.cxx +@@ -524,7 +524,7 @@ int putdic(char * word, Hunspell * pMS) + + word = chenc(word, ui_enc, dic_enc[0]); + +- if(pMS->input_conv(word, buf)) word = buf; ++ if(pMS->input_conv(word, buf, MAXLNLEN)) word = buf; + + int ret; + +-- +2.4.0 + diff -Nru libreoffice-l10n-5.0.2~rc2/external/hunspell/UnpackedTarball_hunspell.mk libreoffice-l10n-5.0.3~rc2/external/hunspell/UnpackedTarball_hunspell.mk --- libreoffice-l10n-5.0.2~rc2/external/hunspell/UnpackedTarball_hunspell.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/hunspell/UnpackedTarball_hunspell.mk 2015-10-24 15:21:49.000000000 +0000 @@ -20,6 +20,7 @@ external/hunspell/hunspell-fdo48017-wfopen.patch \ external/hunspell/hunspell-morph-overflow.patch \ external/hunspell/ubsan.patch.0 \ + external/hunspell/hunspell-1.3.3-rhbz1261421.patch \ )) ifeq ($(COM),MSC) diff -Nru libreoffice-l10n-5.0.2~rc2/external/libebook/ExternalProject_libebook.mk libreoffice-l10n-5.0.3~rc2/external/libebook/ExternalProject_libebook.mk --- libreoffice-l10n-5.0.2~rc2/external/libebook/ExternalProject_libebook.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/libebook/ExternalProject_libebook.mk 2015-10-24 15:21:49.000000000 +0000 @@ -38,7 +38,8 @@ $(if $(VERBOSE)$(verbose),--disable-silent-rules,--enable-silent-rules) \ --disable-werror \ --disable-weffc \ - CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost))" \ + CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost)) \ + -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED" \ XML_CFLAGS="$(LIBXML_CFLAGS)" \ XML_LIBS="$(LIBXML_LIBS)" \ REVENGE_GENERATORS_CFLAGS=' ' REVENGE_GENERATORS_LIBS=' ' REVENGE_STREAM_CFLAGS=' ' REVENGE_STREAM_LIBS=' ' \ diff -Nru libreoffice-l10n-5.0.2~rc2/external/libmspub/ExternalProject_libmspub.mk libreoffice-l10n-5.0.3~rc2/external/libmspub/ExternalProject_libmspub.mk --- libreoffice-l10n-5.0.2~rc2/external/libmspub/ExternalProject_libmspub.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/libmspub/ExternalProject_libmspub.mk 2015-10-24 15:21:49.000000000 +0000 @@ -35,7 +35,8 @@ --disable-werror \ --disable-weffc \ $(if $(VERBOSE)$(verbose),--disable-silent-rules,--enable-silent-rules) \ - CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost))" \ + CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost)) \ + -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED" \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ && $(MAKE) \ ) diff -Nru libreoffice-l10n-5.0.2~rc2/external/liborcus/ExternalProject_liborcus.mk libreoffice-l10n-5.0.3~rc2/external/liborcus/ExternalProject_liborcus.mk --- libreoffice-l10n-5.0.2~rc2/external/liborcus/ExternalProject_liborcus.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/liborcus/ExternalProject_liborcus.mk 2015-10-24 15:21:49.000000000 +0000 @@ -63,7 +63,7 @@ endif endif -liborcus_CXXFLAGS=$(CXXFLAGS) $(gb_VISIBILITY_FLAGS) $(gb_VISIBILITY_FLAGS_CXX) +liborcus_CXXFLAGS=$(CXXFLAGS) $(gb_VISIBILITY_FLAGS) $(gb_VISIBILITY_FLAGS_CXX) $(CXXFLAGS_CXX11) -DBOOST_SYSTEM_NO_DEPRECATED $(if $(filter-out WNT,$(OS)),-DBOOST_ERROR_CODE_HEADER_ONLY) liborcus_LDFLAGS=$(LDFLAGS) $(gb_LTOFLAGS) ifeq ($(COM),MSC) liborcus_CXXFLAGS+=$(BOOST_CXXFLAGS) diff -Nru libreoffice-l10n-5.0.2~rc2/external/libpagemaker/ExternalProject_libpagemaker.mk libreoffice-l10n-5.0.3~rc2/external/libpagemaker/ExternalProject_libpagemaker.mk --- libreoffice-l10n-5.0.2~rc2/external/libpagemaker/ExternalProject_libpagemaker.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/libpagemaker/ExternalProject_libpagemaker.mk 2015-10-24 15:21:49.000000000 +0000 @@ -33,7 +33,8 @@ --disable-werror \ --disable-weffc \ $(if $(VERBOSE)$(verbose),--disable-silent-rules,--enable-silent-rules) \ - CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost))" \ + CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost)) \ + -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED" \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ && $(MAKE) \ ) diff -Nru libreoffice-l10n-5.0.2~rc2/external/librevenge/ExternalProject_librevenge.mk libreoffice-l10n-5.0.3~rc2/external/librevenge/ExternalProject_librevenge.mk --- libreoffice-l10n-5.0.2~rc2/external/librevenge/ExternalProject_librevenge.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/external/librevenge/ExternalProject_librevenge.mk 2015-10-24 15:21:49.000000000 +0000 @@ -34,7 +34,8 @@ --disable-generators \ --without-docs \ $(if $(VERBOSE)$(verbose),--disable-silent-rules,--enable-silent-rules) \ - CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost))" \ + CXXFLAGS="$(if $(SYSTEM_BOOST),$(BOOST_CPPFLAGS),-I$(call gb_UnpackedTarball_get_dir,boost)) \ + -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED" \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \ && $(MAKE) \ diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/cs/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/cs/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/cs/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/cs/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -572,56 +572,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/es/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/es/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/es/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/es/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -501,8 +501,6 @@ - - @@ -588,6 +586,7 @@ + @@ -632,6 +631,7 @@ + @@ -644,6 +644,9 @@ + + + @@ -741,7 +744,11 @@ + + + + @@ -810,6 +817,7 @@ + @@ -862,10 +870,13 @@ + + + @@ -886,6 +897,7 @@ + @@ -901,10 +913,10 @@ + - @@ -929,6 +941,7 @@ + @@ -939,15 +952,19 @@ + + + + @@ -965,8 +982,11 @@ + + + @@ -977,7 +997,12 @@ + + + + + @@ -991,7 +1016,11 @@ + + + + @@ -1084,6 +1113,8 @@ + + @@ -1096,7 +1127,7 @@ - + @@ -1126,6 +1157,7 @@ + @@ -1182,6 +1214,8 @@ + + @@ -1191,7 +1225,7 @@ - + @@ -1202,6 +1236,7 @@ + @@ -1272,6 +1307,7 @@ + @@ -1281,6 +1317,7 @@ + @@ -1301,6 +1338,7 @@ + @@ -1317,12 +1355,20 @@ + + - + + + + + + + @@ -1363,9 +1409,12 @@ + + + @@ -1409,6 +1458,8 @@ + + @@ -1418,15 +1469,19 @@ + + + + @@ -1446,11 +1501,13 @@ - + - + + + @@ -1459,6 +1516,7 @@ + @@ -1471,6 +1529,7 @@ + @@ -1519,6 +1578,7 @@ + diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/fi/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/fi/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/fi/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/fi/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -18,56 +18,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/is/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/is/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/is/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/is/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -1,28 +1,142 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30,167 +144,981 @@ + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + - + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + - - - + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/pt-BR/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/pt-BR/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/pt-BR/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/pt-BR/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -1833,56 +1833,56 @@ - + - + - + - + - + - + - + - + - + - + - + - + diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/sv/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/sv/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/sv/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/sv/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -108,12 +108,22 @@ + + + + + + + + + + @@ -135,6 +145,8 @@ + + @@ -150,22 +162,42 @@ + + + + + + + + + + + + + + + + + + + + @@ -180,21 +212,36 @@ + + + + + + + + + + + + + + + @@ -202,20 +249,34 @@ + + + + + + + + + + + + + + @@ -232,15 +293,20 @@ + + + + + @@ -248,34 +314,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -294,19 +395,37 @@ + + + + + + + + + + + + + + + + + + diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/zh-CN/DocumentList.xml libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/zh-CN/DocumentList.xml --- libreoffice-l10n-5.0.2~rc2/extras/source/autocorr/lang/zh-CN/DocumentList.xml 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/autocorr/lang/zh-CN/DocumentList.xml 2015-10-24 15:21:49.000000000 +0000 @@ -936,12 +936,14 @@ + + @@ -951,12 +953,14 @@ + + @@ -1008,11 +1012,13 @@ + + @@ -1037,6 +1043,7 @@ + Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/extras/source/truetype/symbol/opens___.ttf and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/extras/source/truetype/symbol/opens___.ttf differ diff -Nru libreoffice-l10n-5.0.2~rc2/extras/source/truetype/symbol/OpenSymbol.sfd libreoffice-l10n-5.0.3~rc2/extras/source/truetype/symbol/OpenSymbol.sfd --- libreoffice-l10n-5.0.2~rc2/extras/source/truetype/symbol/OpenSymbol.sfd 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/extras/source/truetype/symbol/OpenSymbol.sfd 2015-10-24 15:21:49.000000000 +0000 @@ -3,8 +3,8 @@ FullName: OpenSymbol FamilyName: OpenSymbol Weight: Book -Copyright: (c) 2009 Sun Microsystems Inc.\nTHERE DOES NOT EXIST (c) 2011 Julien Nabet\nPRECEDES <-> DOES NOT SUCCEED (c) 2011 Olivier Hallot\nPRIME <-> TRIPLE PRIME (c) 2013 Mathias Hasselmann -Version: 102.6 +Copyright: (c) 2009 Sun Microsystems Inc.\nTHERE DOES NOT EXIST (c) 2011 Julien Nabet\nPRECEDES <-> DOES NOT SUCCEED (c) 2011 Olivier Hallot\nPRIME <-> TRIPLE PRIME (c) 2013 Mathias Hasselmann\nphi <-> phi1 (c) 2015 Khaled Hosny +Version: 102.7 ItalicAngle: 0 UnderlinePosition: -143 UnderlineWidth: 20 @@ -773,7 +773,7 @@ 0 0 EndShort -LangName: 1033 "" "" "Regular" "OpenSymbol" "" "Version 102.6" +LangName: 1033 "" "" "Regular" "OpenSymbol" GaspTable: 1 65535 2 0 Encoding: Custom UnicodeInterp: none @@ -105039,8 +105039,8 @@ Validated: 16385 EndChar -StartChar: phi -Encoding: 954 966 954 +StartChar: phi1 +Encoding: 954 981 954 Width: 1067 Flags: W HStem: 892.524 48.4775<480.52 486.132 580.854 586.484> @@ -105980,8 +105980,8 @@ Validated: 16385 EndChar -StartChar: phi1 -Encoding: 960 981 960 +StartChar: phi +Encoding: 960 966 960 Width: 1235 Flags: W HStem: -18.1895 52.1895<714 854.086> 869 62<321.383 492.494 803.829 998.555> Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/filter/qa/cppunit/data/psd/pass/hang-1.psd and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/filter/qa/cppunit/data/psd/pass/hang-1.psd differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/filter/qa/cppunit/data/ras/fail/hang-1.ras and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/filter/qa/cppunit/data/ras/fail/hang-1.ras differ diff -Nru libreoffice-l10n-5.0.2~rc2/filter/source/graphic/GraphicExportFilter.cxx libreoffice-l10n-5.0.3~rc2/filter/source/graphic/GraphicExportFilter.cxx --- libreoffice-l10n-5.0.2~rc2/filter/source/graphic/GraphicExportFilter.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/filter/source/graphic/GraphicExportFilter.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -112,7 +112,10 @@ Size aTargetSizePixel(mTargetWidth, mTargetHeight); - Graphic aGraphic = aRenderer.renderToGraphic( aCurrentPage, aDocumentSizePixel, aTargetSizePixel ); + if (mTargetWidth == 0 || mTargetHeight == 0) + aTargetSizePixel = aDocumentSizePixel; + + Graphic aGraphic = aRenderer.renderToGraphic(aCurrentPage, aDocumentSizePixel, aTargetSizePixel, COL_WHITE); GraphicFilter& rFilter = GraphicFilter::GetGraphicFilter(); diff -Nru libreoffice-l10n-5.0.2~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx libreoffice-l10n-5.0.3~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx --- libreoffice-l10n-5.0.2~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -172,9 +172,6 @@ bool PSDReader::ImplReadHeader() { - sal_uInt16 nCompression; - sal_uInt32 nColorLength, nResourceLength, nLayerMaskLength; - mpFileHeader = new PSDFileHeader; m_rPSD.ReadUInt32( mpFileHeader->nSignature ).ReadUInt16( mpFileHeader->nVersion ).ReadUInt32( mpFileHeader->nPad1 ). ReadUInt16( mpFileHeader->nPad2 ).ReadUInt16( mpFileHeader->nChannels ).ReadUInt32( mpFileHeader->nRows ). ReadUInt32( mpFileHeader->nColumns ).ReadUInt16( mpFileHeader->nDepth ).ReadUInt16( mpFileHeader->nMode ); @@ -194,6 +191,7 @@ mnDestBitDepth = ( nDepth == 16 ) ? 8 : nDepth; + sal_uInt32 nColorLength(0); m_rPSD.ReadUInt32( nColorLength ); if ( mpFileHeader->nMode == PSD_CMYK ) { @@ -270,7 +268,10 @@ default: return false; } - m_rPSD.ReadUInt32( nResourceLength ); + sal_uInt32 nResourceLength(0); + m_rPSD.ReadUInt32(nResourceLength); + if (nResourceLength > m_rPSD.remainingSize()) + return false; sal_uInt32 nLayerPos = m_rPSD.Tell() + nResourceLength; // this is a loop over the resource entries to get the resolution info @@ -291,8 +292,8 @@ if ( nResEntryLen & 1 ) nResEntryLen++; // the resource entries are padded sal_uInt32 nCurrentPos = m_rPSD.Tell(); - if ( ( nResEntryLen + nCurrentPos ) > nLayerPos ) // check if size - break; // is possible + if (nResEntryLen > (nLayerPos - nCurrentPos)) // check if size + break; // is possible switch( nUniqueID ) { case 0x3ed : // UID for the resolution info @@ -307,10 +308,12 @@ m_rPSD.Seek( nCurrentPos + nResEntryLen ); // set the stream to the next } // resource entry m_rPSD.Seek( nLayerPos ); + sal_uInt32 nLayerMaskLength(0); m_rPSD.ReadUInt32( nLayerMaskLength ); m_rPSD.SeekRel( nLayerMaskLength ); - m_rPSD.ReadUInt16( nCompression ); + sal_uInt16 nCompression(0); + m_rPSD.ReadUInt16(nCompression); if ( nCompression == 0 ) { mbCompression = false; @@ -326,8 +329,6 @@ return true; } - - bool PSDReader::ImplReadBody() { sal_uLong nX, nY; diff -Nru libreoffice-l10n-5.0.2~rc2/filter/source/graphicfilter/iras/iras.cxx libreoffice-l10n-5.0.3~rc2/filter/source/graphicfilter/iras/iras.cxx --- libreoffice-l10n-5.0.2~rc2/filter/source/graphicfilter/iras/iras.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/filter/source/graphicfilter/iras/iras.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -222,31 +222,43 @@ case 1 : for (y = 0; y < mnHeight && mbStatus; ++y) { - for ( x = 0; x < mnWidth; x++ ) + for (x = 0; x < mnWidth && mbStatus; ++x) { if (!(x & 7)) + { nDat = ImplGetByte(); + if (!m_rRAS.good()) + mbStatus = false; + } pAcc->SetPixelIndex( y, x, sal::static_int_cast< sal_uInt8 >( nDat >> ( ( x & 7 ) ^ 7 )) ); } - if (!( ( x - 1 ) & 0x8 ) ) ImplGetByte(); // WORD ALIGNMENT ??? - if (!m_rRAS.good()) - mbStatus = false; + if (!( ( x - 1 ) & 0x8 ) ) + { + ImplGetByte(); // WORD ALIGNMENT ??? + if (!m_rRAS.good()) + mbStatus = false; + } } break; case 8 : for (y = 0; y < mnHeight && mbStatus; ++y) { - for ( x = 0; x < mnWidth; x++ ) + for (x = 0; x < mnWidth && mbStatus; ++x) { nDat = ImplGetByte(); pAcc->SetPixelIndex( y, x, nDat ); + if (!m_rRAS.good()) + mbStatus = false; + } + if ( x & 1 ) + { + ImplGetByte(); // WORD ALIGNMENT ??? + if (!m_rRAS.good()) + mbStatus = false; } - if ( x & 1 ) ImplGetByte(); // WORD ALIGNMENT ??? - if (!m_rRAS.good()) - mbStatus = false; } break; @@ -257,7 +269,7 @@ case 24 : for (y = 0; y < mnHeight && mbStatus; ++y) { - for ( x = 0; x < mnWidth; x++ ) + for (x = 0; x < mnWidth && mbStatus; ++x) { if ( mnType == RAS_TYPE_RGB_FORMAT ) { @@ -272,17 +284,22 @@ nRed = ImplGetByte(); } pAcc->SetPixel ( y, x, BitmapColor( nRed, nGreen, nBlue ) ); + if (!m_rRAS.good()) + mbStatus = false; + } + if ( x & 1 ) + { + ImplGetByte(); // WORD ALIGNMENT ??? + if (!m_rRAS.good()) + mbStatus = false; } - if ( x & 1 ) ImplGetByte(); // WORD ALIGNMENT ??? - if (!m_rRAS.good()) - mbStatus = false; } break; case 32 : for (y = 0; y < mnHeight && mbStatus; ++y) { - for ( x = 0; x < mnWidth; x++ ) + for (x = 0; x < mnWidth && mbStatus; ++x) { nDat = ImplGetByte(); // pad byte > nil if ( mnType == RAS_TYPE_RGB_FORMAT ) @@ -298,9 +315,9 @@ nRed = ImplGetByte(); } pAcc->SetPixel ( y, x, BitmapColor( nRed, nGreen, nBlue ) ); + if (!m_rRAS.good()) + mbStatus = false; } - if (!m_rRAS.good()) - mbStatus = false; } break; } diff -Nru libreoffice-l10n-5.0.2~rc2/fpicker/source/office/iodlg.cxx libreoffice-l10n-5.0.3~rc2/fpicker/source/office/iodlg.cxx --- libreoffice-l10n-5.0.2~rc2/fpicker/source/office/iodlg.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/fpicker/source/office/iodlg.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -347,16 +347,31 @@ class CustomContainer : public vcl::Window { + enum FocusState + { + Prev = 0, + Places, + Add, + Delete, + FileView, + Next, + FocusCount + }; + SvtExpFileDlg_Impl* _pImp; VclPtr _pFileView; VclPtr _pSplitter; + int m_nCurrentFocus; + VclPtr m_pFocusWidgets[FocusState::FocusCount]; + public: CustomContainer(vcl::Window *pParent) : Window(pParent) , _pImp(NULL) , _pFileView(NULL) , _pSplitter(NULL) + , m_nCurrentFocus(FocusState::Prev) { } virtual ~CustomContainer() { disposeOnce(); } @@ -369,11 +384,20 @@ void init(SvtExpFileDlg_Impl* pImp, SvtFileView* pFileView, - Splitter* pSplitter) + Splitter* pSplitter, + vcl::Window* pPrev, + vcl::Window* pNext) { _pImp = pImp; _pFileView = pFileView; _pSplitter = pSplitter; + + m_pFocusWidgets[FocusState::Prev] = pPrev; + m_pFocusWidgets[FocusState::Places] = _pImp->_pPlaces->GetPlacesListBox(); + m_pFocusWidgets[FocusState::Add] = _pImp->_pPlaces->GetAddButton(); + m_pFocusWidgets[FocusState::Delete] = _pImp->_pPlaces->GetDeleteButton(); + m_pFocusWidgets[FocusState::FileView] = pFileView; + m_pFocusWidgets[FocusState::Next] = pNext; } virtual void Resize() SAL_OVERRIDE @@ -403,9 +427,78 @@ _pImp->_pPlaces->SetSizePixel( placesNewSize ); } + void changeFocus( bool bReverse ) + { + if( !_pFileView || !_pImp || !_pImp->_pPlaces ) + return; + + if( bReverse && m_nCurrentFocus > FocusState::Prev && m_nCurrentFocus <= FocusState::Next ) + { + m_pFocusWidgets[m_nCurrentFocus]->SetFakeFocus(false); + m_pFocusWidgets[m_nCurrentFocus]->LoseFocus(); + + m_pFocusWidgets[--m_nCurrentFocus]->SetFakeFocus( true ); + m_pFocusWidgets[m_nCurrentFocus]->GrabFocus(); + } + else if( !bReverse && m_nCurrentFocus >= FocusState::Prev && m_nCurrentFocus < FocusState::Next ) + { + m_pFocusWidgets[m_nCurrentFocus]->SetFakeFocus(false); + m_pFocusWidgets[m_nCurrentFocus]->LoseFocus(); + + m_pFocusWidgets[++m_nCurrentFocus]->SetFakeFocus( true ); + m_pFocusWidgets[m_nCurrentFocus]->GrabFocus(); + } + } + virtual void GetFocus() SAL_OVERRIDE { - _pFileView->GrabFocus(); + if( !_pFileView || !_pImp || !_pImp->_pPlaces ) + return; + + sal_uInt16 aFlags = GetGetFocusFlags(); + + if( aFlags & GETFOCUS_FORWARD ) + m_nCurrentFocus = FocusState::Places; + else if( aFlags & GETFOCUS_BACKWARD ) + m_nCurrentFocus = FocusState::FileView; + + if( m_nCurrentFocus >= FocusState::Prev && m_nCurrentFocus <= FocusState::Next ) + { + m_pFocusWidgets[m_nCurrentFocus]->SetFakeFocus( true ); + m_pFocusWidgets[m_nCurrentFocus]->GrabFocus(); + } + } + + virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE + { + if( rNEvt.GetType() == MouseNotifyEvent::GETFOCUS ) + { + // we must also update counter when user change focus using mouse + for(int i = FocusState::Prev; i <= FocusState::Next; i++) + { + if( rNEvt.GetWindow() == m_pFocusWidgets[i] ) + { + m_nCurrentFocus = i; + return true; + } + } + + // GETFOCUS for one of FileView's subcontrols + m_nCurrentFocus = FocusState::FileView; + return true; + } + if( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT ) + { + const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); + const vcl::KeyCode& rCode = pKeyEvent->GetKeyCode(); + bool bShift = rCode.IsShift(); + if( rCode.GetCode() == KEY_TAB ) + { + changeFocus( bShift ); + return true; + } + } + return Window::Notify( rNEvt ); } }; @@ -668,7 +761,7 @@ OUString( "/org.openoffice.Office.UI/FilePicker" ) ); - _pContainer->init(_pImp, _pFileView, _pSplitter); + _pContainer->init(_pImp, _pFileView, _pSplitter, _pImp->_pBtnNewFolder, _pImp->_pEdFileName); _pContainer->Show(); Resize(); diff -Nru libreoffice-l10n-5.0.2~rc2/fpicker/source/office/PlacesListBox.cxx libreoffice-l10n-5.0.3~rc2/fpicker/source/office/PlacesListBox.cxx --- libreoffice-l10n-5.0.2~rc2/fpicker/source/office/PlacesListBox.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/fpicker/source/office/PlacesListBox.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -167,6 +167,23 @@ mpDelBtn->SetPosPixel( Point( 6 + 24, nBtnY ) ); } +bool PlacesListBox::Notify( NotifyEvent& rNEvt ) +{ + if( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT ) + { + const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); + const vcl::KeyCode& rCode = pKeyEvent->GetKeyCode(); + + if( rCode.GetCode() == KEY_RETURN ) + { + mbSelectionChanged = true; + updateView(); + return true; + } + } + return Control::Notify( rNEvt ); +} + Image PlacesListBox::getEntryIcon( PlacePtr pPlace ) { Image theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_LOCAL ); diff -Nru libreoffice-l10n-5.0.2~rc2/fpicker/source/office/PlacesListBox.hxx libreoffice-l10n-5.0.3~rc2/fpicker/source/office/PlacesListBox.hxx --- libreoffice-l10n-5.0.2~rc2/fpicker/source/office/PlacesListBox.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/fpicker/source/office/PlacesListBox.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -66,6 +66,12 @@ void SetSizePixel( const Size& rNewSize ) SAL_OVERRIDE; void updateView( ); + VclPtr GetAddButton() const { return mpAddBtn; } + VclPtr GetDeleteButton() const { return mpDelBtn; } + VclPtr GetPlacesListBox() const { return mpImpl; } + + virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE; + private: Image getEntryIcon( PlacePtr pPlace ); diff -Nru libreoffice-l10n-5.0.2~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx libreoffice-l10n-5.0.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx --- libreoffice-l10n-5.0.2~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -246,7 +246,7 @@ RequestRef rRequest(new Request()); rRequest->setRequest (VistaFilePickerImpl::E_GET_DIRECTORY); m_aAsyncExecute.triggerRequestThreadAware(rRequest, AsyncRequests::BLOCKED); - const OUString sDirectory = rRequest->getArgumentOrDefault(PROP_FILENAME, OUString()); + const OUString sDirectory = rRequest->getArgumentOrDefault(PROP_DIRECTORY, OUString()); return sDirectory; } diff -Nru libreoffice-l10n-5.0.2~rc2/fpicker/uiconfig/ui/explorerfiledialog.ui libreoffice-l10n-5.0.3~rc2/fpicker/uiconfig/ui/explorerfiledialog.ui --- libreoffice-l10n-5.0.2~rc2/fpicker/uiconfig/ui/explorerfiledialog.ui 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/fpicker/uiconfig/ui/explorerfiledialog.ui 2015-10-24 15:21:49.000000000 +0000 @@ -59,6 +59,7 @@ True True True + 40 False @@ -279,6 +280,7 @@ True False True + 40 1 diff -Nru libreoffice-l10n-5.0.2~rc2/framework/source/uielement/generictoolbarcontroller.cxx libreoffice-l10n-5.0.3~rc2/framework/source/uielement/generictoolbarcontroller.cxx --- libreoffice-l10n-5.0.2~rc2/framework/source/uielement/generictoolbarcontroller.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/framework/source/uielement/generictoolbarcontroller.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -244,6 +244,7 @@ aStrValue = aTmp; } m_pToolbar->SetItemText( m_nID, aStrValue ); + m_pToolbar->SetQuickHelpText( m_nID, aStrValue ); } if ( m_bMadeInvisible ) diff -Nru libreoffice-l10n-5.0.2~rc2/framework/source/uielement/menubarmanager.cxx libreoffice-l10n-5.0.3~rc2/framework/source/uielement/menubarmanager.cxx --- libreoffice-l10n-5.0.2~rc2/framework/source/uielement/menubarmanager.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/framework/source/uielement/menubarmanager.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1138,7 +1138,8 @@ { sal_uInt16 nItemId = pMenu->GetItemId( nPos ); OUString aCommand = pMenu->GetItemCommand( nItemId ); - if ( nItemId == SID_MDIWINDOWLIST || aCommand == aSpecialWindowCommand) + if ( nItemId == SID_MDIWINDOWLIST || aCommand == aSpecialWindowCommand || + nItemId == SID_HELPMENU || aCommand == aCmdHelpMenu ) { // Retrieve addon popup menus and add them to our menu bar framework::AddonMenuManager::MergeAddonPopupMenus( rFrame, nPos, static_cast(pMenu), m_xContext ); diff -Nru libreoffice-l10n-5.0.2~rc2/.gitreview libreoffice-l10n-5.0.3~rc2/.gitreview --- libreoffice-l10n-5.0.2~rc2/.gitreview 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/.gitreview 2015-10-24 15:21:49.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-5-0-2 +defaultbranch=libreoffice-5-0-3 Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/areas3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areas3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/areas_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areas_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/areasfull3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areasfull3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/areasfull_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areasfull_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/areaspiled3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areaspiled3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/areaspiled_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areaspiled_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/bar3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bar3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/bar3ddeep_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bar3ddeep_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/bar_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bar_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/barpercent3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barpercent3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/barpercent_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barpercent_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/barstack3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barstack3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/barstack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barstack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/bubble_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bubble_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columnline_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnline_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columnpercent3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnpercent3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columnpercent_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnpercent_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columns3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columns3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columns3ddeep_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columns3ddeep_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columns_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columns_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columnstack3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnstack3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columnstack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnstack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/columnstackline_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnstackline_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/conedeep_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conedeep_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/conehorideep_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conehorideep_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/conehoripercent_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conehoripercent_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/conehoristack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conehoristack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/conepercent_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conepercent_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/conestack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conestack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinder_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinder_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderdeep_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderdeep_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderhori_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhori_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderhorideep_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhorideep_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderhoriprocent_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhoriprocent_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderhoristack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhoristack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderpercent_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderpercent_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/cylinderstack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderstack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/donut3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donut3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/donut3dexploded_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donut3dexploded_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/donut_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donut_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/donutexploded_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donutexploded_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/net_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/net_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netfill_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netfill_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netlinepoint_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netlinepoint_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netlinepointstack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netlinepointstack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netpoint_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netpoint_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netpointstack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netpointstack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netstack_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netstack_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/netstackfill_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netstackfill_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostackdirect3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirect3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostackdirectboth_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirectboth_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostackdirectlines_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirectlines_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostackdirectpoints_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirectpoints_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostackstepped3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackstepped3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostacksteppedboth_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostacksteppedboth_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/nostacksteppedlines_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostacksteppedlines_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/pie3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pie3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/pie3dexploded_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pie3dexploded_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/pie_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pie_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/pieexploded_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pieexploded_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/typebar_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/typebar_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/typecolumn_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/typecolumn_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/valueaxisdirect3d_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirect3d_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/valueaxisdirectboth_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirectboth_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/valueaxisdirectlines_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirectlines_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/chart2/res/valueaxisdirectpoints_52x60.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirectpoints_52x60.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_addprintarea.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_addprintarea.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_addtable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_addtable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_bezierinsert.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_bezierinsert.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_borderdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_borderdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_changecasetolower.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_changecasetolower.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_changecasetoupper.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_changecasetoupper.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_combobox.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_combobox.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_config.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_config.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_contourdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_contourdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_datadatapilotrun.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_datadatapilotrun.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dataranges.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dataranges.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dbdtableedit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbdtableedit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dbnewform.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewform.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dbnewquery.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewquery.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dbnewreport.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewreport.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dbnewtable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewtable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_dbtableedit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbtableedit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_deletetable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_deletetable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_designerdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_designerdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramarea.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramarea.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramaxisx.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisx.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramaxisxyz.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisxyz.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramaxisy.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisy.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramaxisz.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisz.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramdata.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramdata.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_diagramwall.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramwall.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_drawchart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_drawchart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_draw.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_draw.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_drawtext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_drawtext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_edithyperlink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_edithyperlink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_editstyle.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_editstyle.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_fontdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_fontdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_fontheight.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_fontheight.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_fontworkgalleryfloater.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_fontworkgalleryfloater.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_formatselection.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_formatselection.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_formdesigntools.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_formdesigntools.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_freezepanes.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_freezepanes.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_goalseekdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_goalseekdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_grow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_grow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_hideslide.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_hideslide.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_hyperlinkdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_hyperlinkdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_iconsetformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_iconsetformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_importdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_importdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_importfromfile.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_importfromfile.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_inscellsctrl.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_inscellsctrl.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertbookmark.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertbookmark.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertcolumnsafter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertcolumnsafter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertcolumns.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertcolumns.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertctrl.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertctrl.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertdraw.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertdraw.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertendnote.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertendnote.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertformcombo.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertformcombo.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertgraphic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertgraphic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_inserthyperlink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_inserthyperlink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertmath.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertmath.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertmenutitles.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertmenutitles.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertobjectchart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertobjectchart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertobjectdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertobjectdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertobject.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertobject.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertpage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertpage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertrowsafter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertrowsafter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_insertsymbol.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertsymbol.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_inserttable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_inserttable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_legend.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_legend.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_modifypage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_modifypage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_moduledialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_moduledialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_morecontrols.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_morecontrols.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_movepagedown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepagedown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_movepagefirst.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepagefirst.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_movepagelast.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepagelast.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_movepageup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepageup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_newdoc.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_newdoc.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_numberformatpercent.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_numberformatpercent.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_objectcatalog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_objectcatalog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_ordercrit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_ordercrit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_outlinedown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlinedown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_outlineformat.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineformat.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_outlineleft.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineleft.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_outlineright.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineright.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_outlineup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_overline.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_overline.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_paragraphdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_paragraphdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_presentationcurrentslide.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_presentationcurrentslide.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_printdefault.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_printdefault.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_printersetup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_printersetup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_print.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_print.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_protect.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_protect.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_removehyperlink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_removehyperlink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_scaletext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_scaletext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_shadowed.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_shadowed.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_shrink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_shrink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_sortascending.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_sortascending.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_sortdescending.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_sortdescending.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_spacepara15.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_spacepara15.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_spacepara1.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_spacepara1.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_spacepara2.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_spacepara2.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_starchartdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_starchartdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_starshapes.signet.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_starshapes.signet.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_stylenewbyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_stylenewbyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_styleupdatebyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_styleupdatebyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_subscript.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_subscript.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_symbolcatalogue.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_symbolcatalogue.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_tabdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_tabdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_text.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_text.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_texttoolbox.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_texttoolbox.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_thesaurusdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_thesaurusdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_togglelegend.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_togglelegend.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_transformdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_transformdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_unsetcellsreadonly.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_unsetcellsreadonly.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_verticaltext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_verticaltext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/lc_wraptext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_wraptext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_borderdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_borderdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_changecasetolower.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_changecasetolower.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_config.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_config.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_contourdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_contourdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_datadatapilotrun.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_datadatapilotrun.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dataranges.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dataranges.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbdtableedit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbdtableedit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbformopen.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbformopen.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbnewform.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbnewform.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbnewquery.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbnewquery.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbnewreport.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbnewreport.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbqueryedit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbqueryedit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbqueryopen.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbqueryopen.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbquerypropertiesdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbquerypropertiesdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbreportopen.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbreportopen.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbtableedit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbtableedit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_dbtableopen.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbtableopen.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_designerdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_designerdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_diagramarea.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramarea.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_diagramaxisxyz.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramaxisxyz.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_diagramaxisz.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramaxisz.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_diagramwall.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramwall.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_doubleclicktextedit.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_doubleclicktextedit.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_drawchart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_drawchart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_draw.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_draw.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_drawtext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_drawtext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_editstyled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_editstyled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_exportdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_exportdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_fontheight.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_fontheight.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_formatselection.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_formatselection.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_formdesigntools.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_formdesigntools.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_framedialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_framedialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_goalseekdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_goalseekdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_hideslide.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_hideslide.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_imagemapdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_imagemapdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_importdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_importdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertcolumnsafter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertcolumnsafter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertcolumnsbefore.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertcolumnsbefore.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertcolumns.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertcolumns.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertendnote.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertendnote.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertmenutitles.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertmenutitles.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertobjectchart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertobjectchart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertobjectdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertobjectdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertobject.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertobject.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertpage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertpage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_insertrowsafter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertrowsafter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_legend.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_legend.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_modifypage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_modifypage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_moduledialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_moduledialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_morecontrols.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_morecontrols.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_movepagedown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepagedown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_movepagefirst.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepagefirst.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_movepagelast.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepagelast.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_movepageup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepageup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_newdoc.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_newdoc.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_objectcatalog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_objectcatalog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_outlineleft.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_outlineleft.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_outlineright.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_outlineright.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_overline.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_overline.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_pagedialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_pagedialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_paragraphdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_paragraphdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_printdefault.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_printdefault.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_printersetup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_printersetup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_print.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_print.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_removehyperlink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_removehyperlink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_scaletext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_scaletext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_shadowed.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_shadowed.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_spacepara15.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_spacepara15.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_spacepara1.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_spacepara1.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_spacepara2.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_spacepara2.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_starchartdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_starchartdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_starshapes.signet.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_starshapes.signet.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_styleupdatebyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_styleupdatebyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_tabledialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_tabledialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_text.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_text.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_texttoolbox.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_texttoolbox.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_thesaurusdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_thesaurusdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_togglelegend.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_togglelegend.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_underlinedouble.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_underlinedouble.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_unsetcellsreadonly.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_unsetcellsreadonly.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/cmd/sc_wraptext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_wraptext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/dbaccess/res/db.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/dbaccess/res/db.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/fpicker/res/fp014.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/fpicker/res/fp014.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/framework/res/folder_32.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/folder_32.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/framework/res/info_26.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/info_26.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/framework/res/recent-documents.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/recent-documents.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/framework/res/remote-documents.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/remote-documents.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/helping/note.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/helping/note.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/helping/tip.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/helping/tip.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/helping/warning.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/helping/warning.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/im30827.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/im30827.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/lx03250.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/lx03250.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/lx03251.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/lx03251.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/odb_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odb_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/odf_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odf_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/odg_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odg_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/odp_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odp_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/odt_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odt_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/otp_48_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/otp_48_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/recentdoc_remove_highlighted.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/recentdoc_remove_highlighted.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/res/recentdoc_remove.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/recentdoc_remove.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/imglst/nc05.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/imglst/nc05.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/res/date.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/date.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/res/dropcopy.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/dropcopy.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/res/droplink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/droplink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/res/dropurl.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/dropurl.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/res/file.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/file.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sc/res/fx.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/fx.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/click_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/click_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/effect_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effect_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/effectfade_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectfade_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/effectole_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectole_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/effectpath_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectpath_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/effectshape_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectshape_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/fade_effect_indicator.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/fade_effect_indicator.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/foilh03.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foilh03.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/foilh06.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foilh06.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/foilh09.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foilh09.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/foiln01.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foiln01.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/getallob.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/getallob.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/hlplhorz.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/hlplhorz.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/hlppoint.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/hlppoint.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/layout_head03.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_head03.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/layout_head04.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_head04.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/layout_head06.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_head06.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/layout_vertical01.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_vertical01.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/layout_vertical02.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_vertical02.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/ole.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/ole.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sd/res/page.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/page.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-large.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-large.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-small.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-small.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/svx/res/markers.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/svx/res/markers.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/svx/res/ole.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/svx/res/ole.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sw/imglst/nc20004.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sw/imglst/nc20004.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/sw/imglst/sr20010.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sw/imglst/sr20010.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/breeze/vcl/res/index.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/vcl/res/index.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/crystal/cmd/lc_autosum.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/lc_autosum.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/crystal/cmd/lc_grid.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/lc_grid.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/crystal/cmd/lc_styleapply.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/lc_styleapply.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/crystal/cmd/sc_animationmode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/sc_animationmode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/crystal/cmd/sc_switchxformsdesignmode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/sc_switchxformsdesignmode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/crystal/sc/imglst/lc26048.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/sc/imglst/lc26048.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/galaxy/cmd/sc_freezepanes.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/cmd/sc_freezepanes.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/galaxy/res/helpimg/rechenlt.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/res/helpimg/rechenlt.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/galaxy/res/recentdoc_remove_highlighted.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/res/recentdoc_remove_highlighted.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/galaxy/res/recentdoc_remove.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/res/recentdoc_remove.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/galaxy/sfx2/res/logo.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/sfx2/res/logo.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/galaxy/sfx2/res/startcenter-logo.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/sfx2/res/startcenter-logo.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/lc_moveupsubitems.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_moveupsubitems.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/lc_starshapes.star4.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_starshapes.star4.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/lc_symbolshapes.forbidden.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_symbolshapes.forbidden.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/lc_symbolshapes.moon.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_symbolshapes.moon.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/lc_symbolshapes.sun.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_symbolshapes.sun.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_arrowshapes.circular-arrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_browsebackward.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_browsebackward.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_downsearch.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_downsearch.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_incrementlevel.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_incrementlevel.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_movedown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_movedown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_navigateback.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_navigateback.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_outlinedown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_outlinedown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_outlineleft.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_outlineleft.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_setdocumentproperties.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_setdocumentproperties.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_starshapes.star6.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_starshapes.star6.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_symbolshapes.lightning.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_symbolshapes.lightning.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/cmd/sc_symbolshapes.moon.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_symbolshapes.moon.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/reportdesign/res/sc30769.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/reportdesign/res/sc30769.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/res/sc06301.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/res/sc06301.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/res/sx10715.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/res/sx10715.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/starmath/res/al21811.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/starmath/res/al21811.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/svtools/res/back_small.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/svtools/res/back_small.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/svx/res/fontworkalignjustified_26.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/svx/res/fontworkalignjustified_26.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/human/sw/res/one_left.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/human/sw/res/one_left.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/lc_starshapes.star4.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_starshapes.star4.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/lc_symbolshapes.forbidden.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_symbolshapes.forbidden.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/lc_symbolshapes.moon.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_symbolshapes.moon.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/lc_symbolshapes.sun.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_symbolshapes.sun.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/sc_arrowshapes.circular-arrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/sc_starshapes.star6.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_starshapes.star6.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/sc_symbolshapes.lightning.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_symbolshapes.lightning.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/industrial/cmd/sc_symbolshapes.moon.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_symbolshapes.moon.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/avmedia/res/av02050.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/avmedia/res/av02050.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/avmedia/res/av02051.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/avmedia/res/av02051.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/bg/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/bg/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/bg/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/bg/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/ca/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ca/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/ca/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ca/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/de/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/de/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/de/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/de/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/es/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/es/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/es/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/es/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/fr/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/fr/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/hu/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/hu/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/hu/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/hu/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/it/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/it/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/it/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/it/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/km/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/km/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/km/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/km/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/ko/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ko/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/ko/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ko/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/lc_autosum.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_autosum.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/lc_grid.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_grid.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/lc_inserttimefield.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_inserttimefield.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/lc_styleapply.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_styleapply.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/lc_timefield.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_timefield.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/nl/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/nl/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/nl/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/nl/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/pl/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pl/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/pl/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pl/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/pt/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pt/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/pt-BR/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pt-BR/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/ru/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ru/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/ru/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ru/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sc_animationmode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sc_animationmode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sc_switchxformsdesignmode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sc_switchxformsdesignmode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sl/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sl/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sl/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sl/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sv/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sv/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/sv/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sv/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/tr/lc_bold.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/tr/lc_bold.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/cmd/tr/sc_italic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/tr/sc_italic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/res/sx10715.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/res/sx10715.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/res/sx10769.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/res/sx10769.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/sc/imglst/lc26048.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/sc/imglst/lc26048.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/sd/res/breakplayingblue_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/sd/res/breakplayingblue_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/sd/res/stopplayingblue_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/sd/res/stopplayingblue_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/starmath/res/al21811.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/starmath/res/al21811.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/oxygen/svx/res/fontworkalignjustified_26.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/svx/res/fontworkalignjustified_26.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_arc.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_arc.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_autopilotmenu.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_autopilotmenu.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.cloud-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.cloud-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-1.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-1.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-2.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-2.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-3.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-3.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.rectangular-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.rectangular-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.round-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.round-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_calloutshapes.round-rectangular-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.round-rectangular-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_circlearc.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlearc.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_circlecut.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlecut.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_circlecut_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlecut_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_circlepie.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlepie.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_circlepie_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlepie_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_circle_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circle_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_colorscaleformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_colorscaleformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_conditionalformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_conditionalformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_conditionalformatmenu.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_conditionalformatmenu.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_crop.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_crop.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_currencyfield.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_currencyfield.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_databarformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_databarformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_deletepage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_deletepage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_drawchart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_drawchart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_duplicatepage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_duplicatepage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_ellipsecut.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_ellipsecut.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_ellipse_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_ellipse_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_euroconverter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_euroconverter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_exportto.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_exportto.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_fillcolor.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_fillcolor.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_fliphorizontal.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_fliphorizontal.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_flipvertical.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_flipvertical.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_freeline.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_freeline.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_freeline_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_freeline_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_iconsetformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_iconsetformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_importfromfile.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_importfromfile.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_insertbookmark.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertbookmark.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_insertendnote.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertendnote.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_insertfootnote.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertfootnote.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_inserthyperlink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_inserthyperlink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_insertpage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertpage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linearrowcircle.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowcircle.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linearrowend.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowend.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linearrows.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrows.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linearrowsquare.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowsquare.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linearrowstart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowstart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linecirclearrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linecirclearrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_line_diagonal.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_line_diagonal.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_line.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_line.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_linesquarearrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linesquarearrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_measureline.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_measureline.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_numberformatdecimal.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_numberformatdecimal.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_numberformatpercent.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_numberformatpercent.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_pagesetup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_pagesetup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_pie.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_pie.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_pie_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_pie_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_presentationcurrentslide.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_presentationcurrentslide.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_presentation.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_presentation.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_resetattributes.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_resetattributes.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_searchdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_searchdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_showbookview.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_showbookview.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_showmultiplepages.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_showmultiplepages.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_showtwopages.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_showtwopages.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_slidemasterpage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_slidemasterpage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_stylenewbyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_stylenewbyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_styleupdatebyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_styleupdatebyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_trackchanges.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_trackchanges.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_wraptext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_wraptext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/lc_zoommode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_zoommode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_arc.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_arc.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_assignlayout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_assignlayout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_autopilotmenu.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_autopilotmenu.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_circlearc.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlearc.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_circlecut.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlecut.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_circlecut_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlecut_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_circlepie.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlepie.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_circlepie_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlepie_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_circle_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circle_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_colorscaleformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_colorscaleformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_conditionalformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_conditionalformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_conditionalformatmenu.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_conditionalformatmenu.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_crop.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_crop.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_currencyfield.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_currencyfield.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_databarformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_databarformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_deletepage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_deletepage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_drawchart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_drawchart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_duplicatepage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_duplicatepage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_ellipsecut.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_ellipsecut.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_ellipsecut_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_ellipsecut_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_ellipse_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_ellipse_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_euroconverter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_euroconverter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_exportto.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_exportto.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_fillcolor.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_fillcolor.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_fliphorizontal.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_fliphorizontal.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_iconsetformatdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_iconsetformatdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_importfromfile.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_importfromfile.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_insertbookmark.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertbookmark.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_insertendnote.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertendnote.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_insertfootnote.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertfootnote.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_insertgraphic.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertgraphic.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_inserthyperlink.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_inserthyperlink.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_insertpage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertpage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_linearrowcircle.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrowcircle.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_linearrows.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrows.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_linearrowsquare.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrowsquare.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_linearrowstart.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrowstart.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_linecirclearrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linecirclearrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_line_diagonal.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_line_diagonal.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_line.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_line.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_measureline.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_measureline.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_numberformatdecimal.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_numberformatdecimal.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_numberformatpercent.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_numberformatpercent.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_pagesetup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_pagesetup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_pie.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_pie.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_pie_unfilled.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_pie_unfilled.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_presentationcurrentslide.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_presentationcurrentslide.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_presentationlayout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_presentationlayout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_presentation.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_presentation.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_resetattributes.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_resetattributes.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_searchdialog.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_searchdialog.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_showbookview.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_showbookview.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_showmultiplepages.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_showmultiplepages.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_showtwopages.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_showtwopages.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_slidemasterpage.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_slidemasterpage.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_stylenewbyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_stylenewbyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_styleupdatebyexample.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_styleupdatebyexample.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_wraptext.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_wraptext.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/cmd/sc_zoommode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_zoommode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/framework/res/folder_32.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/framework/res/folder_32.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/framework/res/recent-documents.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/framework/res/recent-documents.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/framework/res/templates_32.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/framework/res/templates_32.png differ diff -Nru libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/links.txt libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/links.txt --- libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/links.txt 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/links.txt 2015-10-24 15:21:49.000000000 +0000 @@ -1,3 +1,59 @@ +# Navigator - Writer +sw/res/all_left.png cmd/sc_firstpage.png +sw/res/all_right.png cmd/sc_lastpage.png +sw/res/one_left.png cmd/sc_navigateback.png +sw/res/one_right.png cmd/sc_navigateforward.png +sw/res/styfamnu.png cmd/sc_defaultbullet.png +sw/imglst/nc20001.png cmd/sc_inserttable.png +sw/imglst/nc20002.png cmd/sc_text.png +sw/imglst/nc20003.png cmd/sc_insertgraphic.png +sw/imglst/nc20004.png cmd/sc_drawchart.png +sw/imglst/nc20005.png cmd/sc_insertbookmark.png +sw/imglst/nc20006.png cmd/sc_insertsection.png +sw/imglst/nc20007.png cmd/sc_inserthyperlink.png +sw/imglst/nc20008.png cmd/sc_insertreferencefield.png +sw/imglst/nc20009.png cmd/sc_insertindexesentry.png +sw/imglst/nc20010.png cmd/sc_insertannotation.png +sw/imglst/nc20011.png cmd/sc_insertdraw.png +sw/imglst/sc20171.png cmd/sc_downsearch.png +sw/imglst/sc20172.png cmd/sc_navigateback.png +sw/imglst/sc20173.png cmd/sc_navigateforward.png +sw/imglst/sc20174.png cmd/sc_upsearch.png +sw/imglst/sc20175.png cmd/sc_flowchartshapes.flowchart-merge.png +sw/imglst/sc20186.png cmd/sc_flowchartshapes.flowchart-extract.png +sw/imglst/sc20235.png cmd/sc_inserthyperlink.png +sw/imglst/sc20239.png cmd/sc_copy.png +sw/imglst/sc20249.png cmd/sc_navigator.png +sw/imglst/sf01.png cmd/sc_controlcodes.png +sw/imglst/sf02.png cmd/sc_bold.png +sw/imglst/sf04.png cmd/sc_adddirect.png +sw/imglst/sf05.png cmd/sc_defaultbullet.png +sw/imglst/sr20000.png cmd/sc_downsearch.png +sw/imglst/sr20001.png cmd/sc_upsearch.png +sw/imglst/sr20002.png cmd/sc_inserttable.png +sw/imglst/sr20003.png cmd/sc_text.png +sw/imglst/sr20004.png cmd/sc_adddirect.png +sw/imglst/sr20005.png cmd/sc_insertdraw.png +sw/imglst/sr20006.png cmd/sc_choosecontrols.png +sw/imglst/sr20007.png cmd/sc_insertsection.png +sw/imglst/sr20008.png cmd/sc_insertbookmark.png +sw/imglst/sr20009.png cmd/sc_insertgraphic.png +sw/imglst/sr20010.png cmd/sc_drawchart.png +sw/imglst/sr20015.png cmd/sc_insertannotation.png +sw/imglst/sr20016.png cmd/sc_searchdialog.png +sw/imglst/sr20013.png cmd/sc_insertfootnote.png +sw/imglst/sr20014.png sw/imglst/sc20183.png +sw/imglst/sr20017.png cmd/sc_insertindexesentry.png +# Navigator - Calc +sc/imglst/na05.png cmd/sc_upsearch.png +sc/imglst/na06.png cmd/sc_downsearch.png +sc/imglst/nc01.png cmd/sc_inserttable.png +sc/imglst/nc04.png cmd/sc_insertgraphic.png +sc/imglst/nc05.png cmd/sc_drawchart.png +sc/imglst/nc06.png cmd/sc_insertannotation.png +sc/imglst/nc08.png cmd/sc_insertdraw.png +sc/res/table.png cmd/sc_inserttable.png + # File Menu cmd/sc_exporttopdf.png cmd/sc_exportdirecttopdf.png Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/lx03253.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/lx03253.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/lx03254.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/lx03254.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/lx03255.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/lx03255.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/odb_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odb_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/odf_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odf_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/odg_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odg_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/odm_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odm_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/odp_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odp_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/ods_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/ods_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/odt_32_8.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odt_32_8.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/sx03253.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/sx03253.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/sx03254.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/sx03254.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/res/sx03255.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/sx03255.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/svx/res/doc_modified_feedback.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/svx/res/doc_modified_feedback.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/svx/res/selection_10x22.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/svx/res/selection_10x22.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/imglst/sf03.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/imglst/sf03.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/doublepage_10x22.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/doublepage_10x22.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/emptypage_10x14.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/emptypage_10x14.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatmirror_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatmirror_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnormal_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnormal_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatwide_24x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatwide_24x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/sifr/sw/res/twopages_10x24.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/twopages_10x24.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/chart2/res/typearea_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typearea_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/chart2/res/typebubble_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typebubble_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/chart2/res/typenet_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typenet_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/chart2/res/typepointline_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typepointline_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/chart2/res/typestock_16.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typestock_16.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_aligncenter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_aligncenter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_aligndown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_aligndown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_alignmiddle.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_alignmiddle.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_aligntop.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_aligntop.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_alignup.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_alignup.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_alignverticalcenter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_alignverticalcenter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_bezierdelete.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_bezierdelete.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_crop.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_crop.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_datadatapilotrun.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_datadatapilotrun.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_deletetable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_deletetable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_entirecolumn.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_entirecolumn.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_entirerow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_entirerow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_flipvertical.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_flipvertical.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_insertcellsdown.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_insertcellsdown.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_insertcellsright.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_insertcellsright.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_inserttable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_inserttable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_mergecells.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_mergecells.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_objectalignleft.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_objectalignleft.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_objectalign.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_objectalign.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_objectalignright.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_objectalignright.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_optimizetable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_optimizetable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_selecttable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_selecttable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_textdirectionlefttoright.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_textdirectionlefttoright.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_togglemergecells.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_togglemergecells.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_toggleobjectrotatemode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_toggleobjectrotatemode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/lc_togglesheetgrid.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_togglesheetgrid.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_arrowshapes.circular-arrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_arrowshapes.quad-arrow-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_arrowshapes.right-arrow-callout.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_arrowshapes.right-arrow-callout.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_crop.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_crop.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_datafilterstandardfilter.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_datafilterstandardfilter.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_flipvertical.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_flipvertical.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_freezepanes.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_freezepanes.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_inserttable.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_inserttable.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_linewidth.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_linewidth.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_objectalignleft.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_objectalignleft.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_objectalign.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_objectalign.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_objectalignright.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_objectalignright.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_outlinefont.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_outlinefont.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/cmd/sc_toggleobjectrotatemode.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_toggleobjectrotatemode.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/res/helpimg/note.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/res/helpimg/note.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/res/helpimg/tip.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/res/helpimg/tip.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/res/helpimg/warning.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/res/helpimg/warning.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/sd/res/layout_vertical01.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sd/res/layout_vertical01.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/sd/res/layout_vertical02.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sd/res/layout_vertical02.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/sfx2/res/minus.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sfx2/res/minus.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango/sfx2/res/plus.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sfx2/res/plus.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango_testing/cmd/sc_arrowshapes.circular-arrow.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango_testing/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/icon-themes/tango_testing/cmd/sc_basicshapes.cross.png and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/icon-themes/tango_testing/cmd/sc_basicshapes.cross.png differ diff -Nru libreoffice-l10n-5.0.2~rc2/include/oox/export/drawingml.hxx libreoffice-l10n-5.0.3~rc2/include/oox/export/drawingml.hxx --- libreoffice-l10n-5.0.2~rc2/include/oox/export/drawingml.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/oox/export/drawingml.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -74,6 +74,10 @@ virtual void WriteOutliner(const OutlinerParaObject& rParaObj) = 0; /// Write the contents of the textbox that is associated to this shape. virtual void WriteTextBox(css::uno::Reference xShape) = 0; + /// Look up the RelId of a graphic based on its checksum. + virtual OUString FindRelId(BitmapChecksum nChecksum) = 0; + /// Store the RelId of a graphic based on its checksum. + virtual void CacheRelId(BitmapChecksum nChecksum, const OUString& rRelId) = 0; protected: DMLTextExport() {} virtual ~DMLTextExport() {} @@ -104,7 +108,7 @@ bool GetPropertyAndState( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState > rXPropState, const OUString& aName, ::com::sun::star::beans::PropertyState& eState ); - const char* GetFieldType( ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > rRun, bool& bIsField ); + OUString GetFieldValue( ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > rRun, bool& bIsURLField ); /// If bRelPathToMedia is true add "../" to image folder path while adding the image relationship diff -Nru libreoffice-l10n-5.0.2~rc2/include/oox/export/vmlexport.hxx libreoffice-l10n-5.0.3~rc2/include/oox/export/vmlexport.hxx --- libreoffice-l10n-5.0.2~rc2/include/oox/export/vmlexport.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/oox/export/vmlexport.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -39,6 +39,10 @@ virtual oox::drawingml::DrawingML& GetDrawingML() = 0; /// Write the contents of the textbox that is associated to this shape in VML format. virtual void WriteVMLTextBox(css::uno::Reference xShape) = 0; + /// Look up the RelId of a graphic based on its checksum. + virtual OUString FindRelId(BitmapChecksum nChecksum) = 0; + /// Store the RelId of a graphic based on its checksum. + virtual void CacheRelId(BitmapChecksum nChecksum, const OUString& rRelId) = 0; protected: VMLTextExport() {} virtual ~VMLTextExport() {} diff -Nru libreoffice-l10n-5.0.2~rc2/include/svl/style.hxx libreoffice-l10n-5.0.3~rc2/include/svl/style.hxx --- libreoffice-l10n-5.0.2~rc2/include/svl/style.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/svl/style.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -143,6 +143,11 @@ virtual void SetHelpId( const OUString& r, sal_uLong nId ); virtual SfxItemSet& GetItemSet(); + /// Due to writer's usual lack of sanity this is a separate function for + /// preview only; it shall not create the style in case it does not exist. + /// If the style has parents, it is _not_ required that the returned item + /// set has parents (i.e. use it for display purposes only). + virtual std::unique_ptr GetItemSetForPreview(); }; /* Class to iterate and search on a SfxStyleSheetBasePool */ diff -Nru libreoffice-l10n-5.0.2~rc2/include/svtools/DocumentToGraphicRenderer.hxx libreoffice-l10n-5.0.3~rc2/include/svtools/DocumentToGraphicRenderer.hxx --- libreoffice-l10n-5.0.2~rc2/include/svtools/DocumentToGraphicRenderer.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/svtools/DocumentToGraphicRenderer.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -49,7 +49,8 @@ Size getDocumentSizeIn100mm( sal_Int32 aCurrentPage ); - Graphic renderToGraphic(sal_Int32 aCurrentPage, Size aDocumentSizePixel, Size aTargetSizePixel); + Graphic renderToGraphic(sal_Int32 aCurrentPage, Size aDocumentSizePixel, + Size aTargetSizePixel, Color aPageColor = COL_TRANSPARENT); }; #endif diff -Nru libreoffice-l10n-5.0.2~rc2/include/svx/CommonStylePreviewRenderer.hxx libreoffice-l10n-5.0.3~rc2/include/svx/CommonStylePreviewRenderer.hxx --- libreoffice-l10n-5.0.2~rc2/include/svx/CommonStylePreviewRenderer.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/svx/CommonStylePreviewRenderer.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -22,7 +22,7 @@ class SVX_DLLPUBLIC CommonStylePreviewRenderer : public sfx2::StylePreviewRenderer { - SvxFont maFont; + std::unique_ptr m_pFont; Color maFontColor; Color maBackgroundColor; Size maPixelSize; diff -Nru libreoffice-l10n-5.0.2~rc2/include/svx/dialogs.hrc libreoffice-l10n-5.0.3~rc2/include/svx/dialogs.hrc --- libreoffice-l10n-5.0.2~rc2/include/svx/dialogs.hrc 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/svx/dialogs.hrc 2015-10-24 15:21:49.000000000 +0000 @@ -1044,7 +1044,6 @@ #define RID_SVXSTR_RECOVERYONLY_FINISH_DESCR (RID_SVX_START + 1289) #define RID_SVXSTR_RECOVERYONLY_FINISH (RID_SVX_START + 1290) #define RID_SVXSTR_ZOOMTOOL_HINT (RID_SVX_START + 1291) -#define RID_SVXSTR_ZOOM (RID_SVX_START + 1292) #define RID_SVXSTR_ZOOM_IN (RID_SVX_START + 1293) #define RID_SVXSTR_ZOOM_OUT (RID_SVX_START + 1294) #define RID_SVXSTR_CUSTOM (RID_SVX_START + 1295) diff -Nru libreoffice-l10n-5.0.2~rc2/include/vcl/field.hxx libreoffice-l10n-5.0.3~rc2/include/vcl/field.hxx --- libreoffice-l10n-5.0.2~rc2/include/vcl/field.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/vcl/field.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -489,6 +489,7 @@ virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE; virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE; virtual void Modify() SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -518,6 +519,7 @@ virtual void First() SAL_OVERRIDE; virtual void Last() SAL_OVERRIDE; virtual bool set_property(const OString &rKey, const OString &rValue) SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -588,6 +590,7 @@ { return ConvertDoubleValue( static_cast(nValue), nDecDigits, eInUnit, eOutUnit ); } virtual bool set_property(const OString &rKey, const OString &rValue) SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -610,6 +613,7 @@ virtual void Down() SAL_OVERRIDE; virtual void First() SAL_OVERRIDE; virtual void Last() SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -644,6 +648,7 @@ Date GetFirst() const { return maFirst; } void SetLast( const Date& rNewLast ) { maLast = rNewLast; } Date GetLast() const { return maLast; } + virtual void dispose() SAL_OVERRIDE; }; @@ -679,6 +684,7 @@ tools::Time GetLast() const { return maLast; } void SetExtFormat( ExtTimeFieldFormat eFormat ); + virtual void dispose() SAL_OVERRIDE; }; @@ -697,6 +703,7 @@ virtual void Modify() SAL_OVERRIDE; virtual void ReformatAll() SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -720,6 +727,7 @@ virtual void ReformatAll() SAL_OVERRIDE; void InsertValue( sal_Int64 nValue, sal_Int32 nPos = COMBOBOX_APPEND ); + virtual void dispose() SAL_OVERRIDE; }; @@ -752,6 +760,8 @@ // Needed, because GetValue() with nPos hide these functions virtual sal_Int64 GetValue( FieldUnit eOutUnit ) const SAL_OVERRIDE; virtual sal_Int64 GetValue() const SAL_OVERRIDE; + + virtual void dispose() SAL_OVERRIDE; }; @@ -773,6 +783,7 @@ virtual void ReformatAll() SAL_OVERRIDE; virtual sal_Int64 GetValue() const SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -791,6 +802,7 @@ virtual void Modify() SAL_OVERRIDE; virtual void ReformatAll() SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; @@ -810,6 +822,7 @@ virtual void Modify() SAL_OVERRIDE; virtual void ReformatAll() SAL_OVERRIDE; + virtual void dispose() SAL_OVERRIDE; }; #endif // INCLUDED_VCL_FIELD_HXX diff -Nru libreoffice-l10n-5.0.2~rc2/include/vcl/opengl/OpenGLContext.hxx libreoffice-l10n-5.0.3~rc2/include/vcl/opengl/OpenGLContext.hxx --- libreoffice-l10n-5.0.2~rc2/include/vcl/opengl/OpenGLContext.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/vcl/opengl/OpenGLContext.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -142,6 +142,9 @@ GLWindow() : #if defined( _WIN32 ) + hWnd(NULL), + hDC(NULL), + hRC(NULL), #elif defined( MACOSX ) #elif defined( IOS ) #elif defined( ANDROID ) diff -Nru libreoffice-l10n-5.0.2~rc2/include/xmloff/PageMasterStyleMap.hxx libreoffice-l10n-5.0.3~rc2/include/xmloff/PageMasterStyleMap.hxx --- libreoffice-l10n-5.0.2~rc2/include/xmloff/PageMasterStyleMap.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/include/xmloff/PageMasterStyleMap.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -96,6 +96,7 @@ #define CTF_PM_FILLHATCHNAME (XML_PM_CTF_START + 0x0040) #define CTF_PM_FILLBITMAPNAME (XML_PM_CTF_START + 0x0041) #define CTF_PM_FILLTRANSNAME (XML_PM_CTF_START + 0x0042) +#define CTF_PM_FILLBITMAPMODE (XML_PM_CTF_START + 0x0043) #define CTF_PM_SCALETO (XML_PM_CTF_START + 0x0051) // calc specific #define CTF_PM_SCALETOPAGES (XML_PM_CTF_START + 0x0052) diff -Nru libreoffice-l10n-5.0.2~rc2/instsetoo_native/CustomTarget_setup.mk libreoffice-l10n-5.0.3~rc2/instsetoo_native/CustomTarget_setup.mk --- libreoffice-l10n-5.0.2~rc2/instsetoo_native/CustomTarget_setup.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/instsetoo_native/CustomTarget_setup.mk 2015-10-24 15:21:49.000000000 +0000 @@ -103,6 +103,7 @@ && echo 'buildid=$(shell cd $(SRCDIR) && git log -1 --format=%H)' \ ) > $@ +# for release-builds (building installers) adjust values in openoffice.lst.in $(call gb_CustomTarget_get_workdir,instsetoo_native/setup)/$(call gb_Helper_get_rcfile,soffice) : $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1) ( \ diff -Nru libreoffice-l10n-5.0.2~rc2/instsetoo_native/util/openoffice.lst.in libreoffice-l10n-5.0.3~rc2/instsetoo_native/util/openoffice.lst.in --- libreoffice-l10n-5.0.2~rc2/instsetoo_native/util/openoffice.lst.in 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/instsetoo_native/util/openoffice.lst.in 2015-10-24 15:21:49.000000000 +0000 @@ -16,11 +16,11 @@ SOLSUREPACKAGEPREFIX libreoffice REGISTRATION_HOST https://registration.libreoffice.org/RegistrationWeb REGISTRATIONURL http://survey.libreoffice.org/user/index.php - PROGRESSBARCOLOR 128,128,128 - PROGRESSSIZE 409,8 - PROGRESSPOSITION 72,189 - PROGRESSFRAMECOLOR 245,245,245 - PROGRESSTEXTBASELINE 170 + PROGRESSBARCOLOR 0,0,0 + PROGRESSSIZE 444,8 + PROGRESSPOSITION 35,153 + PROGRESSFRAMECOLOR 102,102,102 + PROGRESSTEXTBASELINE 145 PROGRESSTEXTCOLOR 255,255,255 NATIVEPROGRESS false REGISTRYLAYERNAME Layers diff -Nru libreoffice-l10n-5.0.2~rc2/l10ntools/source/xmlparse.cxx libreoffice-l10n-5.0.3~rc2/l10ntools/source/xmlparse.cxx --- libreoffice-l10n-5.0.2~rc2/l10ntools/source/xmlparse.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/l10ntools/source/xmlparse.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1144,7 +1144,7 @@ icu::UnicodeString sReturn; int32_t nEndPos = 0; int32_t nStartPos = 0; - while( aRegexMatcher.find(nStartPos, nIcuErr) && nIcuErr == U_ZERO_ERROR ) + while( aRegexMatcher.find(nStartPos, nIcuErr) && U_SUCCESS(nIcuErr) ) { nStartPos = aRegexMatcher.start(nIcuErr); if ( nEndPos < nStartPos ) diff -Nru libreoffice-l10n-5.0.2~rc2/oox/source/docprop/ooxmldocpropimport.cxx libreoffice-l10n-5.0.3~rc2/oox/source/docprop/ooxmldocpropimport.cxx --- libreoffice-l10n-5.0.2~rc2/oox/source/docprop/ooxmldocpropimport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/oox/source/docprop/ooxmldocpropimport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -80,8 +80,13 @@ const StringPair& rEntry = rEntries[ nEntryIndex ]; if ( rEntry.First == "Target" ) { + // The stream path is always a relative one, ignore the leading "/" if it's there. + OUString aStreamPath = rEntry.Second; + if (aStreamPath.startsWith("/")) + aStreamPath = aStreamPath.copy(1); + Reference< XExtendedStorageStream > xExtStream( - xHierarchy->openStreamElementByHierarchicalName( rEntry.Second, ElementModes::READ ), UNO_QUERY_THROW ); + xHierarchy->openStreamElementByHierarchicalName( aStreamPath, ElementModes::READ ), UNO_QUERY_THROW ); Reference< XInputStream > xInStream = xExtStream->getInputStream(); if( xInStream.is() ) { diff -Nru libreoffice-l10n-5.0.2~rc2/oox/source/export/drawingml.cxx libreoffice-l10n-5.0.3~rc2/oox/source/export/drawingml.cxx --- libreoffice-l10n-5.0.2~rc2/oox/source/export/drawingml.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/oox/source/export/drawingml.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -769,7 +769,7 @@ mpFS->endElementNS( XML_a, XML_ln ); } -OUString DrawingML::WriteImage( const OUString& rURL, bool bRelPathToMedia ) +bool lcl_URLToGraphic(const OUString& rURL, Graphic& rGraphic) { OString aURLBS(OUStringToOString(rURL, RTL_TEXTENCODING_UTF8)); @@ -778,9 +778,18 @@ if ( index != -1 ) { - DBG(fprintf (stderr, "begin: %ld %s\n", long( sizeof( aURLBegin ) ), USS( rURL ) + RTL_CONSTASCII_LENGTH( aURLBegin ) )); - Graphic aGraphic = GraphicObject( aURLBS.copy(RTL_CONSTASCII_LENGTH(aURLBegin)) ).GetTransformedGraphic (); + rGraphic = GraphicObject(aURLBS.copy(RTL_CONSTASCII_LENGTH(aURLBegin))).GetTransformedGraphic(); + return true; + } + + return false; +} +OUString DrawingML::WriteImage( const OUString& rURL, bool bRelPathToMedia ) +{ + Graphic aGraphic; + if (lcl_URLToGraphic(rURL, aGraphic)) + { return WriteImage( aGraphic , bRelPathToMedia ); } else @@ -930,7 +939,23 @@ OUString DrawingML::WriteBlip( Reference< XPropertySet > rXPropSet, const OUString& rURL, bool bRelPathToMedia, const Graphic *pGraphic ) { - OUString sRelId = pGraphic ? WriteImage( *pGraphic, bRelPathToMedia ) : WriteImage( rURL, bRelPathToMedia ); + OUString sRelId; + BitmapChecksum nChecksum = 0; + if (!rURL.isEmpty() && mpTextExport) + { + Graphic aGraphic; + if (lcl_URLToGraphic(rURL, aGraphic)) + { + nChecksum = aGraphic.GetChecksum(); + sRelId = mpTextExport->FindRelId(nChecksum); + } + } + if (sRelId.isEmpty()) + { + sRelId = pGraphic ? WriteImage( *pGraphic, bRelPathToMedia ) : WriteImage( rURL, bRelPathToMedia ); + if (!rURL.isEmpty() && mpTextExport) + mpTextExport->CacheRelId(nChecksum, sRelId); + } sal_Int16 nBright = 0; sal_Int32 nContrast = 0; @@ -1413,7 +1438,7 @@ Reference< XTextField > rXTextField; GET( rXTextField, TextField ); if( rXTextField.is() ) - rRun.set( rXTextField, UNO_QUERY ); + rXPropSet.set( rXTextField, UNO_QUERY ); } // field properties starts here @@ -1436,11 +1461,10 @@ mpFS->endElementNS( XML_a, nElement ); } -const char* DrawingML::GetFieldType( ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > rRun, bool& bIsField ) +OUString DrawingML::GetFieldValue( ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > rRun, bool& bIsURLField ) { - const char* sType = NULL; Reference< XPropertySet > rXPropSet( rRun, UNO_QUERY ); - OUString aFieldType; + OUString aFieldType, aFieldValue; if( GETA( TextPortionType ) ) { @@ -1454,7 +1478,6 @@ GET( rXTextField, TextField ); if( rXTextField.is() ) { - bIsField = true; rXPropSet.set( rXTextField, UNO_QUERY ); if( rXPropSet.is() ) { @@ -1462,17 +1485,19 @@ DBG(fprintf (stderr, "field kind: %s\n", USS(aFieldKind) )); if( aFieldKind == "Page" ) { - return "slidenum"; + aFieldValue = OUString("slidenum"); + } + else if( aFieldKind == "URL" ) + { + bIsURLField = true; + GET( aFieldValue, Representation) + } - // else if( aFieldKind == "URL" ) { - // do not return here - // and make URL field text run with hyperlink property later - // } } } } - return sType; + return aFieldValue; } void DrawingML::GetUUID( OStringBuffer& rBuffer ) @@ -1521,14 +1546,19 @@ sal_Int16 nLevel = -1; GET( nLevel, NumberingLevel ); - const char* sFieldType; - bool bIsField = false; + bool bIsURLField = false; + OUString sFieldValue = GetFieldValue( rRun, bIsURLField ); + bool bWriteField = !( sFieldValue.isEmpty() || bIsURLField ); + OUString sText = rRun->getString(); //if there is no text following the bullet, add a space after the bullet if (nLevel !=-1 && sText.isEmpty() ) sText=" "; + if ( bIsURLField ) + sText = sFieldValue; + if( sText.isEmpty()) { Reference< XPropertySet > xPropSet( rRun, UNO_QUERY ); @@ -1546,15 +1576,14 @@ } } - sFieldType = GetFieldType( rRun, bIsField ); - if( ( sFieldType != NULL ) ) + if( ( bWriteField ) ) { OStringBuffer sUUID(39); GetUUID( sUUID ); mpFS->startElementNS( XML_a, XML_fld, XML_id, sUUID.getStr(), - XML_type, sFieldType, + XML_type, OUStringToOString( sFieldValue, RTL_TEXTENCODING_UTF8 ).getStr(), FSEND ); } else @@ -1563,13 +1592,13 @@ } Reference< XPropertySet > xPropSet( rRun, uno::UNO_QUERY ); - WriteRunProperties( xPropSet, bIsField ); + WriteRunProperties( xPropSet, bIsURLField ); mpFS->startElementNS( XML_a, XML_t, FSEND ); mpFS->writeEscaped( sText ); mpFS->endElementNS( XML_a, XML_t ); - if( sFieldType ) + if( bWriteField ) mpFS->endElementNS( XML_a, XML_fld ); else mpFS->endElementNS( XML_a, XML_r ); @@ -1746,10 +1775,14 @@ mpFS->singleElementNS( XML_a, XML_buSzPct, XML_val, IS( std::max( (sal_Int32)25000, std::min( (sal_Int32)400000, 1000*( (sal_Int32)nBulletRelSize ) ) ) ), FSEND ); if( bHasFontDesc ) + { + if ( SVX_NUM_CHAR_SPECIAL == nNumberingType ) + aBulletChar = SubstituteBullet( aBulletChar, aFontDesc ); mpFS->singleElementNS( XML_a, XML_buFont, XML_typeface, aFontDesc.Name.toUtf8().getStr(), XML_charset, (aFontDesc.CharSet == awt::CharSet::SYMBOL) ? "2" : NULL, FSEND ); + } OUString pAutoNumType = GetAutoNumType( nNumberingType, bSDot, bPBehind, bPBoth ); @@ -1762,7 +1795,6 @@ } else { - aBulletChar = SubstituteBullet( aBulletChar, aFontDesc ); mpFS->singleElementNS(XML_a, XML_buChar, XML_char, USS( OUString( aBulletChar ) ), FSEND); } } diff -Nru libreoffice-l10n-5.0.2~rc2/oox/source/export/vmlexport.cxx libreoffice-l10n-5.0.3~rc2/oox/source/export/vmlexport.cxx --- libreoffice-l10n-5.0.2~rc2/oox/source/export/vmlexport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/oox/source/export/vmlexport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -583,7 +583,14 @@ aStream.Seek(0); Graphic aGraphic; GraphicConverter::Import(aStream, aGraphic); - OUString aImageId = m_pTextExport->GetDrawingML().WriteImage( aGraphic ); + + BitmapChecksum nChecksum = aGraphic.GetChecksum(); + OUString aImageId = m_pTextExport->FindRelId(nChecksum); + if (aImageId.isEmpty()) + { + aImageId = m_pTextExport->GetDrawingML().WriteImage( aGraphic ); + m_pTextExport->CacheRelId(nChecksum, aImageId); + } pAttrList->add(FSNS(XML_r, XML_id), OUStringToOString(aImageId, RTL_TEXTENCODING_UTF8)); imageData = true; } diff -Nru libreoffice-l10n-5.0.2~rc2/package/inc/ZipOutputEntry.hxx libreoffice-l10n-5.0.3~rc2/package/inc/ZipOutputEntry.hxx --- libreoffice-l10n-5.0.2~rc2/package/inc/ZipOutputEntry.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/package/inc/ZipOutputEntry.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -37,7 +37,8 @@ { ::com::sun::star::uno::Sequence< sal_Int8 > m_aDeflateBuffer; ZipUtils::Deflater m_aDeflater; - css::uno::Reference< css::io::XTempFile > m_xTempFile; + css::uno::Reference< css::uno::XComponentContext > m_xContext; + OUString m_aTempURL; css::uno::Reference< css::io::XOutputStream > m_xOutStream; ::com::sun::star::uno::Reference< ::com::sun::star::xml::crypto::XCipherContext > m_xCipherContext; @@ -58,14 +59,22 @@ ~ZipOutputEntry(); - css::uno::Reference< css::io::XInputStream > getData(); + /* This block of methods is for threaded zipping, where we compress to a temp stream, whose + data is retrieved via getData */ + ZipOutputEntry( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext, + ZipEntry& rEntry, ZipPackageStream* pStream, bool bEncrypt = false); + void createBufferFile(); + void setParallelDeflateException(const ::css::uno::Any &rAny) { m_aParallelDeflateException = rAny; } + css::uno::Reference< css::io::XInputStream > getData() const; + ::css::uno::Any getParallelDeflateException() const { return m_aParallelDeflateException; } + void closeBufferFile(); + void deleteBufferFile(); + ZipEntry* getZipEntry() { return m_pCurrentEntry; } ZipPackageStream* getZipPackageStream() { return m_pCurrentStream; } bool isEncrypt() { return m_bEncryptCurrentEntry; } - void setParallelDeflateException(const ::css::uno::Any &rAny) { m_aParallelDeflateException = rAny; } - ::css::uno::Any getParallelDeflateException() const { return m_aParallelDeflateException; } - void closeEntry(); void write(const css::uno::Sequence< sal_Int8 >& rBuffer); diff -Nru libreoffice-l10n-5.0.2~rc2/package/source/zipapi/ZipOutputEntry.cxx libreoffice-l10n-5.0.3~rc2/package/source/zipapi/ZipOutputEntry.cxx --- libreoffice-l10n-5.0.2~rc2/package/source/zipapi/ZipOutputEntry.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/package/source/zipapi/ZipOutputEntry.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -21,6 +21,8 @@ #include #include +#include +#include #include #include @@ -49,25 +51,40 @@ bool bEncrypt) : m_aDeflateBuffer(n_ConstBufferSize) , m_aDeflater(DEFAULT_COMPRESSION, true) +, m_xContext(rxContext) +, m_xOutStream(rxOutput) , m_pCurrentEntry(&rEntry) , m_nDigested(0) , m_bEncryptCurrentEntry(bEncrypt) , m_pCurrentStream(pStream) { - if (rxOutput.is()) - { - m_xOutStream = rxOutput; - } - else + assert(m_pCurrentEntry->nMethod == DEFLATED && "Use ZipPackageStream::rawWrite() for STORED entries"); + assert(m_xOutStream.is()); + if (m_bEncryptCurrentEntry) { - m_xTempFile = io::TempFile::create(rxContext); - m_xOutStream = m_xTempFile->getOutputStream(); + m_xCipherContext = ZipFile::StaticGetCipher( m_xContext, pStream->GetEncryptionData(), true ); + m_xDigestContext = ZipFile::StaticGetDigestContextForChecksum( m_xContext, pStream->GetEncryptionData() ); } +} + +ZipOutputEntry::ZipOutputEntry( + const uno::Reference< uno::XComponentContext >& rxContext, + ZipEntry& rEntry, + ZipPackageStream* pStream, + bool bEncrypt) +: m_aDeflateBuffer(n_ConstBufferSize) +, m_aDeflater(DEFAULT_COMPRESSION, true) +, m_xContext(rxContext) +, m_pCurrentEntry(&rEntry) +, m_nDigested(0) +, m_bEncryptCurrentEntry(bEncrypt) +, m_pCurrentStream(pStream) +{ assert(m_pCurrentEntry->nMethod == DEFLATED && "Use ZipPackageStream::rawWrite() for STORED entries"); if (m_bEncryptCurrentEntry) { - m_xCipherContext = ZipFile::StaticGetCipher( rxContext, pStream->GetEncryptionData(), true ); - m_xDigestContext = ZipFile::StaticGetDigestContextForChecksum( rxContext, pStream->GetEncryptionData() ); + m_xCipherContext = ZipFile::StaticGetCipher( m_xContext, pStream->GetEncryptionData(), true ); + m_xDigestContext = ZipFile::StaticGetDigestContextForChecksum( m_xContext, pStream->GetEncryptionData() ); } } @@ -75,12 +92,39 @@ { } -uno::Reference< io::XInputStream > ZipOutputEntry::getData() +void ZipOutputEntry::createBufferFile() +{ + assert(!m_xOutStream.is() && m_aTempURL.isEmpty() && + "should only be called in the threaded mode where there is no existing stream yet"); + uno::Reference < beans::XPropertySet > xTempFileProps( + io::TempFile::create(m_xContext), + uno::UNO_QUERY_THROW ); + xTempFileProps->setPropertyValue("RemoveFile", uno::makeAny(sal_False)); + uno::Any aUrl = xTempFileProps->getPropertyValue( "Uri" ); + aUrl >>= m_aTempURL; + assert(!m_aTempURL.isEmpty()); + + uno::Reference < ucb::XSimpleFileAccess3 > xTempAccess(ucb::SimpleFileAccess::create(m_xContext)); + m_xOutStream = xTempAccess->openFileWrite(m_aTempURL); +} + +void ZipOutputEntry::closeBufferFile() { m_xOutStream->closeOutput(); - uno::Reference< io::XSeekable > xTempSeek(m_xOutStream, UNO_QUERY_THROW); - xTempSeek->seek(0); - return m_xTempFile->getInputStream(); + m_xOutStream.clear(); +} + +void ZipOutputEntry::deleteBufferFile() +{ + assert(!m_xOutStream.is() && !m_aTempURL.isEmpty()); + uno::Reference < ucb::XSimpleFileAccess3 > xAccess(ucb::SimpleFileAccess::create(m_xContext)); + xAccess->kill(m_aTempURL); +} + +uno::Reference< io::XInputStream > ZipOutputEntry::getData() const +{ + uno::Reference < ucb::XSimpleFileAccess3 > xTempAccess(ucb::SimpleFileAccess::create(m_xContext)); + return xTempAccess->openFileRead(m_aTempURL); } void ZipOutputEntry::closeEntry() diff -Nru libreoffice-l10n-5.0.2~rc2/package/source/zipapi/ZipOutputStream.cxx libreoffice-l10n-5.0.3~rc2/package/source/zipapi/ZipOutputStream.cxx --- libreoffice-l10n-5.0.2~rc2/package/source/zipapi/ZipOutputStream.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/package/source/zipapi/ZipOutputStream.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -121,10 +121,12 @@ rawWrite(aSequence); } while (nRead == n_ConstBufferSize); + xInput.clear(); rawCloseEntry(m_aEntries[i]->isEncrypt()); m_aEntries[i]->getZipPackageStream()->successfullyWritten(m_aEntries[i]->getZipEntry()); + m_aEntries[i]->deleteBufferFile(); delete m_aEntries[i]; } diff -Nru libreoffice-l10n-5.0.2~rc2/package/source/zippackage/ZipPackageStream.cxx libreoffice-l10n-5.0.3~rc2/package/source/zippackage/ZipPackageStream.cxx --- libreoffice-l10n-5.0.2~rc2/package/source/zippackage/ZipPackageStream.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/package/source/zippackage/ZipPackageStream.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -474,8 +474,10 @@ { try { + mpEntry->createBufferFile(); deflateZipEntry(mpEntry, mxInStream); mxInStream.clear(); + mpEntry->closeBufferFile(); } catch (const uno::Exception&) { @@ -823,7 +825,6 @@ { // Start a new thread deflating this zip entry ZipOutputEntry *pZipEntry = new ZipOutputEntry( - css::uno::Reference(), m_xContext, *pTempEntry, this, bToBeEncrypted); rZipOut.addDeflatingThread( pZipEntry, new DeflateThread(pZipEntry, xStream) ); } diff -Nru libreoffice-l10n-5.0.2~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-l10n-5.0.3~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-l10n-5.0.2~rc2/readlicense_oo/license/CREDITS.fodt 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/readlicense_oo/license/CREDITS.fodt 2015-10-24 15:21:49.000000000 +0000 @@ -1,28 +1,28 @@ - Credits ยป LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.0.2.1$Linux_X86_64 LibreOffice_project/9a18d52abbdfbdc2ac9acebec2b92e7859eb73b72012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits ยป LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.0.2.2$Linux_X86_64 LibreOffice_project/37b43f919e4de5eeaca9b9755ed688758a8251fe2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 660 + 1004 501 - 53024 - 30023 + 36347 + 20567 true true view2 - 4064 - 5029 + 36634 + 1214 501 - 660 - 53523 - 30681 + 1004 + 36846 + 21569 0 0 false - 75 + 110 false @@ -68,7 +68,7 @@ false false true - 3597204 + 3895819 false false false @@ -311,24 +311,24 @@ - + - + - + - + - + - + @@ -392,7 +392,7 @@ - + @@ -401,14 +401,17 @@ - + - + + + + @@ -437,45 +440,55 @@ - - - - - - - + + + + + + + + + - + + + + + + - + - + - + - + - + - + - + - + + + + - + - + @@ -755,7 +768,7 @@ - + iVBORw0KGgoAAAANSUhEUgAAATkAAABkCAYAAAD9hkdsAAAAAXNSR0IArs4c6QAAAAZiS0dE AP8A/wD/oL2nkwAAAAlwSFlzAAAOuQAADrkBuAYXvwAAAAd0SU1FB9oMChUNCQOjP/4AADYV SURBVHja7V0HfBXF9r65N0B67yEhQIAkJEAggSQklNB7B0UELAhIFYIUReBhQewFEBREUBEQ @@ -1018,7 +1031,7 @@ Credits - 1081 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2015-09-17 14:55:28. + 1092 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2015-10-14 22:31:09. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1045,10 +1058,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolรกn McNamaraCommits: 18025Joined: 2000-10-10 + Caolรกn McNamaraCommits: 18279Joined: 2000-10-10 - Stephan BergmannCommits: 9942Joined: 2000-10-04 + Stephan BergmannCommits: 10179Joined: 2000-10-04 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1056,7 +1069,7 @@ - Tor LillqvistCommits: 7035Joined: 2010-03-23 + Tor LillqvistCommits: 7074Joined: 2010-03-23 Kohei YoshidaCommits: 5360Joined: 2009-06-19 @@ -1065,21 +1078,21 @@ Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - Michael StahlCommits: 4879Joined: 2008-06-16 + Michael StahlCommits: 4930Joined: 2008-06-16 - Miklos VajnaCommits: 4753Joined: 2010-07-29 + Miklos VajnaCommits: 4893Joined: 2010-07-29 - *Noel GrandinCommits: 4425Joined: 2011-12-12 + *Noel GrandinCommits: 4620Joined: 2011-12-12 - *Markus MohrhardCommits: 3857Joined: 2011-03-17 + *Markus MohrhardCommits: 3895Joined: 2011-03-17 - David TardonCommits: 3085Joined: 2009-11-12 + David TardonCommits: 3095Joined: 2009-11-12 @@ -1087,7 +1100,7 @@ Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 - Eike RathkeCommits: 2872Joined: 2000-10-11 + Eike RathkeCommits: 2902Joined: 2000-10-11 Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 @@ -1098,16 +1111,16 @@ - Oliver SpechtCommits: 2458Joined: 2000-09-21 + Oliver SpechtCommits: 2478Joined: 2000-09-21 - Jan HolesovskyCommits: 2188Joined: 2009-06-23 + Jan HolesovskyCommits: 2199Joined: 2009-06-23 *Thomas ArnholdCommits: 2176Joined: 2011-01-16 - *Norbert ThiebaudCommits: 2121Joined: 2010-09-29 + *Norbert ThiebaudCommits: 2122Joined: 2010-09-29 @@ -1115,21 +1128,21 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - Bjoern MichaelsenCommits: 1931Joined: 2009-10-14 + Bjoern MichaelsenCommits: 1942Joined: 2009-10-14 Christian LippkaCommits: 1805Joined: 2000-09-25 - *Julien NabetCommits: 1775Joined: 2010-11-04 + *Julien NabetCommits: 1801Joined: 2010-11-04 - *Matรบลก KukanCommits: 1636Joined: 2011-04-06 + *Matรบลก KukanCommits: 1637Joined: 2011-04-06 - *Andras TimarCommits: 1626Joined: 2010-10-02 + *Andras TimarCommits: 1636Joined: 2010-10-02 Luboลก LuลˆรกkCommits: 1521Joined: 2010-09-21 @@ -1140,7 +1153,7 @@ - *Tomaลพ VajngerlCommits: 1359Joined: 2012-06-02 + *Tomaลพ VajngerlCommits: 1377Joined: 2012-06-02 Fridrich ล trbaCommits: 1324Joined: 2007-02-22 @@ -1160,7 +1173,7 @@ Armin Le GrandCommits: 1187Joined: 2000-09-25 - Thorsten BehrensCommits: 1131Joined: 2001-04-25 + Thorsten BehrensCommits: 1132Joined: 2001-04-25 *Matteo CasalinCommits: 1050Joined: 2011-11-13 @@ -1168,7 +1181,7 @@ - *Takeshi AbeCommits: 966Joined: 2010-11-08 + *Takeshi AbeCommits: 979Joined: 2010-11-08 Petr MladekCommits: 958Joined: 2006-10-03 @@ -1177,7 +1190,7 @@ Noel PowerCommits: 950Joined: 2002-09-24 - *Lionel Elie MamaneCommits: 942Joined: 2011-01-15 + *Lionel Elie MamaneCommits: 945Joined: 2011-01-15 @@ -1230,10 +1243,10 @@ *Andrzej HuntCommits: 697Joined: 2012-03-27 - Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 + *Michael MeeksCommits: 679Joined: 2013-09-10 - *Michael MeeksCommits: 671Joined: 2013-09-10 + Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 @@ -1269,7 +1282,7 @@ *Peter FoleyCommits: 442Joined: 2011-09-04 - Rene EngelhardCommits: 392Joined: 2005-03-14 + Rene EngelhardCommits: 394Joined: 2005-03-14 Dirk VoelzkeCommits: 392Joined: 2000-11-27 @@ -1286,10 +1299,10 @@ Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Olivier HallotCommits: 322Joined: 2010-10-25 + Christian LohmaierCommits: 337Joined: 2008-06-01 - Christian LohmaierCommits: 313Joined: 2008-06-01 + *Olivier HallotCommits: 323Joined: 2010-10-25 @@ -1308,7 +1321,7 @@ - *Katarina BehrensCommits: 279Joined: 2010-10-13 + *Katarina BehrensCommits: 283Joined: 2010-10-13 *Siqi LiuCommits: 277Joined: 2013-04-13 @@ -1317,15 +1330,15 @@ *Pierre-Andrรฉ JacquodCommits: 276Joined: 2010-11-13 - *David OstrovskyCommits: 262Joined: 2012-04-01 + *Yousuf PhilipsCommits: 266Joined: 2014-09-21 - Lars LanghansCommits: 260Joined: 2000-09-22 + *David OstrovskyCommits: 262Joined: 2012-04-01 - *Yousuf PhilipsCommits: 249Joined: 2014-09-21 + Lars LanghansCommits: 260Joined: 2000-09-22 Muthu SubramanianCommits: 248Joined: 2010-08-25 @@ -1339,13 +1352,13 @@ *Khaled HosnyCommits: 232Joined: 2011-01-28 - *Maxim MonastirskyCommits: 226Joined: 2013-10-27 + *Maxim MonastirskyCommits: 232Joined: 2013-10-27 - *Szymon Kล‚osCommits: 224Joined: 2014-03-22 + *Szymon Kล‚osCommits: 231Joined: 2014-03-22 - *Lรกszlรณ NรฉmethCommits: 217Joined: 2010-09-29 + *Lรกszlรณ NรฉmethCommits: 220Joined: 2010-09-29 @@ -1373,7 +1386,7 @@ *Nigel HawkinsCommits: 160Joined: 2010-10-28 - *Adolfo Jayme BarrientosCommits: 153Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 157Joined: 2013-06-21 @@ -1412,10 +1425,10 @@ Takashi OnoCommits: 122Joined: 2009-12-10 - *Sebastian SpaethCommits: 119Joined: 2010-09-28 + *Arnaud VersiniCommits: 120Joined: 2010-10-05 - *Arnaud VersiniCommits: 119Joined: 2010-10-05 + *Sebastian SpaethCommits: 119Joined: 2010-09-28 @@ -1423,87 +1436,90 @@ *Alexander WilmsCommits: 118Joined: 2013-12-22 - Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 + *Andrea GelminiCommits: 117Joined: 2014-10-30 - *Samuel MehrbrodtCommits: 114Joined: 2011-06-08 + Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 - *Tomรกลก ChvรกtalCommits: 114Joined: 2011-07-27 + *Samuel MehrbrodtCommits: 114Joined: 2011-06-08 - *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + *Tomรกลก ChvรกtalCommits: 114Joined: 2011-07-27 - *Louis-Francis Rattรฉ-BoulianneCommits: 102Joined: 2014-10-29 + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - *Jan-Marek GlogowskiCommits: 99Joined: 2013-11-14 + *Jan-Marek GlogowskiCommits: 105Joined: 2013-11-14 - *Thomas KlausnerCommits: 98Joined: 2010-10-01 + *Louis-Francis Rattรฉ-BoulianneCommits: 102Joined: 2014-10-29 - *Stefan KnorrCommits: 91Joined: 2011-07-04 + *Thomas KlausnerCommits: 98Joined: 2010-10-01 - *Laurent GodardCommits: 91Joined: 2011-05-06 + *Laurent GodardCommits: 92Joined: 2011-05-06 - *Krisztian PinterCommits: 90Joined: 2013-02-18 + *Stefan KnorrCommits: 91Joined: 2011-07-04 - *Daniel BankstonCommits: 88Joined: 2012-04-03 + *Krisztian PinterCommits: 90Joined: 2013-02-18 - *Tim RetoutCommits: 88Joined: 2012-02-14 + *Laurent Balland-PoirierCommits: 90Joined: 2011-08-31 - *Adam CoCommits: 86Joined: 2013-04-28 + *andreas kainzCommits: 88Joined: 2015-03-18 - *Stanislav HoracekCommits: 85Joined: 2012-12-09 + *Daniel BankstonCommits: 88Joined: 2012-04-03 - Mihaela KedikovaCommits: 85Joined: 2009-10-30 + *Tim RetoutCommits: 88Joined: 2012-02-14 - *Laurent Balland-PoirierCommits: 84Joined: 2011-08-31 + *Adam CoCommits: 86Joined: 2013-04-28 - *Javier FernandezCommits: 84Joined: 2013-03-06 + *Stanislav HoracekCommits: 85Joined: 2012-12-09 - Tobias KrauseCommits: 83Joined: 2007-10-02 + Mihaela KedikovaCommits: 85Joined: 2009-10-30 - *Minh NgoCommits: 83Joined: 2013-05-02 + *Javier FernandezCommits: 84Joined: 2013-03-06 - *Andreas KainzCommits: 82Joined: 2015-03-18 + *Albert ThuswaldnerCommits: 83Joined: 2011-01-26 - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 + Tobias KrauseCommits: 83Joined: 2007-10-02 - *Albert ThuswaldnerCommits: 76Joined: 2011-01-26 + *Minh NgoCommits: 83Joined: 2013-05-02 - *Douglas MenckenCommits: 76Joined: 2013-12-11 + *Douglas MenckenCommits: 82Joined: 2013-12-11 + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 + + *Tobias MadlCommits: 74Joined: 2014-09-15 @@ -1512,11 +1528,11 @@ *Gergo MocsiCommits: 72Joined: 2013-02-14 + + *weigaoCommits: 72Joined: 2014-05-07 - - Thorsten BosbachCommits: 70Joined: 2008-06-18 @@ -1524,29 +1540,29 @@ Bartosz KosiorekCommits: 70Joined: 2010-09-17 - *Antonio FernandezCommits: 68Joined: 2012-07-18 - - - *Kevin HunterCommits: 67Joined: 2010-10-22 + *Winfried DonkersCommits: 69Joined: 2013-08-06 - *Michaรซl LefรจvreCommits: 67Joined: 2011-02-22 + *Michaรซl LefรจvreCommits: 68Joined: 2011-02-22 - *Jelle van der WaaCommits: 66Joined: 2013-06-16 + *Antonio FernandezCommits: 68Joined: 2012-07-18 - *Winfried DonkersCommits: 66Joined: 2013-08-06 + *Kevin HunterCommits: 67Joined: 2010-10-22 - *Michael WeghornCommits: 61Joined: 2014-09-10 + *Jelle van der WaaCommits: 66Joined: 2013-06-16 - *Riccardo MagliocchettiCommits: 61Joined: 2012-01-25 + *Riccardo MagliocchettiCommits: 64Joined: 2012-01-25 + + + *Michael WeghornCommits: 61Joined: 2014-09-10 Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 @@ -1554,11 +1570,11 @@ Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 + + *Marco CecchettiCommits: 59Joined: 2011-04-14 - - Marc Neumann [msc]Commits: 59Joined: 2008-06-20 @@ -1568,28 +1584,36 @@ *Joren De CuyperCommits: 58Joined: 2013-01-07 + + + + *Simon SteinbeissCommits: 57Joined: 2015-06-01 + *Pierre-Eric Pelloux-PrayerCommits: 57Joined: 2012-06-20 - - *yiming juCommits: 57Joined: 2013-11-01 - *Joren De CuyperCommits: 56Joined: 2014-02-06 + *Pranav KantCommits: 57Joined: 2015-06-02 + + + + + *matteocamCommits: 56Joined: 2014-02-25 - *Pranav KantCommits: 55Joined: 2015-06-02 + *Joren De CuyperCommits: 56Joined: 2014-02-06 Nikolai PretzellCommits: 54Joined: 2001-03-09 - - *Mihรกly PalenikCommits: 54Joined: 2013-07-11 + + *yangzhangCommits: 54Joined: 2013-11-04 @@ -1599,11 +1623,11 @@ *Martin KepplingerCommits: 53Joined: 2011-02-18 - - *Rob SneldersCommits: 53Joined: 2011-02-08 + + *Matthias FreundCommits: 52Joined: 2013-02-08 @@ -1613,11 +1637,11 @@ *Will ThompsonCommits: 51Joined: 2012-03-21 - - *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 + + *Rachit GuptaCommits: 51Joined: 2014-01-18 @@ -1625,97 +1649,97 @@ *Cao Cuong NgoCommits: 51Joined: 2013-03-04 - *Andrea GelminiCommits: 50Joined: 2014-10-30 - - - - *Ptyl DragonCommits: 50Joined: 2013-05-09 *Urs FรคsslerCommits: 48Joined: 2013-02-14 + + *Marcel MetzCommits: 48Joined: 2011-12-05 *mingli juCommits: 48Joined: 2013-11-05 - - *J. Graeme LingardCommits: 47Joined: 2010-09-29 *Alexandre VicenziCommits: 46Joined: 2014-01-15 + + *hongyu zhongCommits: 46Joined: 2013-11-04 *Lior KaplanCommits: 46Joined: 2010-10-05 + + *Matthias FreundCommits: 46Joined: 2014-09-08 + + + *Martin HoskenCommits: 45Joined: 2011-02-25 + - *Eilidh McAdamCommits: 44Joined: 2011-03-10 + *RosemaryCommits: 44Joined: 2015-06-23 - Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 + *Eilidh McAdamCommits: 44Joined: 2011-03-10 - *Martin HoskenCommits: 43Joined: 2011-02-25 + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - *Luc CastermansCommits: 42Joined: 2011-11-13 + *Niklas JohanssonCommits: 44Joined: 2011-11-07 - *Peter JentschCommits: 42Joined: 2011-01-07 + *Luc CastermansCommits: 43Joined: 2011-11-13 - *Mark WielaardCommits: 42Joined: 2013-05-13 + *Peter JentschCommits: 42Joined: 2011-01-07 - *matteocamCommits: 42Joined: 2014-02-25 + *Mark WielaardCommits: 42Joined: 2013-05-13 - *Matthias FreundCommits: 42Joined: 2014-09-08 + *Henry CastroCommits: 42Joined: 2015-01-09 - *Henry CastroCommits: 42Joined: 2015-01-09 - - - *Niklas JohanssonCommits: 42Joined: 2011-11-07 - - *Sรฉbastien Le RayCommits: 41Joined: 2011-02-10 *Christian M. HellerCommits: 41Joined: 2013-02-24 - - *Francisco SaitoCommits: 40Joined: 2011-03-21 *Kayo HamidCommits: 39Joined: 2010-10-09 + + *minwangCommits: 39Joined: 2013-11-04 + *Daniel RobertsonCommits: 38Joined: 2015-06-27 + + *Valentin KettnerCommits: 38Joined: 2014-03-17 - - *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 + + *Iain BillettCommits: 37Joined: 2012-04-11 @@ -1723,6 +1747,9 @@ *Tsutomu UchinoCommits: 37Joined: 2014-01-08 + *Mihai VargaCommits: 37Joined: 2014-02-27 + + *Jennifer LiebelCommits: 37Joined: 2014-08-29 @@ -1737,12 +1764,12 @@ *Csikรณs TamรกsCommits: 36Joined: 2013-07-01 - *Guillaume PousselCommits: 36Joined: 2010-12-22 + *Jean-Pierre LedureCommits: 36Joined: 2013-10-12 - *RosemaryCommits: 36Joined: 2015-06-23 + *Guillaume PousselCommits: 36Joined: 2010-12-22 *Christophe JAILLETCommits: 36Joined: 2012-06-14 @@ -1762,16 +1789,13 @@ *Laurent CharriรจreCommits: 35Joined: 2010-10-14 - *Jean-Pierre LedureCommits: 35Joined: 2013-10-12 - - *Philippe JungCommits: 35Joined: 2015-05-01 - - *Priyanka GaikwadCommits: 35Joined: 2013-11-12 + + *dechuangCommits: 35Joined: 2013-11-04 @@ -1779,6 +1803,9 @@ *Marc-Andrรฉ LaverdiรจreCommits: 34Joined: 2011-06-21 + *ลukasz HryniukCommits: 34Joined: 2015-01-02 + + *Steve YinCommits: 34Joined: 2013-11-14 @@ -1807,7 +1834,7 @@ *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 - *Mihai VargaCommits: 32Joined: 2014-02-27 + *Samuel MehrbrodtCommits: 32Joined: 2015-09-15 @@ -1849,15 +1876,15 @@ *Harri PitkรคnenCommits: 29Joined: 2010-10-04 - *Sushil ShindeCommits: 28Joined: 2013-10-21 + *Justin LuthCommits: 29Joined: 2014-09-30 - *Szabolcs DezsiCommits: 28Joined: 2012-02-16 + *Sushil ShindeCommits: 28Joined: 2013-10-21 - *Daniel RobertsonCommits: 28Joined: 2015-06-27 + *Szabolcs DezsiCommits: 28Joined: 2012-02-16 *Aurimas FiลกerasCommits: 28Joined: 2010-10-11 @@ -1882,23 +1909,34 @@ + Giuseppe CastagnoCommits: 26Joined: 2007-12-09 + + *Regina HenschelCommits: 26Joined: 2010-11-04 *Maxime de RoucyCommits: 26Joined: 2012-03-08 + *Marco CecchettiCommits: 25Joined: 2014-12-24 + + + + *Joel MaderoCommits: 25Joined: 2012-06-15 *Juergen FunkCommits: 25Joined: 2014-09-17 - - *Prashant PandeyCommits: 25Joined: 2013-02-20 + *Mark HungCommits: 25Joined: 2014-11-04 + + + + *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 @@ -1907,50 +1945,42 @@ *VortCommits: 24Joined: 2014-01-21 + + *Ashod NakashianCommits: 24Joined: 2015-01-07 + *Daniel SikelerCommits: 24Joined: 2014-08-28 - *Mark HungCommits: 24Joined: 2014-11-04 - - - *Marco CecchettiCommits: 23Joined: 2014-12-24 - - *Felix ZhangCommits: 23Joined: 2011-10-19 - - *Julien ChaffraixCommits: 23Joined: 2011-04-12 *Josรฉ Guilherme VanzCommits: 23Joined: 2012-09-26 + + *Jack LeighCommits: 23Joined: 2012-10-03 *Luke DellerCommits: 23Joined: 2012-11-26 - - - - *Ashod NakashianCommits: 23Joined: 2015-01-07 - *Lucas BaudinCommits: 23Joined: 2011-01-25 *Sรถren MรถllerCommits: 23Joined: 2011-01-03 + + *Robert RothCommits: 23Joined: 2010-10-31 - - *Christian DywanCommits: 23Joined: 2011-04-14 @@ -1960,29 +1990,23 @@ *Jian Fang ZhangCommits: 22Joined: 2012-06-18 - - *Jacek WolszczakCommits: 22Joined: 2010-10-07 - - *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 + *Jacek WolszczakCommits: 22Joined: 2010-10-07 - Giuseppe CastagnoCommits: 22Joined: 2007-12-09 + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 *Frรฉdรฉric WangCommits: 22Joined: 2013-06-22 - *Justin LuthCommits: 22Joined: 2014-09-30 + *Laurent AlonsoCommits: 22Joined: 2011-10-23 - *Laurent AlonsoCommits: 22Joined: 2011-10-23 - - *Jรบlio HoffimannCommits: 22Joined: 2010-10-18 @@ -1991,11 +2015,11 @@ *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - - *Tushar BendeCommits: 20Joined: 2013-09-27 + + *Rishabh KumarCommits: 20Joined: 2015-02-13 @@ -2005,15 +2029,18 @@ *Andy HolderCommits: 20Joined: 2010-12-06 - - Eric BachardCommits: 20Joined: 2005-10-19 + + *Petr VorelCommits: 20Joined: 2012-02-17 + *Peter FoleyCommits: 20Joined: 2014-09-08 + + *Peilin XiaoCommits: 19Joined: 2013-12-09 @@ -2050,10 +2077,10 @@ - Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 + *Pedro GiffuniCommits: 18Joined: 2011-10-28 - *Peter FoleyCommits: 18Joined: 2014-09-08 + Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 *Boris DuลกekCommits: 18Joined: 2013-07-21 @@ -2067,19 +2094,16 @@ *Jian Hong ChengCommits: 17Joined: 2012-06-26 - *Pedro GiffuniCommits: 17Joined: 2011-10-28 - - *Bรกlint DรณzsaCommits: 17Joined: 2011-02-10 *Umesh KadamCommits: 17Joined: 2014-01-10 - - *navin patidarCommits: 17Joined: 2013-01-06 + + *Niko RรถnkkรถCommits: 16Joined: 2010-10-31 @@ -2089,82 +2113,82 @@ *tsahi glikCommits: 16Joined: 2013-06-04 - - *Anders JonssonCommits: 16Joined: 2010-12-11 + + *Mike KaganskiCommits: 16Joined: 2015-04-26 - *ลukasz HryniukCommits: 16Joined: 2015-01-02 - - *Vasily MelenchukCommits: 16Joined: 2015-01-27 - - *Jordan AyersCommits: 16Joined: 2010-11-04 *Chris LaplanteCommits: 16Joined: 2014-04-07 + + Florian ReuterCommits: 16Joined: 2010-09-14 *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 *Luke SymesCommits: 15Joined: 2010-10-01 - - *Catalin IacobCommits: 15Joined: 2012-02-10 *Heena GuptaCommits: 15Joined: 2014-06-17 + + *Yifan JCommits: 15Joined: 2010-12-16 *Joachim TremourouxCommits: 15Joined: 2010-11-19 - - *Arnaud VersiniCommits: 15Joined: 2013-08-10 Octavio AlvarezCommits: 15Joined: 2010-09-13 + + *Alexander BergmannCommits: 15Joined: 2012-01-13 *Povilas KanapickasCommits: 15Joined: 2010-10-18 - - *Cosimo CecchiCommits: 15Joined: 2011-11-02 + *Cor NouwsCommits: 14Joined: 2011-11-19 + + + + *Zhe WangCommits: 14Joined: 2012-06-20 @@ -2173,11 +2197,11 @@ *Juan PiccaCommits: 14Joined: 2014-07-23 - - *Richard PALOCommits: 14Joined: 2014-11-09 + + *Tim HardeckCommits: 14Joined: 2011-11-03 @@ -2187,11 +2211,11 @@ *Sven WehnerCommits: 13Joined: 2014-01-16 - - *gerhard oettlCommits: 13Joined: 2012-08-27 + + *Prashant ShahCommits: 13Joined: 2010-10-10 @@ -2201,11 +2225,11 @@ *Mathias HasselmannCommits: 13Joined: 2013-01-14 - - *Bjรถrgvin RagnarssonCommits: 13Joined: 2012-02-13 + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 @@ -2215,11 +2239,11 @@ *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 + + *Gรกbor StefanikCommits: 12Joined: 2012-04-07 @@ -2229,11 +2253,11 @@ *Wei WeiCommits: 12Joined: 2013-11-16 - - *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 + + *Olivier RCommits: 12Joined: 2011-08-01 @@ -2243,66 +2267,69 @@ *Jung-uk KimCommits: 11Joined: 2012-08-13 - - - - *Cor NouwsCommits: 11Joined: 2011-11-19 - *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 + + *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - - *David BolenCommits: 11Joined: 2012-03-07 *Peter RabiCommits: 11Joined: 2011-07-14 + + Frank PetersCommits: 11Joined: 2010-05-20 *Andre FischeCommits: 11Joined: 2011-02-10 - - *Michael JaumannCommits: 11Joined: 2014-09-02 *Tomas HlavatyCommits: 11Joined: 2011-12-06 + + *Charu TyagiCommits: 11Joined: 2014-06-25 *Renรฉ KjellerupCommits: 11Joined: 2010-10-14 - - *Jianyuan LiCommits: 10Joined: 2012-08-16 *Kristian RietveldCommits: 10Joined: 2011-10-15 + + *Mirek MazelCommits: 10Joined: 2012-06-05 *Theo van KlaverenCommits: 10Joined: 2011-03-10 + + *Luke PetrolekasCommits: 10Joined: 2011-02-12 + + + *Bryan QuigleyCommits: 10Joined: 2013-11-10 + - *Luke PetrolekasCommits: 10Joined: 2011-02-12 + *tageziCommits: 10Joined: 2015-09-16 *Timo HeinoCommits: 10Joined: 2010-11-22 @@ -2333,118 +2360,129 @@ *Benjamin NiCommits: 8Joined: 2015-04-02 + *Dennis RoczekCommits: 8Joined: 2015-06-09 + + + *Sean DavisCommits: 8Joined: 2015-06-01 + + *Norah A. AbanumayCommits: 8Joined: 2012-07-30 + + *รdรกm Csaba KirรกlyCommits: 8Joined: 2013-02-28 *Michael CallahanCommits: 8Joined: 2010-12-06 - - *Troy RolloCommits: 8Joined: 2011-07-11 *Michael DunphyCommits: 8Joined: 2013-04-18 + + *Robert DargaudCommits: 8Joined: 2011-04-12 *Ursache VladimirCommits: 8Joined: 2015-02-10 - - *Tomcsik BenceCommits: 8Joined: 2012-01-14 *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 + + Fong LinCommits: 8Joined: 2010-09-14 *RajashriCommits: 8Joined: 2013-12-06 - - *SouravCommits: 8Joined: 2014-03-15 *Stefan WeibergCommits: 8Joined: 2014-08-28 + + *HeiherCommits: 8Joined: 2015-07-07 *Timothy PearsonCommits: 8Joined: 2012-08-18 - - *Daisuke NishinoCommits: 8Joined: 2011-11-06 *karthCommits: 8Joined: 2013-01-07 + + *Nathan YeeCommits: 8Joined: 2015-01-01 *IanCommits: 8Joined: 2015-08-06 - - *Jonathan AdamsCommits: 8Joined: 2012-03-16 Jody GoldbergCommits: 8Joined: 2010-09-15 + + *Jenei GรกborCommits: 8Joined: 2011-07-29 *Martin SrebotnjakCommits: 7Joined: 2010-12-19 - - *Pranav KantCommits: 7Joined: 2015-03-01 *David DelmaCommits: 7Joined: 2014-05-13 + + *Roi IllouzCommits: 7Joined: 2013-10-20 *Thies PierdolaCommits: 7Joined: 2011-01-28 - - *Phillip SzCommits: 7Joined: 2015-03-16 *Mathias MichelCommits: 7Joined: 2012-11-19 + + *Sergey DavidoffCommits: 7Joined: 2011-04-11 *Terrence EngerCommits: 7Joined: 2011-10-27 - - *SJacobiCommits: 7Joined: 2013-03-05 + *Dennis FrancisCommits: 7Joined: 2015-04-15 + + + + *Christopher CopitsCommits: 7Joined: 2012-09-19 @@ -2453,11 +2491,11 @@ *Keith CurtisCommits: 7Joined: 2013-12-20 - - *Issa AlkurtassCommits: 7Joined: 2012-09-04 + + *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 @@ -2467,11 +2505,11 @@ *Wang LeiCommits: 7Joined: 2012-06-14 - - *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + *Eric SeynaeveCommits: 7Joined: 2013-02-04 @@ -2479,24 +2517,16 @@ *Samuel CantrellCommits: 7Joined: 2011-06-11 - *Oliver SpechtCommits: 7Joined: 2015-09-03 - - - - *Stefan RingCommits: 7Joined: 2014-01-09 *Brennan VincentCommits: 7Joined: 2012-04-02 - - *Dennis RoczekCommits: 6Joined: 2015-06-09 - + + *Xavier ALTCommits: 6Joined: 2011-03-06 - - *RaalCommits: 6Joined: 2014-12-31 @@ -2506,11 +2536,11 @@ *Michel RenonCommits: 6Joined: 2015-05-19 + + *Phil BordelonCommits: 6Joined: 2010-09-30 - - *Anurag JainCommits: 6Joined: 2011-04-05 @@ -2520,28 +2550,36 @@ *David VerrierCommits: 6Joined: 2013-02-26 + + + + *Damjan JovanovicCommits: 6Joined: 2015-08-26 + *tianyaoCommits: 6Joined: 2013-11-09 - - *Anurag KanungoCommits: 6Joined: 2013-04-19 *Jeroen NijhofCommits: 6Joined: 2014-05-01 + + + + *Sean YoungCommits: 6Joined: 2013-05-16 + *Ricardo MorenoCommits: 6Joined: 2010-11-03 *Christoph LutzCommits: 6Joined: 2013-11-05 - - *Sven WehnerCommits: 6Joined: 2014-01-11 + + *Daniel Di MarcoCommits: 6Joined: 2010-11-15 @@ -2549,56 +2587,56 @@ *shiraharaCommits: 6Joined: 2011-01-28 - *Bryan QuigleyCommits: 6Joined: 2013-11-10 - - - - *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 *Werner KoernerCommits: 5Joined: 2012-12-11 + + *Antoine ProulxCommits: 5Joined: 2011-01-30 *Timothy MarkleCommits: 5Joined: 2014-01-31 - - *ericb2Commits: 5Joined: 2011-10-30 *Ciorba EdmondCommits: 5Joined: 2013-06-11 + + *Wei Ming KhooCommits: 5Joined: 2012-02-17 *Jan KantertCommits: 5Joined: 2014-06-12 - - *Matthias HofmannCommits: 5Joined: 2013-03-08 *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 + + *Miguel GomezCommits: 5Joined: 2013-04-02 *pje335_NLCommits: 5Joined: 2013-05-10 - - *Pavel JanรญkCommits: 5Joined: 2012-11-29 + *Nicolas ChristenerCommits: 5Joined: 2013-08-04 + + + + *MรTร‰ GergelyCommits: 5Joined: 2013-07-19 @@ -2607,6 +2645,9 @@ *Giuseppe BilottaCommits: 5Joined: 2014-09-09 + + *Pasi LallinahoCommits: 5Joined: 2015-06-02 + @@ -2703,18 +2744,18 @@ *Sameer DeshmukhCommits: 4Joined: 2013-04-20 - *XiaoliCommits: 4Joined: 2013-03-23 + *Kay SchenkCommits: 4Joined: 2014-09-19 - *Mariana MarasoiuCommits: 4Joined: 2012-03-14 + *XiaoliCommits: 4Joined: 2013-03-23 - *Nicholas ShanksCommits: 4Joined: 2012-09-04 + *Mariana MarasoiuCommits: 4Joined: 2012-03-14 - *Damjan JovanovicCommits: 4Joined: 2015-08-26 + *Nicholas ShanksCommits: 4Joined: 2012-09-04 *Jeffrey StedfastCommits: 4Joined: 2014-07-26 @@ -2725,19 +2766,16 @@ *An LeendersCommits: 4Joined: 2011-01-25 - *Dennis FrancisCommits: 4Joined: 2015-04-15 - - *Josรฉ Guilherme VanzCommits: 4Joined: 2013-10-20 *Florian BircherCommits: 4Joined: 2010-10-16 - - *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 + + *tinoCommits: 4Joined: 2012-12-03 @@ -2747,11 +2785,11 @@ *Jean-Tiare LE BIGOTCommits: 4Joined: 2012-08-08 - - *V Stuart FooteCommits: 4Joined: 2014-12-04 + + *Ryan McCoskrieCommits: 4Joined: 2014-09-14 @@ -2761,11 +2799,11 @@ *Yong Lin MaCommits: 4Joined: 2012-06-07 - - *Fridrich StrbaCommits: 4Joined: 2013-03-08 + + *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 @@ -2775,11 +2813,11 @@ *Florian ReisingerCommits: 4Joined: 2012-06-22 - - *Zheng FanCommits: 4Joined: 2013-04-22 + + *Raimundo MouraCommits: 4Joined: 2012-06-16 @@ -2789,54 +2827,54 @@ *Samphan RaruenromCommits: 4Joined: 2011-03-24 - - - - *tageziCommits: 4Joined: 2015-09-16 - *Alan DuCommits: 3Joined: 2010-10-12 + + *Stefan SchickCommits: 3Joined: 2013-02-18 *Petr KrausCommits: 3Joined: 2013-03-26 - - *Gioele BarabucciCommits: 3Joined: 2010-11-18 *Simon LongCommits: 3Joined: 2015-07-08 + + *Cameron PaulCommits: 3Joined: 2012-02-27 *Markus MaierCommits: 3Joined: 2012-11-25 - - *Gabriele BulfonCommits: 3Joined: 2013-07-05 *Michael KochCommits: 3Joined: 2011-01-21 + + *Jonathan AquilinaCommits: 3Joined: 2011-01-18 *Pierre-Eric Pelloux-PrayerCommits: 3Joined: 2015-02-08 - - *vjinochCommits: 3Joined: 2013-04-09 + *Stefan HeinemannCommits: 3Joined: 2012-02-16 + + + + *Sushil ShindeCommits: 3Joined: 2014-09-21 @@ -2845,15 +2883,18 @@ *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 - - *Matthew NichollsCommits: 3Joined: 2015-04-01 + + *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 + *n.r.pearsonCommits: 3Joined: 2015-09-09 + + *Dรกvid VastagCommits: 3Joined: 2013-02-04 @@ -2876,9 +2917,6 @@ - *Kay SchenkCommits: 3Joined: 2014-09-19 - - *David NalleyCommits: 3Joined: 2011-03-03 @@ -2887,11 +2925,11 @@ *Tantai TanakanokCommits: 3Joined: 2011-02-09 - - *Luboลก LuลˆรกkCommits: 3Joined: 2014-03-18 + + *Sรฉrgio MarquesCommits: 3Joined: 2011-11-25 @@ -2901,11 +2939,11 @@ *Chris Carpenter(mordocai)Commits: 3Joined: 2011-02-02 - - *Alexander ThurgoodCommits: 3Joined: 2011-01-26 + + *Bertrand LorentzCommits: 3Joined: 2012-08-03 @@ -2915,11 +2953,11 @@ *Tobias MuellerCommits: 3Joined: 2014-02-10 - - *Haidong LianCommits: 3Joined: 2013-07-24 + + *Jacopo NespoloCommits: 3Joined: 2010-10-01 @@ -2929,11 +2967,11 @@ *Renato FerreiraCommits: 3Joined: 2014-11-15 - - *Cheng-Chia TsengCommits: 3Joined: 2012-01-16 + + *Pascal UllrichCommits: 3Joined: 2010-12-28 @@ -2943,11 +2981,11 @@ *Istvan TuriCommits: 3Joined: 2012-08-16 - - *Mihkel TรตnnovCommits: 3Joined: 2012-07-02 + + *Lucas SatabinCommits: 3Joined: 2015-08-25 @@ -2957,134 +2995,126 @@ *Mike EberdtCommits: 3Joined: 2011-07-12 - - *Joan MontaneCommits: 3Joined: 2013-02-22 - - *Sean YoungCommits: 3Joined: 2013-05-16 - + + *Benjamin DrungCommits: 3Joined: 2012-06-08 *Jason HulmeCommits: 3Joined: 2013-06-05 - - *Oliver GรผntherCommits: 3Joined: 2012-08-09 *Thorsten WagnerCommits: 3Joined: 2015-04-24 + + *Roland BaudinCommits: 3Joined: 2011-05-16 *Guto MaiaCommits: 3Joined: 2011-03-18 - - *Gabor KelemenCommits: 3Joined: 2013-06-18 *Nagy AkosCommits: 3Joined: 2013-06-27 + + *Anthony DurityCommits: 3Joined: 2011-04-18 *Xuacu SaturioCommits: 3Joined: 2010-12-19 - - *Jan DarmochwalCommits: 3Joined: 2011-01-27 *Jeremy BrownCommits: 3Joined: 2012-09-19 + + *Brij Mohan Lal SrivastavaCommits: 3Joined: 2014-11-12 *Sean McNamaraCommits: 2Joined: 2010-09-29 - - *Christoph NoackCommits: 2Joined: 2010-12-13 *Mohammad ElahiCommits: 2Joined: 2011-08-27 + + *Gary HoustonCommits: 2Joined: 2014-12-15 *UrmasCommits: 2Joined: 2012-02-13 - - - *Martyn RussellCommits: 2Joined: 2012-06-07 + *kriptonCommits: 2Joined: 2015-10-03 - *Andrew HigginsonCommits: 2Joined: 2012-04-10 + *Martyn RussellCommits: 2Joined: 2012-06-07 + + - *Stefan HeinemannCommits: 2Joined: 2012-02-16 + *Andrew HigginsonCommits: 2Joined: 2012-04-10 *Vinicius VendraminiCommits: 2Joined: 2014-10-22 - - *Andras BartekCommits: 2Joined: 2012-08-06 *Matthias KloseCommits: 2Joined: 2011-03-01 + + *Donizete WaterkemperCommits: 2Joined: 2013-05-23 *Yuri DarioCommits: 2Joined: 2012-07-18 - - *Kelly AndersonCommits: 2Joined: 2011-05-31 *Ri GangHuCommits: 2Joined: 2013-07-28 + + *Popa Adrian MariusCommits: 2Joined: 2015-03-26 *Akash ShetyeCommits: 2Joined: 2013-03-23 - - *Michal SvecCommits: 2Joined: 2011-07-12 *Adam MrรณzCommits: 2Joined: 2013-02-24 - - *n.r.pearsonCommits: 2Joined: 2015-09-09 - + + *Ed DeanCommits: 2Joined: 2011-01-14 - - *Mark WolfCommits: 2Joined: 2012-04-04 @@ -3094,11 +3124,11 @@ *Tobias KranzCommits: 2Joined: 2011-02-17 + + *Kishor BhatCommits: 2Joined: 2015-01-28 - - *Derrick RochaCommits: 2Joined: 2015-09-11 @@ -3108,11 +3138,11 @@ *Dwayne BaileyCommits: 2Joined: 2010-11-03 + + Loiseleur MichelCommits: 2Joined: 2010-09-14 - - *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 @@ -3122,11 +3152,11 @@ *Daniel StoneCommits: 2Joined: 2014-10-29 + + *Boris EgorovCommits: 2Joined: 2014-09-08 - - *Clarence GuoCommits: 2Joined: 2014-05-26 @@ -3136,11 +3166,11 @@ *Robinson TryonCommits: 2Joined: 2012-06-21 + + *Andreas SchierlCommits: 2Joined: 2012-01-30 - - *Viktor VargaCommits: 2Joined: 2013-08-28 @@ -3150,11 +3180,11 @@ *Clรฉment LassieurCommits: 2Joined: 2014-12-21 + + *Justin MalcolmCommits: 2Joined: 2010-09-29 - - *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 @@ -3164,11 +3194,11 @@ *Jonathan CallenCommits: 2Joined: 2011-01-29 + + *Mathieu ParentCommits: 2Joined: 2013-10-14 - - *Lubosz SarneckiCommits: 2Joined: 2015-08-20 @@ -3178,11 +3208,11 @@ *Sean McMurrayCommits: 2Joined: 2010-10-20 + + *Vicente VendrellCommits: 2Joined: 2012-04-23 - - *Seo SanghyeonCommits: 2Joined: 2010-09-29 @@ -3192,11 +3222,11 @@ *Ferran VidalCommits: 2Joined: 2012-04-21 + + *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 - - *Rimas KudelisCommits: 2Joined: 2015-01-06 @@ -3206,11 +3236,11 @@ *Derrick RochaCommits: 2Joined: 2015-08-26 + + *David SteeleCommits: 2Joined: 2012-04-24 - - *William GathoyeCommits: 2Joined: 2012-02-28 @@ -3220,11 +3250,11 @@ *Horacio FernandesCommits: 2Joined: 2012-07-20 + + *Austin ChenCommits: 2Joined: 2015-03-25 - - *Gregg KingCommits: 2Joined: 2013-02-26 @@ -3234,11 +3264,11 @@ *Benedikt MorbachCommits: 2Joined: 2013-03-10 + + *Mark WilliamsCommits: 2Joined: 2014-12-17 - - *Rolf HemmerlingCommits: 2Joined: 2013-06-15 @@ -3248,11 +3278,11 @@ *Bartolomรฉ Sรกnchez SaladoCommits: 2Joined: 2012-02-18 + + *Martin HollmichelCommits: 2Joined: 2015-06-29 - - *Flex LiuCommits: 2Joined: 2012-09-04 @@ -3262,11 +3292,11 @@ *Hussian AlamriCommits: 2Joined: 2014-05-14 + + *Christos StrubulisCommits: 2Joined: 2012-12-09 - - *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 @@ -3276,11 +3306,11 @@ *Neil MooreCommits: 2Joined: 2013-08-09 + + *Greggory HernandezCommits: 2Joined: 2012-02-22 - - *Jagan LokanathaCommits: 2Joined: 2013-11-19 @@ -3290,11 +3320,11 @@ *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 + + *Karsten GerloffCommits: 2Joined: 2011-02-06 - - *Sophie GautierCommits: 2Joined: 2010-12-19 @@ -3304,11 +3334,11 @@ *Maxim IorshCommits: 2Joined: 2011-10-05 + + *dbeurleCommits: 2Joined: 2015-01-12 - - *Carlos LuqueCommits: 2Joined: 2015-07-16 @@ -3318,11 +3348,11 @@ *Emanuele FiaCommits: 2Joined: 2011-11-02 + + *Janit AnjariaCommits: 2Joined: 2013-04-19 - - *Moritz KuettCommits: 2Joined: 2013-03-23 @@ -3332,11 +3362,11 @@ *Pader RezsoCommits: 2Joined: 2013-07-01 + + *Cyril RoelandtCommits: 2Joined: 2011-04-26 - - *Yury TarasievichCommits: 2Joined: 2011-11-23 @@ -3346,11 +3376,11 @@ *Takashi NakamotoCommits: 2Joined: 2011-08-28 + + *Daniel HerdeCommits: 2Joined: 2012-08-09 - - *Michael NattererCommits: 2Joined: 2011-04-08 @@ -3360,11 +3390,11 @@ *Gulsah KoseCommits: 2Joined: 2015-03-14 + + *Johann MessnerCommits: 2Joined: 2012-08-28 - - *Nadav VinikCommits: 2Joined: 2010-10-21 @@ -3374,11 +3404,11 @@ *Supreme AryalCommits: 2Joined: 2014-12-04 + + *Goran RakicCommits: 1Joined: 2013-03-30 - - *Ross BurtonCommits: 1Joined: 2012-04-18 @@ -3388,11 +3418,11 @@ *Philipp KaluzaCommits: 1Joined: 2012-10-21 + + *Milan CrhaCommits: 1Joined: 2013-02-07 - - *Rich WarehamCommits: 1Joined: 2012-01-12 @@ -3402,11 +3432,11 @@ *Raj NatarajanCommits: 1Joined: 2015-07-23 + + *Ruggero CyrilleCommits: 1Joined: 2014-10-18 - - *Pรกdraig BradyCommits: 1Joined: 2011-10-21 @@ -3416,11 +3446,11 @@ *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 + + *Kenneth BeckCommits: 1Joined: 2013-03-02 - - *Udo SchuermannCommits: 1Joined: 2012-04-16 @@ -3430,11 +3460,11 @@ *Jรถrg SonnenbergerCommits: 1Joined: 2014-08-28 + + *Mattias PรตldaruCommits: 1Joined: 2014-12-06 - - *Kevin HausmannCommits: 1Joined: 2012-08-17 @@ -3444,11 +3474,11 @@ *Jeff AignerCommits: 1Joined: 2011-06-09 + + *Michael DunphyCommits: 1Joined: 2015-03-22 - - *Ta Duc TungCommits: 1Joined: 2011-08-08 @@ -3458,11 +3488,11 @@ *Robin KumarCommits: 1Joined: 2014-06-17 + + *Neven ฤ†osiฤ‡Commits: 1Joined: 2012-10-08 - - *Lennart PoetteringCommits: 1Joined: 2014-10-09 @@ -3472,11 +3502,11 @@ *Benjamin OtteCommits: 1Joined: 2013-06-15 + + *Valter MuraCommits: 1Joined: 2015-06-07 - - *Nathan WellsCommits: 1Joined: 2015-09-03 @@ -3486,11 +3516,11 @@ *Naser SharifiCommits: 1Joined: 2012-11-26 + + *Shreyansh GandhiCommits: 1Joined: 2014-06-10 - - *Michael KovarikCommits: 1Joined: 2015-01-07 @@ -3500,11 +3530,11 @@ *Eric S. RaymondCommits: 1Joined: 2013-06-07 + + *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 - - *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 @@ -3514,11 +3544,11 @@ *pgajdosCommits: 1Joined: 2011-01-31 + + *Roman EiseleCommits: 1Joined: 2011-11-23 - - *Simon WilperCommits: 1Joined: 2015-01-24 @@ -3528,11 +3558,11 @@ *JesseCommits: 1Joined: 2011-12-14 + + *Javier CatalaCommits: 1Joined: 2012-04-26 - - *yjw9012Commits: 1Joined: 2013-12-30 @@ -3540,58 +3570,66 @@ *armijnCommits: 1Joined: 2010-12-30 + *keremCommits: 1Joined: 2015-10-12 + + + + *Ondล™ej SmrลพCommits: 1Joined: 2013-03-10 *Italo VignoliCommits: 1Joined: 2012-03-09 - - *massinissaHamidiCommits: 1Joined: 2015-05-07 *Andor ErtseyCommits: 1Joined: 2011-09-04 + + *ritztroCommits: 1Joined: 2015-04-11 *Jihui ChoiCommits: 1Joined: 2015-06-22 - - *Srijan ChoudharyCommits: 1Joined: 2013-08-10 *Marcel HBCommits: 1Joined: 2011-05-03 + + *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 *Stefan WeigelCommits: 1Joined: 2011-10-17 - - *Paula MannesCommits: 1Joined: 2012-11-30 *Trevor MurphyCommits: 1Joined: 2010-10-20 + + *mmeof2Commits: 1Joined: 2015-05-09 + *burekenCommits: 1Joined: 2015-10-01 + + *Marco BiscaroCommits: 1Joined: 2012-08-27 - - *Johannes WidmerCommits: 1Joined: 2013-03-23 + + *Ryo ONODERACommits: 1Joined: 2014-04-07 @@ -3601,11 +3639,11 @@ *Masataka ShinkeCommits: 1Joined: 2012-02-15 - - *Phil HartCommits: 1Joined: 2012-06-29 + + *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 @@ -3615,11 +3653,11 @@ *Michal SiedlaczekCommits: 1Joined: 2014-01-25 - - *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 + + *Victor LeeCommits: 1Joined: 2011-12-24 @@ -3629,11 +3667,11 @@ *Olivier PlotonCommits: 1Joined: 2012-12-12 - - *Joshua CogliatiCommits: 1Joined: 2012-01-06 + + *xjclCommits: 1Joined: 2014-08-04 @@ -3643,11 +3681,11 @@ *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 - - *Andrew RistCommits: 1Joined: 2012-10-05 + + *Travis CarterCommits: 1Joined: 2012-06-22 @@ -3657,11 +3695,11 @@ *Hiroto KagotaniCommits: 1Joined: 2014-08-19 - - *Alberto RuizCommits: 1Joined: 2011-03-31 + + *Petr GajdosCommits: 1Joined: 2015-04-07 @@ -3671,11 +3709,11 @@ *Milan ZelenkaCommits: 1Joined: 2014-03-26 - - *Mark WrightCommits: 1Joined: 2013-02-09 + + *Piet van OostrumCommits: 1Joined: 2015-03-12 @@ -3685,11 +3723,11 @@ *Juan Pablo Martรญnez CortรฉsCommits: 1Joined: 2011-11-28 - - *Vincent PovirkCommits: 1Joined: 2011-12-19 + + *Christopher BackhouseCommits: 1Joined: 2010-12-06 @@ -3699,11 +3737,11 @@ *Karl KoehlerCommits: 1Joined: 2011-11-11 - - *Alexandre FournierCommits: 1Joined: 2010-11-06 + + *Martin OwensCommits: 1Joined: 2014-07-27 @@ -3713,95 +3751,95 @@ *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 - - - - *Nicolas ChristenerCommits: 1Joined: 2013-08-04 - *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 + + *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 *Aditya KaleCommits: 1Joined: 2014-04-01 - - *Jonathan RiddellCommits: 1Joined: 2014-11-22 *James CCommits: 1Joined: 2011-12-20 + + *Tim RichardsonCommits: 1Joined: 2013-06-04 *Hannah LyhneCommits: 1Joined: 2014-04-01 - - *Florent GallaireCommits: 1Joined: 2012-04-21 *Milos SramekCommits: 1Joined: 2012-01-20 + + *Evertjan GarretsenCommits: 1Joined: 2010-10-04 *William LachanceCommits: 1Joined: 2011-06-08 - - *krishnan parthasarathiCommits: 1Joined: 2010-10-07 *ZirkCommits: 1Joined: 2015-01-07 + + *Kevin PengCommits: 1Joined: 2012-07-20 *Paolo PozzanCommits: 1Joined: 2010-12-19 - - *Rolf KoetterCommits: 1Joined: 2013-11-05 *Ward van WanrooijCommits: 1Joined: 2012-06-25 + + *Arkadiusz Miล›kiewiczCommits: 1Joined: 2014-10-09 *NeilBrownCommits: 1Joined: 2010-09-28 - - *Miguel FernรกndezCommits: 1Joined: 2012-04-26 *Gรกbor NyersCommits: 1Joined: 2013-03-02 + + *Jean-Franรงois Fortin TamCommits: 1Joined: 2013-06-10 + *iremsendurCommits: 1Joined: 2015-10-11 + + *Tadele AssefaCommits: 1Joined: 2013-01-15 - - *Martin LiลกkaCommits: 1Joined: 2014-03-26 + + *Jose ManuelCommits: 1Joined: 2012-04-25 @@ -3811,11 +3849,11 @@ *Vojta KoukalCommits: 1Joined: 2013-03-03 - - *Chris CheneyCommits: 1Joined: 2011-04-27 + + *Aleksandr AndreevCommits: 1Joined: 2015-04-20 @@ -3825,11 +3863,11 @@ *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 - - *ricardobottoCommits: 1Joined: 2013-05-18 + + *Cassio NeriCommits: 1Joined: 2011-05-01 @@ -3839,11 +3877,11 @@ *David PenzesCommits: 1Joined: 2011-06-14 - - *Jason GerlowskiCommits: 1Joined: 2014-03-07 + + *Manas JoshiCommits: 1Joined: 2014-03-17 @@ -3853,11 +3891,11 @@ *sagarCommits: 1Joined: 2012-09-15 - - *Karan DesaiCommits: 1Joined: 2012-04-01 + + *Steven MeyerCommits: 1Joined: 2013-03-13 @@ -3867,11 +3905,11 @@ *Dona HertelCommits: 1Joined: 2011-04-14 - - *Aldo Romรกn NureรฑaCommits: 1Joined: 2012-04-09 + + *Kalman KemenczyCommits: 1Joined: 2010-10-28 @@ -3881,11 +3919,11 @@ *Ankitkumar Rameshchandra PatelCommits: 1Joined: 2012-01-20 - - *Babu VincentCommits: 1Joined: 2014-09-19 + + *Heiko ScheidtCommits: 1Joined: 2014-08-03 @@ -3895,11 +3933,11 @@ *OKANO TakayoshiCommits: 1Joined: 2013-01-29 - - *Alex IvanCommits: 1Joined: 2013-04-15 + + *sonakshi nathaniCommits: 1Joined: 2013-06-26 @@ -3909,11 +3947,11 @@ *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 - - *Ayantha RandikaCommits: 1Joined: 2014-01-23 + + *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 @@ -3923,11 +3961,11 @@ *Joseph BrownCommits: 1Joined: 2012-08-14 - - *Dan CorneanuCommits: 1Joined: 2010-12-29 + + *Tim JanikCommits: 1Joined: 2012-08-10 @@ -3937,11 +3975,11 @@ *Pavel KacerCommits: 1Joined: 2013-04-11 - - *Fernando GovernatoreCommits: 1Joined: 2012-02-25 + + *Christophe StrobbeCommits: 1Joined: 2011-08-09 @@ -3951,11 +3989,11 @@ *Karthick Prasad GunasekaranCommits: 1Joined: 2015-03-22 - - *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 + + *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 @@ -3965,11 +4003,11 @@ *James Michael DuPontCommits: 1Joined: 2013-08-30 - - *Reem.ALotaibiCommits: 1Joined: 2013-07-25 + + *DaveCommits: 1Joined: 2012-08-23 @@ -3979,11 +4017,11 @@ *Daniel MihalyiCommits: 1Joined: 2012-02-06 - - *Quentin PradetCommits: 1Joined: 2012-12-21 + + *Adriร  Cereto MassaguรฉCommits: 1Joined: 2010-10-26 @@ -3991,6 +4029,9 @@ *Christopher HotchkissCommits: 1Joined: 2013-02-15 + *Slรกvek BankoCommits: 1Joined: 2015-10-10 + + *Ionut BiruCommits: 1Joined: 2012-05-14 @@ -4005,97 +4046,108 @@ *Louis PossozCommits: 1Joined: 2012-10-26 - *Rafael CabralCommits: 1Joined: 2011-03-31 + *Joan ParaisoCommits: 1Joined: 2015-09-25 - *Jiri BlechaCommits: 1Joined: 2013-03-02 + *Rafael CabralCommits: 1Joined: 2011-03-31 + + + *Jiri BlechaCommits: 1Joined: 2013-03-02 + + + *Aybuke OzdemirCommits: 1Joined: 2015-10-07 *Tomas HlavatyCommits: 1Joined: 2014-06-03 + + *Serg BormantCommits: 1Joined: 2011-11-28 *ACTomCommits: 1Joined: 2015-03-23 - - *Tim-Philipp MรผllerCommits: 1Joined: 2012-07-29 *Sujith SudhakaranCommits: 1Joined: 2015-04-07 + + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 *Freek de KruijfCommits: 1Joined: 2010-12-19 - - *Carsten NiehausCommits: 1Joined: 2012-02-09 *Tarun KumarCommits: 1Joined: 2014-03-07 + + *Jonathan SchultzCommits: 1Joined: 2013-05-22 *Nick SavageCommits: 1Joined: 2010-10-01 - - *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 *camilleCommits: 1Joined: 2010-12-13 + + *Denis LackovicCommits: 1Joined: 2010-10-05 *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 - - *Peter TillemansCommits: 1Joined: 2012-06-26 *Andrey TurkinCommits: 1Joined: 2011-02-09 + + *Tomas TurekCommits: 1Joined: 2013-03-24 *Stephan van den AkkerCommits: 1Joined: 2012-06-07 - - *Maxime CรดtรฉCommits: 1Joined: 2011-04-19 *AdrienCommits: 1Joined: 2013-08-18 + + *Peng GaoCommits: 1Joined: 2013-06-16 *robert BabiakCommits: 1Joined: 2015-03-25 - - + + *melikeyurtogluCommits: 1Joined: 2015-10-09 + *Rubรฉn JรกรฑezCommits: 1Joined: 2010-10-11 + + *Laureano G. LindeCommits: 1Joined: 2012-04-15 @@ -4105,11 +4157,11 @@ *Jaime NavarroCommits: 1Joined: 2012-04-20 - - *Maarten HoesCommits: 1Joined: 2014-12-20 + + *vincentCommits: 1Joined: 2013-03-22 @@ -4119,11 +4171,11 @@ *brinzingCommits: 1Joined: 2015-08-22 - - *Henning DiedlerCommits: 1Joined: 2013-11-02 + + *Jun NOGATACommits: 1Joined: 2015-01-07 @@ -4133,11 +4185,11 @@ *Jan BobisudCommits: 1Joined: 2013-04-29 - - *Ashish BanerjeeCommits: 1Joined: 2013-04-04 + + *Alaa.BukhariCommits: 1Joined: 2013-07-04 @@ -4147,11 +4199,11 @@ *Andrew WestCommits: 1Joined: 2011-10-21 - - *Antoine Cล“urCommits: 1Joined: 2015-06-11 + + *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 @@ -4161,11 +4213,11 @@ *Modestas RimkusCommits: 1Joined: 2011-11-21 - - *Brian FraserCommits: 1Joined: 2013-09-03 + + *Michael HornCommits: 1Joined: 2015-03-21 @@ -4175,11 +4227,11 @@ *Audrey TangCommits: 1Joined: 2014-08-05 - - *Krunoslav ล ebetiฤ‡Commits: 1Joined: 2013-07-18 + + *Victor PortellaCommits: 1Joined: 2014-11-05 @@ -4189,11 +4241,11 @@ *Juergen SteinhilberCommits: 1Joined: 2012-03-05 - - *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 + + *Jordi MallachCommits: 1Joined: 2012-05-03 @@ -4203,11 +4255,11 @@ *Martin RichardCommits: 1Joined: 2012-01-31 - - *Neil StalkerCommits: 1Joined: 2010-10-02 + + *Tomรกลก ChvรกtalCommits: 1Joined: 2015-09-15 @@ -4217,11 +4269,11 @@ *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 - - *Gordon LackCommits: 1Joined: 2012-05-09 + + *Sergey FukanchikCommits: 1Joined: 2015-09-17 @@ -4231,11 +4283,11 @@ *Honza MinarikCommits: 1Joined: 2013-04-03 - - *Moritz BechlerCommits: 1Joined: 2011-12-19 + + *Raymond WellsCommits: 1Joined: 2013-09-02 @@ -4245,11 +4297,11 @@ *Dave RichardsCommits: 1Joined: 2012-08-22 - - *Jan HubickaCommits: 1Joined: 2011-09-12 + + *Alex GulyรกsCommits: 1Joined: 2014-04-27 @@ -4259,11 +4311,11 @@ *Richard HughesCommits: 1Joined: 2013-10-01 - - *Nikita OfitserovCommits: 1Joined: 2011-01-10 + + *Linus BehrensCommits: 1Joined: 2015-04-23 @@ -4273,25 +4325,25 @@ *pavelCommits: 1Joined: 2010-12-10 - - *Nico WeyandCommits: 1Joined: 2012-09-02 + + *Kenneth AaflรธyCommits: 1Joined: 2012-01-11 - *Samuel MehrbrodtCommits: 1Joined: 2015-09-15 + *Feyza YavuzCommits: 1Joined: 2015-10-04 *scitoCommits: 1Joined: 2015-04-13 - - *Danny RobertsCommits: 1Joined: 2011-02-18 + + *LesterCommits: 1Joined: 2012-10-23 @@ -4301,11 +4353,11 @@ *Seyeong KimCommits: 1Joined: 2014-10-06 - - *Florian EffenbergerCommits: 1Joined: 2015-08-04 + + *Michal HorakCommits: 1Joined: 2014-04-21 @@ -4315,11 +4367,11 @@ *Yohei YukawaCommits: 1Joined: 2013-05-06 - - *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 + + *PhyzerCommits: 1Joined: 2014-09-13 @@ -4329,18 +4381,19 @@ *Dolives BenoitCommits: 1Joined: 2011-07-04 - - *Damien ChambeCommits: 1Joined: 2014-06-15 + + *galbarnissanCommits: 1Joined: 2014-12-03 - + + Contributors to bundled templates @@ -4949,17 +5002,17 @@ We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: - + - a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and - b) contributors to the OOo code base should also be credited for the excellent work they do. + b) contributors to the OOo code base should also be credited for the excellent work they do. Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. Total contributions to the TDF Wiki - 2156 individuals contributed: + 2171 individuals contributed: @@ -4967,44 +5020,44 @@ - K-j (5541) + Roczek, Dennis (5613) - Roczek, Dennis (5472) + K-j (5591) - Uroveits (4074) + Uroveits (4079) - Tryon, Robinson (3504) + Tryon, Robinson (3551) - Pierre-yves samyn (3473) + Pierre-yves samyn (3512) - Kรผ (2849) + Kรผ (2850) - Gautier, Sophie (2762) + Gautier, Sophie (2775) - Goncharuk, Lera (2333) + Goncharuk, Lera (2352) - Balland-Poirier, Laurent (2143) + Balland-Poirier, Laurent (2147) Bielefeld, Rainer (2075) - Jeanweber (1892) + Jeanweber (1894) - Effenberger, Florian (1570) + Effenberger, Florian (1576) @@ -5012,13 +5065,13 @@ Marcpare (1382) - Michaelsen, Bjรถrn (1363) + Michaelsen, Bjรถrn (1374) Adailton (1203) - Mac-Cormick, Joรฃo (1173) + Mac-Cormick, Joรฃo (1195) @@ -5037,13 +5090,13 @@ - Tom (922) + Tom (926) Meeks, Michael (845) - Ostrovsky, David (813) + Ostrovsky, David (819) Naruoga (743) @@ -5051,24 +5104,24 @@ - Filmsi (733) + Jayme Barrientos, Adolfo (736) - Jayme Barrientos, Adolfo (728) + Filmsi (733) - Teo91 (726) + Teo91 (729) - GerryT (717) + GerryT (723) - Drew (646) + Enoki (648) - Enoki (641) + Drew (646) H-k (629) @@ -5082,13 +5135,13 @@ Jmadero (595) - Nouws, Cor (573) + Nouws, Cor (574) - Behrens, Thorsten (560) + Behrens, Thorsten (561) - Clement21.philippe (554) + Clement21.philippe (555) @@ -5110,10 +5163,10 @@ Davidnelson (517) - Elianedomingos (505) + Kompilainenn (514) - Kompilainenn (502) + Elianedomingos (505) Jmpierre (497) @@ -5144,7 +5197,7 @@ Luz Coelho, Rogรฉrio (409) - Holeลกovskรฝ, Jan (400) + Holeลกovskรฝ, Jan (401) @@ -5155,21 +5208,21 @@ Rathke, Eike (387) - Yoshida, Kohei (386) + Yoshida, Kohei (387) - Foral (384) + Vajna, Miklos (387) - Vajna, Miklos (380) + Foral (384) - StefanW (379) + McNamara, Caolรกn (381) - McNamara, Caolรกn (376) + StefanW (379) Emanuel Marcatinco (374) @@ -5177,7 +5230,7 @@ - Raulpacheco (338) + Raulpacheco (339) AndrasTimar (333) @@ -5191,50 +5244,61 @@ - Thiebaud, Norbert (327) + Thiebaud, Norbert (328) Rรถnkkรถ, Niko (322) - Tardon, David (312) + Tardon, David (313) - Lohmaier, Christian (302) + Lohmaier, Christian (312) + Foote, V Stuart (296) + + Heinzws (292) Emanuel A. Marcatinco B. (290) + Emanuel A. Marcatinco B. (290) + + + + Librelegal (290) - Foote, V Stuart (287) + Philips, Yousuf (276) - - Christian, Erich (268) Helen russian (266) + + - Philips, Yousuf (262) + Hibagonsan (260) Gerald (255) - - + + Stahl, Michael (254) + Tseng, Cheng-Chia (254) + + Remarques (252) @@ -5244,11 +5308,11 @@ Adrianoafonso (245) - - - Stahl, Michael (244) + Mohrhard, Markus (242) + + Loic (240) @@ -5258,36 +5322,28 @@ Steve (237) - - - Mohrhard, Markus (236) - - - Hibagonsan (231) + Elcico (232) + + Bosdonnat, Cรฉdric (228) Dippold, Bernhard (226) - - - - Elcico (224) - Almusaireae (219) Kkwet38 (218) + + Khirano (215) - - Gilvanvilarim (213) @@ -5297,26 +5353,26 @@ Jbfaure (205) - - XsLiDian (203) - - Hackert, Thomas (199) + XsLiDian (203) - Wheatbix (198) + Lillqvist, Tor (201) - Lillqvist, Tor (196) + Hackert, Thomas (199) - Erhardt (193) + Wheatbix (198) + Erhardt (193) + + Schulz, Charles-H. (189) @@ -5325,40 +5381,40 @@ Tarnhold (187) + + Mรฉixome, Antรณn (179) - - Alkurtass, Issa (178) + Kaplan, Lior (176) + + Raw text (175) + + Madl, Tobias (175) Fridrich (172) - - Luizheli (172) Furusho (169) + + Jiang, Yifan (168) - Kaplan, Lior (165) - - - - Matuaki (163) @@ -5367,13 +5423,13 @@ See (160) + + Snelders, Rob (159) - - - Henschel, Regina (154) + Henschel, Regina (155) Pitkรคnen, Harri (151) @@ -5381,11 +5437,11 @@ Herzog, Christoph (149) + + Vignoli, Italo (148) - - Gonzalez, Daniel (146) @@ -5395,11 +5451,11 @@ De Cuyper, Joren (138) + + Heliojsf (137) - - P.guimberteau (137) @@ -5409,13 +5465,13 @@ Norah (135) - - Filhocf (132) - - Bergmann, Stephan (132) + Bergmann, Stephan (134) + + + Filhocf (132) Richteruwe (131) @@ -5423,28 +5479,36 @@ Kerwyn (130) + + Michel, Mathias (129) - - + + Sam m (129) + Mamane, Lionel Elie (128) Nik (127) + + + + Beluga (125) + Krackedpress (123) Michelr (123) - - RGB.ES (123) + + Trapezus (122) @@ -5454,11 +5518,11 @@ Lodahl (121) - - JohnSmith (120) + + Liebel, Jennifer (119) @@ -5468,11 +5532,11 @@ Rodriguez, Daniel Armando (115) - - Spaeth, Sebastian (115) + + Markers (114) @@ -5480,24 +5544,16 @@ Vohe (113) - Beluga (112) - - - - Marcus Gama (112) Medieval (111) - - Sam m (109) - + + Phorious (108) - - Schulthess, Franziska (107) @@ -5507,11 +5563,11 @@ Bitsfritz (104) + + Mantke, Andreas (102) - - JZA (101) @@ -5521,95 +5577,95 @@ JeHa (99) + + Ysabeau (99) - - + + ร“vรกri (99) + AlanC (98) Nemeth (98) + + Andreasg (92) Llunak (92) - - Kevin, Suo (้”็จ็‘) (92) MagicFab (91) + + Frombenny (90) Zolnai, Tamรกs (87) - - Omori (86) Zeki (86) + + Dan (85) KorrawitBot (84) - - Klaibson (82) Nabet, Julien (82) + + JamesWalker (81) 80686 (79) - - KeithCu (78) Milos (78) + + Gathoye, William (78) Pechlaner, Wolfgang (78) - - Xosรฉ (76) K.K.Ashisuto (75) - - ร“vรกri (75) - + + Albino (74) - - Fiลกeras, Aurimas (74) @@ -5619,39 +5675,39 @@ Paulojose (74) + + Junmeguro (73) - - + + Castermans, Luc (72) + Jeanmi2403 (72) Aury88 (71) + + RalfHB (71) Al-Harthi, Ahmad Hussein (70) - - Jo7ueb (70) Malhassoun (69) - - Castermans, Luc (68) - + + Freetank (68) - - Fรกbio Farias (68) @@ -5659,16 +5715,24 @@ Jucasaca (68) + Deneb (67) + + + + Donaldo (67) Ptux (67) - - + + Shunesburg69 (65) + StanG (65) + + Karbasion, Bersam (64) @@ -5678,11 +5742,11 @@ Oipila (64) - - Baffclan (63) + + Evy (63) @@ -5692,6 +5756,9 @@ Kudelis, Rimas (63) + + Sikeler (63) + @@ -5704,14 +5771,11 @@ Jlgrenar (60) - Deneb (58) + Neel, Daniel (58) - Neel, Daniel (58) - - Loflex (58) @@ -5720,11 +5784,11 @@ Bmcs (57) - - Camillem (57) + + Davefilms (56) @@ -5734,22 +5798,14 @@ Ramones (56) - - Jrahemipour (55) - - Sikeler (55) - - - Shunesburg69 (54) - + + Hunt, Andrzej (53) - - Heben2 (53) @@ -5757,55 +5813,55 @@ Sunny2038 (53) + Popa, Adrian Marius (52) + + + + Petrizzo (52) Timur LOL (52) - - Vpanter (52) ArnoldSchiller (51) + + Helmar (51) Jaani (51) - - - Popa, Adrian Marius (51) + Agd (50) - Agd (50) + Chtfn (50) + + Halparker (50) Ronaldo (50) - - Catalin Festila (49) - Chtfn (49) - - Mpescador (49) + + Vardomescro (49) - - Lviktoria (48) @@ -5815,11 +5871,11 @@ Moreno, Eduardo (46) + + Sk94 (46) - - Bfo (45) @@ -5829,11 +5885,11 @@ Quest-88 (44) + + Aaronxu (43) - - Gareth (43) @@ -5843,11 +5899,11 @@ Hertel, Jesper (42) + + KAMI (42) - - Another sam (41) @@ -5857,11 +5913,11 @@ Bluedwarf (41) + + Htietze (41) - - Joey (41) @@ -5871,12 +5927,12 @@ Kraucer (40) - - Pedlino (39) - + Pedlino (40) + + Wilper, Simon (39) @@ -5885,11 +5941,11 @@ Enervation (38) + + Alex Thurgood (37) - - Cjenkins (37) @@ -5899,11 +5955,11 @@ Kano (37) + + Kinshuksunil (37) - - Castle, John LeMoyne (37) @@ -5913,11 +5969,11 @@ RaducuG (37) + + Danishka (36) - - Patheticcockroach (36) @@ -5927,11 +5983,11 @@ Liongold (35) + + Nora (35) - - Paz (35) @@ -5941,67 +5997,67 @@ Stalker08 (35) - - Caco13 (34) - - Mahfiaz (34) + Horรกฤek, Stanislav (35) - Quikee (34) + Subramanian, Muthu (35) - Smaug42 (34) + Caco13 (34) - Subramanian, Muthu (34) + Mahfiaz (34) + Quikee (34) + + + Smaug42 (34) + + Aragunde Pรฉrez, Jacobo (33) Corrius, Jesรบs (33) + + Lmartinezh (33) Mars (33) - - Mateus.m.luna (33) Pereriksson (33) + + Rafi (33) Shirahara (33) - - - - Horรกฤek, Stanislav (33) - Clio (32) Daud (32) + + Dryomov, Artur (32) - - Enger, Terrence (32) @@ -6011,11 +6067,11 @@ Alexanderwerner (31) + + IvanM (31) - - Njsg (30) @@ -6025,11 +6081,11 @@ Thardeck (30) + + Cida.Coltro (29) - - Darbe (29) @@ -6039,11 +6095,11 @@ RodolfoRG (29) + + ะกะตั€ะถ (29) - - Ace-dent (28) @@ -6053,11 +6109,11 @@ Riemer, Philipp (28) + + Jihui choi (28) - - ุงู„ู…ุณูŠูƒูŠู† (28) @@ -6067,43 +6123,51 @@ Marcos Paulo de Souza (27) + + Micm (27) - - + + Thuswaldner, Albert (27) + Alayaran (26) Arnaud versini (26) + + Ezeperez26 (26) Fanch (26) - - Linuxman (26) Hawkins, Nigel (26) + + Pirat Michi (26) Sveinki (26) - - Vaslav (26) + Vulcain (26) + + + + Donkers, Winfried (26) @@ -6112,11 +6176,11 @@ RoรŸmanith, Christina (25) - - Eresus (25) + + Freddyrh (25) @@ -6126,13 +6190,13 @@ Lboccia (25) - - Noelson (25) + + - Vulcain (25) + Magliocchetti, Riccardo (25) Winniemiel05 (25) @@ -6140,11 +6204,11 @@ Gaianer (24) - - Gรฉrard24 (24) + + Ksoviero (24) @@ -6154,10 +6218,13 @@ Freund, Matthias (24) + + Yanpas (24) + - Thuswaldner, Albert (24) + Lenochod (23) Nogajun (23) @@ -6194,14 +6261,11 @@ Youngman, Anthony W. (22) - Yanpas (22) + Enio.gemmo (21) - Enio.gemmo (21) - - Grandin, Noel (21) @@ -6210,11 +6274,11 @@ Johannes (21) - - Liusiqi43 (21) + + Necdetyucel (21) @@ -6224,11 +6288,11 @@ Bugmenot (20) - - Grasip (20) + + HeinF (20) @@ -6238,11 +6302,11 @@ Mattsturgeon (20) - - XMatence (20) + + Yorick (20) @@ -6250,6 +6314,9 @@ Zapata (20) + Gippy73 (19) + + Guateconexion (19) @@ -6269,7 +6336,7 @@ - Magliocchetti, Riccardo (19) + Olivier (19) Jingtao, Yan (18) @@ -6286,19 +6353,16 @@ Power, Noel (18) - Olivier (18) - - Richard (18) Schiavinatto (18) - - Sooth (18) + + Toxitom (18) @@ -6308,11 +6372,11 @@ Valdirbarbosa (18) - - ๆž—ๆผขๆ˜Œ (18) + + Akerbeltz (17) @@ -6322,11 +6386,11 @@ Chd (17) - - Dlmoretz (17) + + Ertsey, Andor (17) @@ -6336,50 +6400,42 @@ Gulmorais (17) - - Juergenfenn (17) - - Lenochod (17) - + + Rubembarreto (17) Taken (17) - - Thumperward (17) Uwealtmann (17) + + Yumakino (17) ะ‘ะตะปะพะผะธั€ (17) - - Dhersh (16) Elpapki (16) - - Gippy73 (16) - + + Houbsi (16) - - MoIshihara (16) @@ -6389,11 +6445,11 @@ P.Guimberteau (16) + + Ristoi (16) - - Vuhung (16) @@ -6403,11 +6459,11 @@ APerson (15) + + Airon90 (15) - - Andy98 (15) @@ -6417,68 +6473,68 @@ Craigo (15) + + Franklin (15) - - + + Irmhild (15) + Khlood Elsayed (15) Lefevre00 (15) + + Luctur (15) Miko (15) - - Naudy (15) Dominguez, Rafael (15) + + PauGNU (15) Raul.malea (15) - - Thorogood, Tom (15) ๆš—ๅฝฑ้บ่จ€ (15) + + Afaccioli74 (14) Fina (14) - - Kosiorek, Bartosz (14) Guuml (14) + + Halencarjunior (14) - Irmhild (14) - - - - Lfernandocarvalho (14) @@ -6487,29 +6543,37 @@ Lutch (14) + + Mderoucy (14) - - Reinsle (14) + Steve- - (14) + + Tamiliam (14) + + Testnoda (14) Thangamani-arun (14) - - Akoscomp (13) + Alexpikptz (13) + + + + Alrt84 (13) @@ -6518,11 +6582,11 @@ Beuss (13) - - Cedric31 (13) + + Gallaecio (13) @@ -6532,11 +6596,11 @@ Leomota (13) - - Ljelly (13) + + Luc (13) @@ -6546,11 +6610,11 @@ Mabbb (13) - - Mihkel (13) + + Mortense (13) @@ -6560,11 +6624,11 @@ Pete Boyd (13) - - Royerjy (13) + + S.Gecko (13) @@ -6574,11 +6638,11 @@ Sanyii (13) - - Simplicity Instinct (13) + + Sherlock, Chris (13) @@ -6588,11 +6652,11 @@ Tnishiki (13) - - Vivaelcelta (13) + + Vkkodali (13) @@ -6602,11 +6666,11 @@ AustinW (12) - - Bhaskar (12) + + Cralin (12) @@ -6616,11 +6680,11 @@ Halan (12) - - Immanuelg (12) + + Godard, Laurent (12) @@ -6630,15 +6694,18 @@ Pcapeluto (12) - - Gupta, Rachit (12) + + Staticsafe (12) + Tommy27 (12) + + Veerh01 (12) @@ -6703,9 +6770,6 @@ - Steve- - (11) - - Sunk8 (11) @@ -6714,11 +6778,11 @@ Webmink (11) - - Zero0w (11) + + Admasonscottisha (10) @@ -6728,11 +6792,11 @@ Algotruneman (10) - - AliIsingor (10) + + Castagno, Giuseppe (10) @@ -6740,6 +6804,9 @@ Blargh (10) + Bubli (10) + + Diginin (10) @@ -6829,64 +6896,61 @@ - Alexpikptz (9) - - AtkinsSJ (9) - Bubli (9) - - Calisgarge (9) - - Camargo (9) Cnuss (9) + + Crazyskeggy (9) Dupreyb (9) - - Fatdf (9) Geeta (9) + + Gibi (9) GisbertFriege (9) - - Goranrakic (9) Jim-BobHarris (9) + + Jopsen (9) Jowyta (9) - - + + Funk, Juergen (9) + Lapetec (9) + + Lexeii (9) @@ -6896,11 +6960,11 @@ Marco (9) - - Marcuskgosi (9) + + Bogliolo, Meo (9) @@ -6910,10 +6974,13 @@ Ohnemax (9) + + Oprea.luci (9) + - Oprea.luci (9) + Foley, Peter (9) PeppinoLib (9) @@ -7045,16 +7112,13 @@ Paulo.tavares (8) - Foley, Peter (8) - - Peterpall (8) - - Ricardolau (8) + + Seomarketing221 (8) @@ -7064,11 +7128,11 @@ Tibbylickle (8) - - Troumad (8) + + Vbkaisetsu (8) @@ -7078,11 +7142,11 @@ Yakusha (8) - - Yostane (8) + + Kabatsayev, Ruslan (7) @@ -7092,11 +7156,11 @@ Bastik (7) - - Bjherbison (7) + + Borim7 (7) @@ -7106,11 +7170,11 @@ Ciaran (7) - - Dado (7) + + Drose (7) @@ -7120,11 +7184,11 @@ GuKK-Devel (7) - - Hunter, Kevin (7) + + Ingotian (7) @@ -7134,11 +7198,11 @@ Jstnlth (7) - - M1cky (7) + + Mariosv (7) @@ -7148,11 +7212,11 @@ MephistoBooks (7) - - Francis, Matthew (7) + + Nathanjh13 (7) @@ -7162,10 +7226,13 @@ Opensas (7) + + Polte (7) + - Polte (7) + Kant, Pranav (7) RMCampos (7) @@ -7434,16 +7501,19 @@ Alvarez, Octavio (5) + Andrea Gelmini (5) + + Anousak (5) Art.Gilvanov (5) + + Sodora, August (5) - - AustinSaintAubin (5) @@ -7453,11 +7523,11 @@ Bitigchi (5) + + BloodIce (5) - - Cray85 (5) @@ -7467,11 +7537,11 @@ DickStomp (5) + + DoFoWerner (5) - - Florian.haftmann (5) @@ -7481,11 +7551,11 @@ Ggurley (5) + + Gpoussel (5) - - H.Sparks (5) @@ -7495,11 +7565,11 @@ HubPfalz (5) + + Hummer5354 (5) - - Scott, Patrick (5) @@ -7509,9 +7579,6 @@ John.pratt (5) - - Funk, Juergen (5) - @@ -7543,6 +7610,9 @@ + Weghorn, Michael (5) + + Laplante, Chris (5) @@ -7551,11 +7621,11 @@ OSVALDO LINS VIANA (5) + + Orcmid (5) - - Pepe (5) @@ -7565,13 +7635,10 @@ Pkoroau (5) - - Poeml (5) - - Kant, Pranav (5) + Poeml (5) Rajesh (5) @@ -7622,11 +7689,14 @@ Tranzistors (5) - Wt (5) + Valtermura (5) + Wt (5) + + AHi (4) @@ -7635,11 +7705,11 @@ Aas (4) + + Agron (4) - - Albertoeda (4) @@ -7649,11 +7719,11 @@ Alex1 (4) + + Alvarenga (4) - - Alzoo (4) @@ -7663,9 +7733,6 @@ AndikaTriwidada (4) - - Andrea Gelmini (4) - @@ -7728,16 +7795,19 @@ Dragon (4) + Robertson, Daniel (4) + + Edmund.laugasson (4) Eisaks (4) + + Erx700 (4) - - Fmolinero (4) @@ -7747,11 +7817,11 @@ Garrowolf (4) + + Gmjs (4) - - Hossein (4) @@ -7761,11 +7831,11 @@ Jamesleader (4) + + Jiehong (4) - - Jjmeric (4) @@ -7775,11 +7845,11 @@ Jonata (4) + + Jones (4) - - Jooste (4) @@ -7789,11 +7859,11 @@ Le Bigot, Jean-Tiare (4) + + Lee (4) - - Lethargilistic (4) @@ -7803,11 +7873,11 @@ MDDN (4) + + Haggag, Muhammad (4) - - MPascual (4) @@ -7817,13 +7887,10 @@ Marco c (4) - - Mhonline (4) - - Weghorn, Michael (4) + Mhonline (4) Mikedoherty ca (4) @@ -7910,75 +7977,72 @@ Tk (4) - Tommy27 (4) - - Txwikinger (4) Ufas (4) - - UlKu (4) - - Valtermura (4) - + + V., Artem (4) Wcolen (4) - - Wikiuser (4) Williamjmorenor (4) + + Wpeixoto (4) ะ”ะตะฝะธั (4) - - Aalam (3) Adept (3) + + Aexyn (3) Alex.simoes (3) - - Alexsfagundes (3) Almorca (3) + + + + Andrey Usov (3) + Antanasb (3) Armin (3) - - Armin W. (3) + + Arthur Zennig (3) @@ -7988,11 +8052,11 @@ Baena (3) - - Bellerophon2 (3) + + Benjwgarner (3) @@ -8002,11 +8066,11 @@ Bodhi-Baum (3) - - Bootingman (3) + + Brub (3) @@ -8016,11 +8080,11 @@ Burdakov (3) - - CIB.Mathias (3) + + CallieCarney (3) @@ -8030,11 +8094,11 @@ Charu (3) - - Claudiosegovia (3) + + Cmorgan (3) @@ -8044,11 +8108,11 @@ Cono (3) - - DaSch (3) + + DanShearer (3) @@ -8058,180 +8122,180 @@ Bankston, Daniel (3) - - Dmtrs32 (3) + + Donbrookman (3) - Robertson, Daniel (3) - - Dubyk (3) - - EdgeE (3) Elproferoman (3) + + ErSey (3) Ericatamiris (3) - - Estebanmonge (3) Fraang (3) + + Franzjakob (3) Frob tea (3) - - Fulldecent (3) FunkyPenguin (3) + + Gokcen (3) Gouchi (3) - - Hansgerd.schneider (3) Herrmarder (3) + + IanL (3) Imcon (3) - - It-christian (3) JDM (3) + + Jennifer.park (3) Murugan, Jesso Clarence (3) - - Jhbn (3) Joe312213 (3) + + Johannes Rohr (3) Joseroberto (3) - - Juanpabl (3) K Karthikeyan (3) + + Kbiondi (3) Kevinob (3) - - Kfogel (3) Khunshan (3) + + Kkrothapalli (3) Kristof (3) - - Kscanne (3) LO Rob (3) + + Lennoazevedo (3) Libcub (3) - - LucaCappelletti (3) Hryniuk, ลukasz (3) + + Luuk (3) Margott (3) - - Matteocam (3) Mattias (3) + + Maxwell (3) Mhsmsantos (3) - - Michaelwheatland (3) + Midimarcus (3) + + + + NGHLibreOffice (3) @@ -8240,11 +8304,11 @@ Nicolas.abel (3) - - Niconil (3) + + Ragnarsson, Bjรถrgvin (3) @@ -8254,11 +8318,11 @@ Noel Power (3) - - OOarthurOo (3) + + Ojeremyj (3) @@ -8268,6 +8332,9 @@ Oprea luci (3) + + Os cib (3) + @@ -8540,16 +8607,19 @@ AvaGreer1 (2) + Ozdemir, Aybuke (2) + + BZT42 (2) Bachka (2) + + BernardMeza9 (2) - - BettieGiordano (2) @@ -8559,11 +8629,11 @@ BlazejJones1 (2) + + BlessedOrozco (2) - - BoD (2) @@ -8573,11 +8643,11 @@ Boivie (2) + + Boldizsakawi7 (2) - - BoleslausSaunders (2) @@ -8587,11 +8657,11 @@ BrandiToomer (2) + + BridgetJarvis (2) - - Bruceschaller (2) @@ -8601,308 +8671,316 @@ ButlerBarron6 (2) + + + + C0bb3r (2) + C1pr1an (2) - - CallieMvzap (2) CallieSalgado (2) + + CamilleMccarthy (2) CandidoRutherford (2) - - CapistranOleary (2) CaraDang6 (2) + + Carlosr (2) CarolinaCalling (2) - - CarrieDaniels (2) CarrollRico2 (2) + + Iacob, Catalin (2) CavesGill8 (2) - - Celsovsm (2) Cgrosdemange (2) + + Chabermu (2) Chanda57Oyhnbco (2) - - ChanieSnow2 (2) Cheche (2) + + ChrzcicielCampbell (2) Cjbackhouse (2) - - Cl-r (2) ClariceThorne (2) + + ClaudiaCramer (2) Clemen Beek (2) - - Codingmicha (2) ConcepcionMarsh (2) + + CoralieCarr7 (2) Crxssi (2) - - CupertinoDarnell (2) Cvk (2) + + CyrillicEscobedo (2) DaCaPo (2) - - Dag (2) Dairdev (2) + + DaisieQuigley (2) DanForrest2 (2) - - Danese (2) Danthedev (2) + + DarellFarnell (2) Darkixion (2) - - David4you (2) Bolen, David (2) + + Debugercz (2) DelinaRomano5 (2) - - DellePoole7 (2) DenisArnaud (2) + + Dennis' Spam test account (2) Retout, Tim (2) - - Django (2) DoctorBaxter7 (2) + + Domasj (2) Domsau2 (2) - - DonaldBryant7 (2) DrDrack (2) + + Dreambox Cccam (2) Duiliodias (2) - - DukeDejesus7 (2) EarleSiegel7 (2) + + Ed (2) EdaFreeman3 (2) - - Eduardoarandah (2) Edwardcottreau (2) + + Efs710920mex (2) Ejep520 (2) - - Sรกnchez, Bartolomรฉ (2) Eldan (2) + + ElisabethHolcomb (2) Elixir (2) - - EllieBowers3 (2) ElmaGray6 (2) + + Eloquence (2) ElsieMacias7 (2) - - Emily (2) EmperorErnst5 (2) + + EnosKraus6 (2) Erdalronahi (2) - - Eren (2) ErieTovar6 (2) + + Erikcht (2) Ersteinmal (2) - - ErwinHammond3 (2) EssieKeller8 (2) + + EsterEngland7 (2) + Eszka (2) + + EthylCardenas (2) - - FannyTillman8 (2) + + FateHarrington (2) @@ -8912,11 +8990,11 @@ Feldo (2) - - Ffinlo (2) + + FlaviaPratt8 (2) @@ -8926,11 +9004,11 @@ FlorenceKim1 (2) - - Flyntyuei2 (2) + + Foolfitz (2) @@ -8940,11 +9018,11 @@ FranciscoByrne (2) - - FredaDowning7 (2) + + Fukanchik, Sergey (2) @@ -8954,11 +9032,11 @@ GayeRossetti (2) - - GeoDowning4 (2) + + GeoffLawrence (2) @@ -8968,11 +9046,11 @@ Gerardgiraud (2) - - Gerpunzel (2) + + GertieEllington (2) @@ -8982,11 +9060,11 @@ Girvinh (2) - - GiuseppOQH (2) + + Glanbeav (2) @@ -8996,11 +9074,11 @@ GraciaNorwood (2) - - Grakic (2) + + Grim (2) @@ -9010,6 +9088,9 @@ Guillem (2) + + Kose, Gulsah (2) + @@ -9033,14 +9114,17 @@ Hector (2) - Hellpรฉ (2) + Hedaja (2) - Helo (2) + Hellpรฉ (2) + Helo (2) + + Hemmerling (2) @@ -9049,11 +9133,11 @@ HeriberDacomb (2) + + HermitMuller1 (2) - - Herronrobertson (2) @@ -9063,11 +9147,11 @@ IIIYates8 (2) + + Ian22 (2) - - IkeVasquez9 (2) @@ -9077,11 +9161,11 @@ Imagin8or (2) + + InezFinney8 (2) - - IraLane4 (2) @@ -9091,11 +9175,11 @@ IrvinBernard9 (2) + + IsadoraFoster (2) - - IsaiahBuck5 (2) @@ -9105,11 +9189,11 @@ IvaRoach5 (2) + + JacintaGibson (2) - - Adams, Jonathan (2) @@ -9119,11 +9203,11 @@ JanetSolberg (2) + + JanuariusStringer (2) - - Jasmins (2) @@ -9133,11 +9217,11 @@ JavierFernandez (2) + + JayStafford3 (2) - - Jcubic (2) @@ -9147,11 +9231,11 @@ JesseBHXEmrh (2) + + JettieGibson2 (2) - - Jgpestana (2) @@ -9161,11 +9245,11 @@ Jiero (2) + + Jnicolas (2) - - JoWi (2) @@ -9175,11 +9259,11 @@ Jowenshaw (2) + + Joรฃo Pedro (2) - - Jstaniek (2) @@ -9189,11 +9273,11 @@ JudasPritchard (2) + + JudithGraves6 (2) - - Jumoun (2) @@ -9203,11 +9287,11 @@ Karakartala (2) + + KarkGunn4 (2) - - Karolus (2) @@ -9217,11 +9301,11 @@ Kazuyuki Yoshimura (2) + + Keepiledar (2) - - KeithC (2) @@ -9231,11 +9315,11 @@ KittyBauer5 (2) + + KlementynaMckinney (2) - - Kmr (2) @@ -9245,11 +9329,11 @@ Kolorguild (2) + + KroniK907 (2) - - KrystalMinchin (2) @@ -9259,11 +9343,11 @@ Kwilliams (2) + + L (2) - - LariaJohn3 (2) @@ -9273,11 +9357,11 @@ LeilaniLattimor (2) + + LemuelHo1 (2) - - LemuelWerner5 (2) @@ -9287,11 +9371,11 @@ LidaMasters1 (2) + + Lino (2) - - Liotier (2) @@ -9301,11 +9385,11 @@ LovisaKessler (2) + + Petrolekas, Luke (2) - - LubomyrWalden (2) @@ -9315,11 +9399,11 @@ LynnForbes3 (2) + + Casalin, Matteo (2) - - MฤƒrฤƒลŸoiu, Mariana (2) @@ -9329,11 +9413,11 @@ Ma83mit (2) + + MabelleStanley (2) - - MadisonDarnell (2) @@ -9343,11 +9427,11 @@ MaggieGray2 (2) + + MagnoliaParsons (2) - - Manu.unni (2) @@ -9357,11 +9441,11 @@ MarchCourtney (2) + + Marcinz (2) - - Marco74 (2) @@ -9371,11 +9455,11 @@ MargeryThorpe (2) + + MarillaMarsh7 (2) - - Marius (2) @@ -9385,11 +9469,11 @@ MartaRollins2 (2) + + MarthaBright4 (2) - - MartinPC (2) @@ -9399,11 +9483,11 @@ Matt 51 (2) + + MattieSchleinit (2) - - Mbemidio (2) @@ -9413,11 +9497,11 @@ MercedesDelatorre (2) + + Merchantbusiness (2) - - Kepplinger, Martin (2) @@ -9427,11 +9511,11 @@ Mesutkullar (2) + + Mgiri (2) - - Michel Gagnon (2) @@ -9441,11 +9525,11 @@ MikeyZ (2) + + MinaHuggins7 (2) - - Mind4z (2) @@ -9455,11 +9539,11 @@ Mitcoes (2) + + Mjkopp (2) - - Mklever (2) @@ -9469,11 +9553,11 @@ Mloiseleur (2) + + Mnalima (2) - - Mnsoto (2) @@ -9483,11 +9567,11 @@ Mordocai (2) + + MorganJohnstone (2) - - Mst0 (2) @@ -9497,11 +9581,11 @@ Musicstave (2) + + Mzalewski (2) - - Nacerix (2) @@ -9511,12 +9595,12 @@ NealEspinoza6 (2) - - NettaHurd9 (2) - + NettaHurd9 (2) + + NettieParra1 (2) @@ -9525,365 +9609,374 @@ Nishino, Daisuke (2) + + NicholasLanier (2) - - + + Christener, Nicolas (2) + NinaLam6 (2) Noirin (2) + + NoricumArthur (2) NorrisAndersen (2) - - NovemberVogel (2) Nsharifi (2) + + Nuclearbob (2) OUPS (2) - - Oiaohm (2) OlaPost6 (2) + + OlieBooth3 (2) OlivierC (2) - - OnopriyBrandon (2) OrlandoArellano (2) + + OscarMeredith (2) Percherie (2) - - PercherskySanford (2) Senna Tschudin, Peter (2) + + Pgraber (2) Szelat, Phillip (2) - - Pierre (2) Pitonyak (2) + + Pkst (2) PolishHungarianSharp (2) - - Posterboy (2) PragueBergman (2) + + + Pulsifer (2) R.Yu. (2) - - Rahul050 (2) Rania (2) + + Rbecke (2) ReaganBaudin (2) - - ReeseShepherd (2) ReginaldMcgraw (2) + + ReneEngelhard (2) RenniePrescott (2) - - RetaStern5 (2) RhodaMackey3 (2) + + RiceBurger3 (2) Rmarquardt (2) - - Roadrunner (2) RollandHannah (2) + + RosaliaFair4 (2) RosalinBlaubaum (2) - - RosannaPaul7 (2) RosariaLampungm (2) + + RoyFokker (2) RoyShelton7 (2) - - Ryan (2) Sagar.libo (2) + + SamBenavides5 (2) Sankarshan (2) - - SavinaShaffer (2) SebastianNorth (2) + + Sebutler (2) Sergwish (2) - - Sfeuser (2) Shaforostoff (2) + + Shankar (2) Shaun.schutte (2) - - SidneyArredondo (2) Silwol (2) + + Simplecontrast (2) SlavicNapier8 (2) - - Smile4ever (2) Soothsilver (2) + + Sotrud nik (2) Spledger (2) - - Sshelagh (2) Ssorgatem (2) + + StaciBorthwick (2) Stappers (2) - - Stephan66 (2) Stuarta0 (2) + + Sturm (2) Sungkhum (2) - - SusanSwain3 (2) Svante (2) + + Sven.fischer.de (2) Sydbarrett74 (2) - - Synanceia (Pierre) (2) Tauon (2) + + Techal (2) Teelittle (2) - - TeenaWilburn (2) TeresaMacias3 (2) + + Teresavillegas1 (2) TerraShears (2) - - TheaGallardo8 (2) TheodoseyPeralta (2) + + TheophilusHess (2) Thomase (2) - - Thomeck (2) Thorongil (2) + + Tim1075 (2) TimothyChilds (2) - - TomaMora8 (2) Tomkeb (2) + + Tomrobert87 (2) TraciKQAZnsqjho (2) - - TressieCulver (2) + Isnard, Timothรฉe (2) + + + + Tux40000 (2) @@ -9892,11 +9985,11 @@ ValessioBrito (2) - - VanHogan7 (2) + + Melenchuk, Vasily (2) @@ -9906,11 +9999,11 @@ VerneDodd5 (2) - - VernitaDonley (2) + + VeronaXiong3 (2) @@ -9920,11 +10013,11 @@ ViolaPraed (2) - - Viper550 (2) + + VirginArredondo (2) @@ -9934,11 +10027,11 @@ VladimirPrince (2) - - VladislavA (2) + + Volker (2) @@ -9948,11 +10041,11 @@ Vossman (2) - - WaclawaSavage (2) + + WalentynaPatrick (2) @@ -9962,11 +10055,11 @@ WarrenChristian (2) - - WashingtonOakley (2) + + Watermelons (2) @@ -9976,11 +10069,11 @@ WilhelminaEaton (2) - - WincentyMorrison (2) + + Wirelessben (2) @@ -9990,11 +10083,11 @@ Wulei (2) - - Xoristzatziki (2) + + Yaw (2) @@ -10004,11 +10097,11 @@ ZoraWinkler1 (2) - - ุฑูŠู…ุงุณ ู‡ูŠุซู… (2) + + ๆตๆ˜Ÿไพๆ—ง (2) @@ -10018,11 +10111,11 @@ Abde.jarti99 (1) - - Abdulaziz A Alayed (1) + + Absolute Garcinia (1) @@ -10032,11 +10125,11 @@ AdalberDesailll (1) - - Adlard.matthew (1) + + Advicesformen (1) @@ -10046,11 +10139,11 @@ Agradecido (1) - - Ainurshakirov (1) + + Ajaxfiore (1) @@ -10060,11 +10153,11 @@ Aleks (1) - - Henrie, Alex (1) + + Alex38-68 (1) @@ -10074,11 +10167,11 @@ Alexandrevicenzi (1) - - Alexandri (1) + + Alexis Wilke (1) @@ -10088,11 +10181,11 @@ Alexsandro Matias (1) - - Alg (1) + + Ali (1) @@ -10102,11 +10195,11 @@ Alverne (1) - - Amacater (1) + + Andarilhobotto (1) @@ -10116,11 +10209,11 @@ AndreasK (1) - - AndreasNeudecker (1) + + AndresZapata (1) @@ -10130,11 +10223,11 @@ Andriazdk2177 (1) - - AngelaRusconi (1) + + AngelinChisolm (1) @@ -10144,11 +10237,11 @@ AntoineVe (1) - - AntoniePonder (1) + + Anurag kanungo (1) @@ -10158,11 +10251,11 @@ ArdenRatcliff (1) - - Arekm (1) + + Ari (1) @@ -10172,11 +10265,11 @@ Arkonide (1) - - Armandos (1) + + Arnaudc (1) @@ -10186,11 +10279,11 @@ Teigseth, Arno (1) - - Artintal (1) + + Nakashian, Ashod (1) @@ -10200,11 +10293,11 @@ Astalaseven (1) - - AstridGoo (1) + + Tang, Audrey (1) @@ -10214,11 +10307,11 @@ AundreaPqf (1) - - AvaPANumrgiabjx (1) + + Ayoooub (1) @@ -10228,11 +10321,11 @@ Bailiwick (1) - - Bailly02 (1) + + Bami (1) @@ -10242,11 +10335,11 @@ Barbara21F (1) - - BarryLovegrove (1) + + Vincent, Babu (1) @@ -10256,11 +10349,11 @@ BelindaApplerot (1) - - BernardHannafor (1) + + Bestdating (1) @@ -10270,11 +10363,11 @@ Beznogov (1) - - Bezzy (1) + + Bgloberman (1) @@ -10284,11 +10377,11 @@ BillyBurke (1) - - Biofool (1) + + Bjossir (1) @@ -10298,11 +10391,11 @@ Bkolaimeraq (1) - - BlakeGartrell (1) + + BlancheBelstead (1) @@ -10312,11 +10405,11 @@ Blandyna (1) - - Bolo (1) + + BookerSoderlund (1) @@ -10326,11 +10419,11 @@ Bortis (1) - - Sowden, Brad (1) + + BrentHawthorne (1) @@ -10340,11 +10433,11 @@ Brinzing, Oliver (1) - - BroderiHolyman (1) + + BryceBrassell (1) @@ -10354,11 +10447,11 @@ Budo (1) - - Burger.ga (1) + + Bzsolt (1) @@ -10368,11 +10461,11 @@ CalebWgypcu (1) - - CamillaPena (1) + + Paul, Cameron (1) @@ -10382,11 +10475,11 @@ Capira (1) - - CarloASilva (1) + + Carlos (1) @@ -10396,11 +10489,11 @@ CarlotaF42 (1) - - Castarco (1) + + CedricQ73ktehvp (1) @@ -10410,11 +10503,11 @@ ChantalWalker (1) - - Charles12 (1) + + CharlesJenkins (1) @@ -10424,11 +10517,11 @@ Chmilblick (1) - - Beauzรฉe-Luyssen, Hugo (1) + + Christoph.herzog (1) @@ -10438,11 +10531,11 @@ Ciampix (1) - - CiaraLockie (1) + + Ciriaco (1) @@ -10452,11 +10545,11 @@ CletaValentino (1) - - Clint7236c (1) + + Company (1) @@ -10466,11 +10559,11 @@ Corsolibreoffice (1) - - Cosmopolitan (1) + + Cpatrick08 (1) @@ -10480,11 +10573,11 @@ Cpmipn (1) - - CrystleGravatt (1) + + Cล“ur, Antoine (1) @@ -10494,11 +10587,11 @@ DamionThorp (1) - - Danichocolate (1) + + Dar18proore (1) @@ -10508,11 +10601,11 @@ DarylAlcantar (1) - - DarylBoot (1) + + Datesmen (1) @@ -10522,11 +10615,11 @@ Davidmichel (1) - - DawnOgles (1) + + Di Marco, Daniel (1) @@ -10536,11 +10629,11 @@ DeShark (1) - - DeannaQuaife (1) + + DeanneKer (1) @@ -10550,11 +10643,11 @@ DeborahW18 (1) - - DelbertChristie (1) + + DelilahBock (1) @@ -10564,11 +10657,11 @@ Dezsiszabi (1) - - Kis-รdรกm, Lรกszlรณ (1) + + Herde, Daniel (1) @@ -10578,11 +10671,11 @@ Kettner, Valentin (1) - - Do Nhu Vy (1) + + DocuFree (1) @@ -10592,11 +10685,11 @@ Dominuk (1) - - Donadel (1) + + DoreenDuell (1) @@ -10606,11 +10699,11 @@ Drizamanuber (1) - - Drlandi (1) + + Drtimwright (1) @@ -10620,11 +10713,11 @@ Dxider (1) - - EEFElishaqjbzjy (1) + + EHGSammyevumvzq (1) @@ -10634,11 +10727,11 @@ EarnestT57 (1) - - Echada (1) + + Edsonlead (1) @@ -10648,11 +10741,11 @@ Efcis (1) - - Efegurkan (1) + + Ehenryb (1) @@ -10662,11 +10755,11 @@ EleanoreC (1) - - Elisa0474wgwgq (1) + + Elliot1415 (1) @@ -10676,11 +10769,11 @@ Elshize (1) - - Emyr (1) + + Enesates (1) @@ -10690,11 +10783,11 @@ Erasmo (1) - - Eric (1) + + ErickRijoJr (1) @@ -10704,11 +10797,11 @@ Roux, Elie (1) - - Esben aaberg (1) + + EstebanUD (1) @@ -10718,11 +10811,11 @@ Evelyn3794 (1) - - Evfool (1) + + Factooor (1) @@ -10732,11 +10825,11 @@ Falcao (1) - - Farhaf (1) + + FarzanehSarafraz (1) @@ -10746,11 +10839,11 @@ FelipaSwan (1) - - Fenchi (1) + + Ferlodev (1) @@ -10758,6 +10851,9 @@ FerminAndrade (1) + Feyza (1) + + Fghj (1) @@ -10867,16 +10963,13 @@ Guillaume (1) - Kose, Gulsah (1) - - Gwidion (1) - - HFujimaki (1) + + HKagerer (1) @@ -10886,11 +10979,11 @@ Haggai (1) - - Hagos (1) + + Hamati (1) @@ -10900,11 +10993,11 @@ Hasinasi (1) - - Rui Wang (1) + + HelenWalston (1) @@ -10914,11 +11007,11 @@ Heygo (1) - - Heyheyitshay (1) + + Hfischer (1) @@ -10928,11 +11021,11 @@ Hillrich (1) - - HiltonFtel (1) + + Hitomi t (1) @@ -10942,11 +11035,11 @@ Hlavaty, Tomas (1) - - Honza.havlicek (1) + + HoracioRydge (1) @@ -10956,11 +11049,11 @@ Hosiryuhosi (1) - - Hriostat (1) + + HumbertGno (1) @@ -10970,11 +11063,11 @@ Ialbors (1) - - Ian (1) + + Ianjo (1) @@ -10984,11 +11077,11 @@ IceBlur (1) - - Ida (1) + + Gilham, Ian (1) @@ -10998,11 +11091,11 @@ Ipodsoft (1) - - Irene (1) + + IrrevdJohn (1) @@ -11012,11 +11105,11 @@ IslaXTDhiovhyzo (1) - - IsraelGill (1) + + JDล‚ugosz (1) @@ -11026,11 +11119,11 @@ JO3EMC (1) - - Jab (1) + + Jacquelin (1) @@ -11040,11 +11133,11 @@ Jailletc36 (1) - - JaimeS (1) + + JameyAllred (1) @@ -11054,11 +11147,11 @@ JamisonDamron (1) - - JanEnEm (1) + + Janani (1) @@ -11068,11 +11161,11 @@ Jani (1) - - Jazzon (1) + + Jcdericco (1) @@ -11082,11 +11175,11 @@ JeanAmessdvaei (1) - - JeanMcPhillamy (1) + + JeanVSAF (1) @@ -11096,11 +11189,11 @@ Jeeva03789 (1) - - JefferyMackenna (1) + + Jeongkyu (1) @@ -11110,11 +11203,11 @@ Gao, Qiwen (1) - - JestineNww (1) + + Bruhn, Jan-Henrik (1) @@ -11124,11 +11217,11 @@ Jinocvla (1) - - JiroMatsuzawa (1) + + Jmarchn (1) @@ -11138,11 +11231,11 @@ Joaofernando (1) - - JoelH (1) + + JolieZepps (1) @@ -11152,11 +11245,11 @@ JonelleFritz (1) - - JonnaCainzabvwf (1) + + JordanS (1) @@ -11166,11 +11259,11 @@ Jorgemendes (1) - - Joselaurian (1) + + Joshun (1) @@ -11180,11 +11273,11 @@ JoyLittler (1) - - Jpl (1) + + Jsbueno (1) @@ -11194,11 +11287,11 @@ Juergen (1) - - JuliannSnider (1) + + JulioRodriguez (1) @@ -11208,11 +11301,11 @@ Jwcampbell (1) - - KSBMiranda (1) + + Kamran Mackey (1) @@ -11222,11 +11315,11 @@ Bhat, Kishor (1) - - KendraDunstan (1) + + Kenneth.venken (1) @@ -11236,11 +11329,11 @@ KerrieMarino (1) - - KieraY22at (1) + + Knobo (1) @@ -11250,11 +11343,11 @@ Kosmous (1) - - KourtneNester (1) + + Krotow (1) @@ -11264,11 +11357,11 @@ LKPSharylptwsdo (1) - - LMKemm (1) + + LOFF (1) @@ -11278,11 +11371,11 @@ Laskov (1) - - LatoshaZnu (1) + + LaunaEgpeeoc (1) @@ -11292,11 +11385,11 @@ LaverneNavarret (1) - - LavinaVandermar (1) + + LavonneSchindle (1) @@ -11306,11 +11399,11 @@ Learnwellwithme93 (1) - - Librestez54 (1) + + Likoski (1) @@ -11320,11 +11413,11 @@ LillianaRad (1) - - LillieNlowccx (1) + + Lineinthesand (1) @@ -11334,11 +11427,11 @@ Liturgist (1) - - Llalllal1 (1) + + Scheidt, Heiko (1) @@ -11348,11 +11441,11 @@ Lucas Filho (1) - - LudieNutter (1) + + Luiz Clรกudio (1) @@ -11362,11 +11455,11 @@ LydiaDgxuysav (1) - - LyndonCastiglio (1) + + M.sacharewicz (1) @@ -11376,11 +11469,11 @@ MJW (1) - - Mabel7997eelu (1) + + MadelineShort (1) @@ -11390,11 +11483,11 @@ Magicienap (1) - - Mahdiekrani (1) + + Mahmudul (1) @@ -11404,11 +11497,11 @@ Manveru1986 (1) - - MarcelProut (1) + + MarcelaHeffron (1) @@ -11418,11 +11511,11 @@ Biscaro, Marco (1) - - MarcosHanson (1) + + MargaretaNorthc (1) @@ -11432,11 +11525,11 @@ MarianaConnell (1) - - Mariano Gaudix (1) + + MarinaManess (1) @@ -11446,11 +11539,11 @@ Markcoomes (1) - - Markzog21 (1) + + MarlonMarcum (1) @@ -11460,11 +11553,11 @@ Marwan (1) - - MaryellenW31 (1) + + MarylynKu (1) @@ -11474,11 +11567,11 @@ Massao (1) - - Matsuura (1) + + MattTheGeek (1) @@ -11488,11 +11581,11 @@ Matฤ›j (1) - - MavisReit (1) + + Maxjf1 (1) @@ -11502,11 +11595,11 @@ Doleลพel, Marek (1) - - Megan44Dgxg (1) + + MelisaBroughton (1) @@ -11516,11 +11609,11 @@ Menturi (1) - - MeriMerideth (1) + + Mete0r (1) @@ -11530,11 +11623,11 @@ Mhcrnl (1) - - Mhenriday (1) + + Mhoes (1) @@ -11544,135 +11637,127 @@ Michaelwood (1) - - Michka B (1) - - Midimarcus (1) - + + Midomidi2013 (1) MiguelKastner (1) - - Miguelverdu (1) Mikolg (1) + + MilagroWilkerso (1) Milanbv (1) - - Miles (1) Minarja4 (1) + + MitchellP (1) Miurahr (1) - - Mixer (1) Mixstah (1) + + Mmeof (1) Moberg (1) - - ModestoZzc (1) Mohammedzalta (1) + + Momo50 (1) Morvan (1) - - Soini, Mox (1) Muhammadsufyanzainalabidin (1) + + Mw (1) MyraBlacklow (1) - - NEOhidra (1) NNe8Lx2gc (1) + + Namikawa (1) NannetteFreedma (1) - - Nanotron (1) Ncaio (1) + + Nedrichards (1) NellieSMWX (1) - - Neteler (1) Ngoswami (1) + + Nickko (1) - Christener, Nicolas (1) - - - - NiklasHor (1) @@ -11681,11 +11766,11 @@ Ngo, Minh (1) + + Nnino2 (1) - - Northwestfirestarters (1) @@ -11695,11 +11780,11 @@ Notafish (1) + + Nouiurm (1) - - Norbert X (1) @@ -11709,11 +11794,11 @@ OBMLorraine (1) + + Oclei (1) - - Oig (1) @@ -11723,11 +11808,11 @@ Okusi (1) + + Olea (1) - - OliverHoffnung (1) @@ -11737,11 +11822,11 @@ Onurkucuk67 (1) + + Oosterkamp (1) - - Ophelia2399 (1) @@ -11751,11 +11836,11 @@ Oui (1) + + Ozpoz (1) - - PBsoft (1) @@ -11765,11 +11850,11 @@ Padenton (1) + + PamalaDorsch (1) - - Pankaj (1) @@ -11779,11 +11864,11 @@ Passerpunt (1) + + Pastim (1) - - PatriceMerrick (1) @@ -11793,11 +11878,11 @@ PearlFelton (1) + + PearlMoyazw (1) - - PenelopHewlett (1) @@ -11807,11 +11892,11 @@ Vorel, Petr (1) + + Pharmankur (1) - - Phb.nbnet.nb.ca (1) @@ -11821,11 +11906,11 @@ Philhart (1) + + PhilipTimms (1) - - Philippe43 (1) @@ -11835,140 +11920,148 @@ 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) PoppyHart (1) + + PopularOutcast (1) PorfiriMansergh (1) - - PorterEncarnaci (1) Carter, Travis (1) + + Prosper (1) Psauthor (1) - - Psychicread531 (1) Ptoye (1) + + QGBWinonajrdtpj (1) Qiguo (1) - - Qokoqoko (1) Qtwallaert (1) + + Raal (1) RafaelaTrudel (1) - - Rahuldeshmukh101 (1) Rainy (1) + + Ramonturner (1) Randolp1949 (1) - - RashadEsp (1) Ratias (1) + + Rcampbelllaos (1) RebeccaToscano (1) - - ReubenFow (1) RexRTEJnlzus (1) + + Rholler (1) Rhoslyn (1) - - + + Richardprins (1) + RickieHpejt (1) + + Riessmi (1) @@ -11978,11 +12071,11 @@ Ringlerloje (1) - - Rion (1) + + Ritzema, Brent (1) @@ -11992,11 +12085,11 @@ Rizwan1218 (1) - - Robert Wetzlmayr (1) + + Robustchao (1) @@ -12006,10 +12099,13 @@ Rockcows31 (1) + + Rockers (1) + - Rockers (1) + Rodney78 (1) RogelioTrost (1) @@ -12110,16 +12206,19 @@ SecondLifeGuerilla (1) + Ak, Sedat (1) + + ShannaCockrell (1) ShaynaMan (1) + + SherrieMarroqui (1) - - SherrillGabriel (1) @@ -12129,11 +12228,11 @@ Shin en (1) + + Boldiston, Kyle (1) - - Silvestr (1) @@ -12143,11 +12242,11 @@ SimsimiUy (1) + + SiobhanLandale (1) - - SkyeCorreia (1) @@ -12157,11 +12256,11 @@ Socialmitchell (1) + + Son Sonson (1) - - SonyaBunnell (1) @@ -12171,11 +12270,11 @@ Sphericalhorse (1) + + Spreadsheetsorter (1) - - Spyros (1) @@ -12185,11 +12284,11 @@ Weiberg, Stefan (1) + + Stewart75H (1) - - Stonehubmn (1) @@ -12199,11 +12298,11 @@ Supportex (1) + + SusieVeasley (1) - - Svalo (1) @@ -12213,70 +12312,78 @@ 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) @@ -12286,15 +12393,18 @@ Tmongkol (1) - - Tomasdd (1) + + Viehmann, Thomas (1) + Tonnysmile (1) + + Tpokorra (1) @@ -12317,9 +12427,6 @@ - Isnard, Timothรฉe (1) - - Shahid, Umair (1) @@ -12328,11 +12435,11 @@ Underdog (1) - - UrmasD (1) + + UrsulaHorrell (1) @@ -12342,11 +12449,11 @@ VIPSylar (1) - - VPUJamikajklq (1) + + ValenciaS (1) @@ -12356,11 +12463,11 @@ Veeven (1) - - Vera Cavalcante (1) + + VerenaGaskins (1) @@ -12370,11 +12477,11 @@ VeroniqueGQAQ (1) - - VickyShick (1) + + Vincentvikram (1) @@ -12384,11 +12491,11 @@ WMZGiseleun (1) - - WOBFriedauk (1) + + WZEMonica (1) @@ -12398,11 +12505,11 @@ WalterPape (1) - - WandaSingletary (1) + + Waqas mirza6 (1) @@ -12412,11 +12519,11 @@ Waynemcl (1) - - Webistrator (1) + + Wes (1) @@ -12426,11 +12533,11 @@ Wezchlebaty (1) - - Wilhelm (1) + + William Avery (1) @@ -12440,11 +12547,11 @@ Klausner, Thomas (1) - - Woulouf (1) + + XSXKristin (1) @@ -12454,11 +12561,11 @@ Xsdcfghjk (1) - - XtinaS (1) + + Xtrusia (1) @@ -12468,11 +12575,11 @@ YaroslavRutledge (1) - - Yazu (1) + + Yoshiharu Kawai (1) @@ -12482,11 +12589,11 @@ Yury Tarasievich (1) - - YvanM (1) + + Yy y ja jp (1) @@ -12496,11 +12603,11 @@ ZAXHesterlpu (1) - - ZBMCallumbwire (1) + + ZakGregory (1) @@ -12510,9 +12617,12 @@ Zizzle (1) + + + - If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. + If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. diff -Nru libreoffice-l10n-5.0.2~rc2/sal/osl/unx/file_misc.cxx libreoffice-l10n-5.0.3~rc2/sal/osl/unx/file_misc.cxx --- libreoffice-l10n-5.0.2~rc2/sal/osl/unx/file_misc.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sal/osl/unx/file_misc.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -816,7 +816,7 @@ "sal.osl", "rename(" << pszDestFileName << ", " << tmpDestFile << ") failed with errno " << e); - return osl_File_E_BUSY; // for want of a better error code + return osl_File_E_EXIST; // for want of a better error code } } } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/inc/autoform.hxx libreoffice-l10n-5.0.3~rc2/sc/inc/autoform.hxx --- libreoffice-l10n-5.0.2~rc2/sc/inc/autoform.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/inc/autoform.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -307,9 +307,13 @@ bool Save( SvStream& rStream, sal_uInt16 fileVersion ); }; +struct DefaultFirstEntry { + bool operator() (const OUString& left, const OUString& right) const; +}; + class SC_DLLPUBLIC ScAutoFormat { - typedef boost::ptr_map MapType; + typedef boost::ptr_map MapType; MapType maData; bool mbSaveLater; ScAfVersions m_aVersions; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/inc/externalrefmgr.hxx libreoffice-l10n-5.0.3~rc2/sc/inc/externalrefmgr.hxx --- libreoffice-l10n-5.0.2~rc2/sc/inc/externalrefmgr.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/inc/externalrefmgr.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -796,7 +796,6 @@ */ void transformUnsavedRefToSavedRef( SfxObjectShell* pShell ); - void insertRefCell(RefCellMap::iterator& itr, ScFormulaCell* pCell); private: ScDocument* mpDoc; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/qa/extras/macros-test.cxx libreoffice-l10n-5.0.3~rc2/sc/qa/extras/macros-test.cxx --- libreoffice-l10n-5.0.2~rc2/sc/qa/extras/macros-test.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/qa/extras/macros-test.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -118,13 +118,37 @@ ScDocShell* xDocSh = static_cast(pFoundShell); ScDocument& rDoc = xDocSh->GetDocument(); + + // User defined types + SfxObjectShell::CallXScript( xComponent, "vnd.sun.Star.script:MyLibrary.Module1.Main?language=Basic&location=document", aParams, aRet, aOutParamIndex, aOutParam); OUString aValue = rDoc.GetString(0,0,0); - CPPUNIT_ASSERT_MESSAGE("script did not change the value of Sheet1.A1", aValue == "success"); + CPPUNIT_ASSERT_MESSAGE("User defined types script did not change the value of Sheet1.A1", aValue == "success"); + + // Big Module + + SfxObjectShell::CallXScript( + xComponent, + "vnd.sun.Star.script:MyLibrary.BigModule.bigMethod?language=Basic&location=document", + aParams, aRet, aOutParamIndex, aOutParam); + + aValue = rDoc.GetString(1,0,0); + CPPUNIT_ASSERT_MESSAGE("Big module script did not change the value of Sheet1.B1", aValue == "success"); + + // far big method tdf#94617 + + SfxObjectShell::CallXScript( + xComponent, + "vnd.sun.Star.script:MyLibrary.BigModule.farBigMethod?language=Basic&location=document", + aParams, aRet, aOutParamIndex, aOutParam); + + aValue = rDoc.GetString(2,0,0); + CPPUNIT_ASSERT_MESSAGE("Far Method script did not change the value of Sheet1.C1", aValue == "success"); + xDocSh->DoClose(); } Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/extras/testdocuments/testTypePassword.ods and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/extras/testdocuments/testTypePassword.ods differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-1.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-1.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-2.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-2.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-3.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-3.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-4.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-4.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-5.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-5.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-6.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-6.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/pass/crash-7.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-7.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xls/systematic.xls and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/systematic.xls differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sc/qa/unit/data/xlsx/matrix-multiplication.xlsx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xlsx/matrix-multiplication.xlsx differ diff -Nru libreoffice-l10n-5.0.2~rc2/sc/qa/unit/opencl-test.cxx libreoffice-l10n-5.0.3~rc2/sc/qa/unit/opencl-test.cxx --- libreoffice-l10n-5.0.2~rc2/sc/qa/unit/opencl-test.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/qa/unit/opencl-test.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -66,6 +66,7 @@ virtual bool load( const OUString &rFilter, const OUString &rURL, const OUString &rUserData, SfxFilterFlags nFilterFlags, SotClipboardFormatId nClipboardID, unsigned int nFilterVersion) SAL_OVERRIDE; + void testSystematic(); void testSharedFormulaXLS(); #if 0 void testSharedFormulaXLSGroundWater(); @@ -299,6 +300,7 @@ void testFinancialMDurationFormula1(); CPPUNIT_TEST_SUITE(ScOpenCLTest); + CPPUNIT_TEST(testSystematic); CPPUNIT_TEST(testSharedFormulaXLS); CPPUNIT_TEST(testFinacialFormula); CPPUNIT_TEST(testStatisticalFormulaFisher); @@ -702,6 +704,98 @@ } #endif +void ScOpenCLTest::testSystematic() +{ + if(!initTestEnv("systematic.", XLS, false)) + return; + + ScDocument& rDoc = xDocSh->GetDocument(); + rDoc.CalcAll(); + + int nAVertBegin(0), nAVertEnd(0), nBVertBegin(0), nBVertEnd(0); + int nAHorEnd(0), nBHorEnd(0); + + int nRow, nCol; + for (nRow = 0; nRow < 1000; ++nRow) + { + if (rDoc.GetString(ScAddress(0, nRow, 0)) == "a") + { + nAVertBegin = nRow + 1; + + for (nCol = 0; nCol < 1000; ++nCol) + { + if (rDoc.GetString(ScAddress(nCol, nRow, 0)) != "a") + { + nAHorEnd = nCol; + break; + } + } + break; + } + } + for (; nRow < 1000; ++nRow) + { + if (rDoc.GetString(ScAddress(0, nRow, 0)) != "a") + { + nAVertEnd = nRow; + break; + } + } + + for (; nRow < 1000; ++nRow) + { + if (rDoc.GetString(ScAddress(0, nRow, 0)) == "b") + { + nBVertBegin = nRow + 1; + + for (nCol = 0; nCol < 1000; ++nCol) + { + if (rDoc.GetString(ScAddress(nCol, nRow, 0)) != "b") + { + nBHorEnd = nCol; + break; + } + } + break; + } + } + for (; nRow < 1000; ++nRow) + { + if (rDoc.GetString(ScAddress(0, nRow, 0)) != "b") + { + nBVertEnd = nRow; + break; + } + } + + assert(nAVertBegin != 0); + assert(nBVertBegin != 0); + assert(nAVertEnd > nAVertBegin + 100); + assert(nBVertEnd > nBVertBegin + 100); + assert((nAVertEnd-nAVertBegin) == (nBVertEnd-nBVertBegin)); + assert(nAHorEnd > 10); + assert(nBHorEnd > 10); + assert(nAHorEnd == nBHorEnd); + + for (SCROW i = nAVertBegin; i < nAVertEnd; ++i) + { + for (int j = 1; j < nAHorEnd; ++j) + { + double fLibre = rDoc.GetValue(ScAddress(j, i, 0)); + double fExcel = rDoc.GetValue(ScAddress(j, nBVertBegin + (i - nAVertBegin), 0)); + + const OString sFailedMessage = + OString(static_cast('A'+j)) + + OString::number(i+1) + + "!=" + + OString(static_cast('A'+j)) + + OString::number(nBVertBegin+(i-nAVertBegin)+1); + CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(sFailedMessage.getStr(), fExcel, fLibre, 1e-10); + } + } +} + + void ScOpenCLTest::testSharedFormulaXLS() { if(!initTestEnv("sum_ex.", XLS, false)) diff -Nru libreoffice-l10n-5.0.2~rc2/sc/qa/unit/subsequent_export-test.cxx libreoffice-l10n-5.0.3~rc2/sc/qa/unit/subsequent_export-test.cxx --- libreoffice-l10n-5.0.2~rc2/sc/qa/unit/subsequent_export-test.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/qa/unit/subsequent_export-test.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -147,6 +147,8 @@ void testHiddenShape(); void testMoveCellAnchoredShapes(); void testHeaderImage(); + void testMatrixMultiplication(); + CPPUNIT_TEST_SUITE(ScExportTest); CPPUNIT_TEST(test); @@ -203,6 +205,8 @@ CPPUNIT_TEST(testHiddenShape); CPPUNIT_TEST(testMoveCellAnchoredShapes); CPPUNIT_TEST(testHeaderImage); + CPPUNIT_TEST(testMatrixMultiplication); + CPPUNIT_TEST_SUITE_END(); @@ -2824,6 +2828,32 @@ CPPUNIT_ASSERT(aURL.startsWith("vnd.sun.star.GraphicObject:")); } +void ScExportTest::testMatrixMultiplication() +{ + ScDocShellRef xShell = loadDoc("matrix-multiplication.", XLSX); + CPPUNIT_ASSERT(xShell.Is()); + + ScDocShellRef xDocSh = saveAndReload(&(*xShell), XLSX); + CPPUNIT_ASSERT(xDocSh.Is()); + + xmlDocPtr pDoc = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, "xl/worksheets/sheet1.xml", XLSX); + CPPUNIT_ASSERT(pDoc); + + OUString CellFormulaRange = getXPath(pDoc, + "/x:worksheet/x:sheetData/x:row[4]/x:c/x:f","ref"); + + // make sure that the CellFormulaRange is G5:G6. + CPPUNIT_ASSERT_EQUAL(OUString("G5:G6"), CellFormulaRange); + + OUString CellFormulaType = getXPath(pDoc, + "/x:worksheet/x:sheetData/x:row[4]/x:c/x:f","t"); + + // make sure that the CellFormulaType is array. + CPPUNIT_ASSERT_EQUAL(OUString("array"), CellFormulaType); + + xDocSh->DoClose(); +} + CPPUNIT_TEST_SUITE_REGISTRATION(ScExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/data/document.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/data/document.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/data/document.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/data/document.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -2961,10 +2961,18 @@ // Create Listener after everything has been inserted StartListeningFromClip(aDestRange.aStart.Col(), aDestRange.aStart.Row(), aDestRange.aEnd.Col(), aDestRange.aEnd.Row(), rMark, nInsFlag ); - // Re-broadcast after all Listener have been created - SetDirtyFromClip( - aDestRange.aStart.Col(), aDestRange.aStart.Row(), aDestRange.aEnd.Col(), aDestRange.aEnd.Row(), - rMark, nInsFlag, aBroadcastSpans); + + { + ScBulkBroadcast aBulkBroadcast( GetBASM()); + + // Set formula cells dirty and collect non-formula cells. + SetDirtyFromClip( + aDestRange.aStart.Col(), aDestRange.aStart.Row(), aDestRange.aEnd.Col(), aDestRange.aEnd.Row(), + rMark, nInsFlag, aBroadcastSpans); + + BroadcastAction aAction(*this); + aBroadcastSpans.executeColumnAction(*this, aAction); + } if (bResetCut) pClipDoc->GetClipParam().mbCutMode = false; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/data/formulacell.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/data/formulacell.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/data/formulacell.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/data/formulacell.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -3804,9 +3804,6 @@ bool ScFormulaCell::InterpretFormulaGroup() { - if (!officecfg::Office::Common::Misc::UseOpenCL::get()) - return false; - if (!mxGroup || !pCode) return false; @@ -3832,6 +3829,9 @@ return false; } + if (!officecfg::Office::Common::Misc::UseOpenCL::get()) + return false; + // TODO : Disable invariant formula group interpretation for now in order // to get implicit intersection to work. if (mxGroup->mbInvariant && false) diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/data/postit.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/data/postit.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/data/postit.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/data/postit.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -45,6 +45,7 @@ #include "drwlayer.hxx" #include "userdat.hxx" #include "detfunc.hxx" +#include "editutil.hxx" #include @@ -545,11 +546,14 @@ if( const EditTextObject* pEditObj = GetEditTextObject() ) { OUStringBuffer aBuffer; - for( sal_Int32 nPara = 0, nParaCount = pEditObj->GetParagraphCount(); nPara < nParaCount; ++nPara ) + ScNoteEditEngine& rEngine = mrDoc.GetNoteEngine(); + rEngine.SetText(*pEditObj); + sal_Int32 nParaCount = rEngine.GetParagraphCount(); + for( sal_Int32 nPara = 0; nPara < nParaCount; ++nPara ) { if( nPara > 0 ) aBuffer.append( '\n' ); - aBuffer.append( pEditObj->GetText( nPara ) ); + aBuffer.append(rEngine.GetText(nPara)); } return aBuffer.makeStringAndClear(); } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/inc/interpre.hxx libreoffice-l10n-5.0.3~rc2/sc/source/core/inc/interpre.hxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/inc/interpre.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/inc/interpre.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -823,7 +823,7 @@ double GetPercentile( ::std::vector & rArray, double fPercentile ); double GetPercentileExclusive( ::std::vector & rArray, double fPercentile ); void GetNumberSequenceArray( sal_uInt8 nParamCount, ::std::vector& rArray, bool bConvertTextInArray ); -void GetSortArray( sal_uInt8 nParamCount, ::std::vector& rSortArray, ::std::vector* pIndexOrder, bool bConvertTextInArray ); +void GetSortArray( sal_uInt8 nParamCount, ::std::vector& rSortArray, ::std::vector* pIndexOrder, bool bConvertTextInArray, bool bAllowEmptyArray ); static void QuickSort(::std::vector& rSortArray, ::std::vector* pIndexOrder = NULL); void ScModalValue(); void ScModalValue_Multi(); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/opencl/formulagroupcl.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/opencl/formulagroupcl.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/opencl/formulagroupcl.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/opencl/formulagroupcl.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -64,6 +64,18 @@ " (*p) += t?0:1;\n" " return t?b:a+b;\n" "}\n" + "double fmin_count(double a, double b, __private int *p) {\n" + " double result = fmin(a, b);\n" + " bool t = isnan(result);\n" + " (*p) += t?0:1;\n" + " return result;\n" + "}\n" + "double fmax_count(double a, double b, __private int *p) {\n" + " double result = fmax(a, b);\n" + " bool t = isnan(result);\n" + " (*p) += t?0:1;\n" + " return result;\n" + "}\n" "double fsum(double a, double b) { return isNan(a)?b:a+b; }\n" "double legalize(double a, double b) { return isNan(a)?b:a;}\n" "double fsub(double a, double b) { return a-b; }\n" @@ -1698,7 +1710,7 @@ ss << ") {\n"; ss << "double tmp = " << GetBottom() << ";\n"; ss << "int gid0 = get_global_id(0);\n"; - if (isAverage()) + if (isAverage() || isMinOrMax()) ss << "int nCount = 0;\n"; ss << "double tmpBottom;\n"; unsigned i = vSubArguments.size(); @@ -1734,13 +1746,8 @@ assert(pCur); assert(pCur->GetType() != formula::svDoubleVectorRef); - if (pCur->GetType() == formula::svSingleVectorRef) - { - const formula::SingleVectorRefToken* pSVR = - static_cast(pCur); - ss << "if (gid0 < " << pSVR->GetArrayLength() << "){\n"; - } - else if (pCur->GetType() == formula::svDouble) + if (pCur->GetType() == formula::svSingleVectorRef || + pCur->GetType() == formula::svDouble) { ss << "{\n"; } @@ -1771,13 +1778,6 @@ ss << ";\n"; ss << " }\n"; ss << "}\n"; - if (vSubArguments[i]->GetFormulaToken()->GetType() == - formula::svSingleVectorRef && ZeroReturnZero()) - { - ss << "else{\n"; - ss << " return 0;\n"; - ss << " }\n"; - } } else { @@ -1786,12 +1786,21 @@ ss << ";\n"; } } + if (isAverage()) + ss << + "if (nCount==0)\n" + " return CreateDoubleError(errDivisionByZero);\n"; + else if (isMinOrMax()) + ss << + "if (nCount==0)\n" + " return 0;\n"; ss << "return tmp"; if (isAverage()) ss << "*pow((double)nCount,-1.0)"; ss << ";\n}"; } virtual bool isAverage() const { return false; } + virtual bool isMinOrMax() const { return false; } virtual bool takeString() const SAL_OVERRIDE { return false; } virtual bool takeNumeric() const SAL_OVERRIDE { return true; } }; @@ -2134,7 +2143,7 @@ ss << "fsum_count(" << lhs << "," << rhs << ", &nCount)"; return ss.str(); } - virtual std::string BinFuncName() const SAL_OVERRIDE { return "fsum"; } + virtual std::string BinFuncName() const SAL_OVERRIDE { return "average"; } virtual bool isAverage() const SAL_OVERRIDE { return true; } }; @@ -2184,20 +2193,16 @@ { ss << "if (isnan(" << vSubArguments[argno]->GenSlidingWindowDeclRef() << ")) {\n" - " if (GetDoubleErrorValue(" << vSubArguments[argno]->GenSlidingWindowDeclRef() << ") == errNoValue)\n" - " return CreateDoubleError(errDivisionByZero);\n" + " return CreateDoubleError(errDivisionByZero);\n" "}\n"; return true; } else if (argno == 0) { ss << - "if (isnan(" << vSubArguments[argno]->GenSlidingWindowDeclRef() << ")) {\n" - " if (GetDoubleErrorValue(" << vSubArguments[argno]->GenSlidingWindowDeclRef() << ") == errNoValue) {\n" - " if (" << vSubArguments[1]->GenSlidingWindowDeclRef() << " == 0)\n" - " return CreateDoubleError(errDivisionByZero);\n" - " return 0;\n" - " }\n" + "if (isnan(" << vSubArguments[argno]->GenSlidingWindowDeclRef() << ") &&\n" + " !(isnan(" << vSubArguments[1]->GenSlidingWindowDeclRef() << ") || " << vSubArguments[1]->GenSlidingWindowDeclRef() << " == 0)) {\n" + " return 0;\n" "}\n"; } return false; @@ -2210,12 +2215,13 @@ public: OpMin( int nResultSize ) : Reduction(nResultSize) {} - virtual std::string GetBottom() SAL_OVERRIDE { return "MAXFLOAT"; } + virtual std::string GetBottom() SAL_OVERRIDE { return "NAN"; } virtual std::string Gen2( const std::string& lhs, const std::string& rhs ) const SAL_OVERRIDE { - return "fmin(" + lhs + "," + rhs + ")"; + return "fmin_count(" + lhs + "," + rhs + ", &nCount)"; } virtual std::string BinFuncName() const SAL_OVERRIDE { return "min"; } + virtual bool isMinOrMax() const SAL_OVERRIDE { return true; } }; class OpMax : public Reduction @@ -2223,12 +2229,13 @@ public: OpMax( int nResultSize ) : Reduction(nResultSize) {} - virtual std::string GetBottom() SAL_OVERRIDE { return "-MAXFLOAT"; } + virtual std::string GetBottom() SAL_OVERRIDE { return "NAN"; } virtual std::string Gen2( const std::string& lhs, const std::string& rhs ) const SAL_OVERRIDE { - return "fmax(" + lhs + "," + rhs + ")"; + return "fmax_count(" + lhs + "," + rhs + ", &nCount)"; } virtual std::string BinFuncName() const SAL_OVERRIDE { return "max"; } + virtual bool isMinOrMax() const SAL_OVERRIDE { return true; } }; class OpSumProduct : public SumOfProduct diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/address.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/address.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/address.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/address.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1153,7 +1153,7 @@ else nBits = 0; - if( nCol > MAXCOL || rtl::isAsciiAlpha( *p ) ) + if (nCol > MAXCOL || (*p && *p != '$' && !rtl::isAsciiDigit( *p ))) nBits = 0; nRes |= nBits; if( !nBits ) diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/autoform.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/autoform.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/autoform.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/autoform.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -896,6 +896,16 @@ insert(pData); } +bool DefaultFirstEntry::operator() (const OUString& left, const OUString& right) const +{ + OUString aStrStandard(ScGlobal::GetRscString(STR_STYLENAME_STANDARD)); + if ( ScGlobal::GetpTransliteration()->isEqual( left, aStrStandard ) ) + return true; + if ( ScGlobal::GetpTransliteration()->isEqual( right, aStrStandard ) ) + return false; + return ScGlobal::GetCollator()->compareString( left, right) < 0; +} + ScAutoFormat::ScAutoFormat(const ScAutoFormat& r) : maData(r.maData), mbSaveLater(false) {} diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/compiler.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/compiler.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/compiler.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/compiler.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -2636,6 +2636,7 @@ { "GOALSEEK", ocBackSolver }, // GOALSEEK -> ORG.OPENOFFICE.GOALSEEK { "COM.MICROSOFT.F.DIST", ocFDist_LT }, // fdo#40835, -> FDIST -> COM.MICROSOFT.F.DIST // Renamed new names, prepare to read future names: + { "FINV", ocFInv_LT }, // COM.MICROSOFT.F.INV -> FINV //{ "ORG.OPENOFFICE.XXX", ocXXX } // XXX -> ORG.OPENOFFICE.XXX }; static const size_t nOdffAliases = sizeof(aOdffAliases) / sizeof(aOdffAliases[0]); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr1.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr1.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr1.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr1.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -354,11 +354,11 @@ SCSIZE nC = 0, nR = 0; for ( ; nC < nCols && (nC != nErrorCol || nR != nErrorRow); /*nop*/ ) { - for ( ; nR < nRows && (nC != nErrorCol || nR != nErrorRow); ++nR) + for (nR = 0 ; nR < nRows && (nC != nErrorCol || nR != nErrorRow); ++nR) { lcl_storeJumpMatResult(pMatPtr, pJumpMat, nC, nR); } - if (nC != nErrorCol || nR != nErrorRow) + if (nC != nErrorCol && nR != nErrorRow) ++nC; } // Now the mixed cases. @@ -376,6 +376,7 @@ lcl_storeJumpMatResult(pMatPtr, pJumpMat, nC, nR); } } + nR = 0; } xNew = new ScJumpMatrixToken( pJumpMat ); GetTokenMatrixMap().insert( ScTokenMatrixMap::value_type( pCur, xNew )); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr2.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr2.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr2.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr2.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -277,7 +277,7 @@ if ( nParamCount >= 3 ) { - GetSortArray( 1, rSortArray, NULL, false ); + GetSortArray( 1, rSortArray, NULL, false, true ); size_t nMax = rSortArray.size(); for ( size_t i = 0; i < nMax; i++ ) rSortArray.at( i ) = ::rtl::math::approxFloor( rSortArray.at( i ) ) + nNullDate; @@ -294,7 +294,7 @@ OUString aWeekendDays; if ( nParamCount == 4 ) { - GetSortArray( 1, rSortArray, NULL, true ); + GetSortArray( 1, rSortArray, NULL, true, true ); size_t nMax = rSortArray.size(); for ( size_t i = 0; i < nMax; i++ ) rSortArray.at( i ) = ::rtl::math::approxFloor( rSortArray.at( i ) ) + nNullDate; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr3.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr3.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr3.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr3.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -3465,7 +3465,7 @@ if ( !MustHaveParamCountMin( nParamCount, 1 ) ) return; vector aSortArray; - GetSortArray( nParamCount, aSortArray, NULL, false ); + GetSortArray( nParamCount, aSortArray, NULL, false, false ); SCSIZE nSize = aSortArray.size(); if (aSortArray.empty() || nSize == 0 || nGlobalError) PushNoValue(); @@ -3551,7 +3551,7 @@ double fSignificance = ( nParamCount == 3 ? ::rtl::math::approxFloor( GetDouble() ) : 3.0 ); double fNum = GetDouble(); vector aSortArray; - GetSortArray( 1, aSortArray, NULL, false ); + GetSortArray( 1, aSortArray, NULL, false, false ); SCSIZE nSize = aSortArray.size(); if ( aSortArray.empty() || nSize == 0 || nGlobalError ) PushNoValue(); @@ -3644,7 +3644,7 @@ return; } vector aSortArray; - GetSortArray( 1, aSortArray, NULL, false ); + GetSortArray( 1, aSortArray, NULL, false, false ); SCSIZE nSize = aSortArray.size(); if (aSortArray.empty() || nSize == 0 || nGlobalError) PushNoValue(); @@ -3783,13 +3783,17 @@ PopError(); } -void ScInterpreter::GetSortArray( sal_uInt8 nParamCount, vector& rSortArray, vector* pIndexOrder, bool bConvertTextInArray ) +void ScInterpreter::GetSortArray( sal_uInt8 nParamCount, vector& rSortArray, vector* pIndexOrder, bool bConvertTextInArray, bool bAllowEmptyArray ) { GetNumberSequenceArray( nParamCount, rSortArray, bConvertTextInArray ); if (rSortArray.size() > MAX_ANZ_DOUBLE_FOR_SORT) SetError( errStackOverflow); - else if (rSortArray.empty()) + else if ( rSortArray.empty() ) + { + if ( bAllowEmptyArray ) + return; SetError( errNoValue); + } if (nGlobalError == 0) QuickSort( rSortArray, pIndexOrder); @@ -3885,7 +3889,7 @@ bAscending = false; vector aSortArray; - GetSortArray( 1, aSortArray, NULL, false ); + GetSortArray( 1, aSortArray, NULL, false, false ); double fVal = GetDouble(); SCSIZE nSize = aSortArray.size(); if ( aSortArray.empty() || nSize == 0 || nGlobalError ) diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr5.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr5.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr5.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr5.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -834,7 +834,7 @@ if ( !MustHaveParamCountMin( nParamCount, 1 ) ) return; vector aSortArray; - GetSortArray( nParamCount, aSortArray, NULL, false ); + GetSortArray( nParamCount, aSortArray, NULL, false, false ); SCSIZE nSize = aSortArray.size(); if ( aSortArray.empty() || nSize == 0 || nGlobalError ) PushNoValue(); @@ -1801,7 +1801,7 @@ vector aBinArray; vector aBinIndexOrder; - GetSortArray( 1, aBinArray, &aBinIndexOrder, false ); + GetSortArray( 1, aBinArray, &aBinIndexOrder, false, false ); SCSIZE nBinSize = aBinArray.size(); if (nGlobalError) { @@ -1810,7 +1810,7 @@ } vector aDataArray; - GetSortArray( 1, aDataArray, NULL, false ); + GetSortArray( 1, aDataArray, NULL, false, false ); SCSIZE nDataSize = aDataArray.size(); if (aDataArray.empty() || nGlobalError) diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr6.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr6.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/core/tool/interpr6.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr6.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -384,7 +384,7 @@ case ifPRODUCT: { ScMatrix::IterateResult aRes = pMat->Product(bTextAsZero); - fRes = aRes.mfFirst; + fRes *= aRes.mfFirst; fRes *= aRes.mfRest; rCount += aRes.mnCount; } @@ -392,6 +392,7 @@ case ifSUMSQ: { ScMatrix::IterateResult aRes = pMat->SumSquare(bTextAsZero); + fRes += aRes.mfFirst; fRes += aRes.mfRest; rCount += aRes.mnCount; } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/impop.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/impop.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/impop.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/impop.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -520,13 +520,11 @@ void ImportExcel::Array25() { - sal_uInt16 nFirstRow, nLastRow, nFormLen; - sal_uInt8 nFirstCol, nLastCol; - - nFirstRow = aIn.ReaduInt16(); - nLastRow = aIn.ReaduInt16(); - nFirstCol = aIn.ReaduInt8(); - nLastCol = aIn.ReaduInt8(); + sal_uInt16 nFormLen; + sal_uInt16 nFirstRow = aIn.ReaduInt16(); + sal_uInt16 nLastRow = aIn.ReaduInt16(); + sal_uInt8 nFirstCol = aIn.ReaduInt8(); + sal_uInt8 nLastCol = aIn.ReaduInt8(); if( GetBiff() == EXC_BIFF2 ) {// BIFF2 @@ -539,17 +537,21 @@ nFormLen = aIn.ReaduInt16(); } - if( ValidColRow( nLastCol, nLastRow ) ) + const ScTokenArray* pErgebnis = nullptr; + + if (ValidColRow(nLastCol, nLastRow)) { // the read mark is now on the formula, length in nFormLen - const ScTokenArray* pErgebnis; pFormConv->Reset( ScAddress( static_cast(nFirstCol), static_cast(nFirstRow), GetCurrScTab() ) ); - pFormConv->Convert( pErgebnis, maStrm, nFormLen, true, FT_CellFormula); + pFormConv->Convert(pErgebnis, maStrm, nFormLen, true, FT_CellFormula); - OSL_ENSURE( pErgebnis, "*ImportExcel::Array25(): ScTokenArray is NULL!" ); + SAL_WARN_IF(!pErgebnis, "sc", "*ImportExcel::Array25(): ScTokenArray is NULL!"); + } + if (pErgebnis) + { ScDocumentImport& rDoc = GetDocImport(); ScRange aArrayRange(nFirstCol, nFirstRow, GetCurrScTab(), nLastCol, nLastRow, GetCurrScTab()); rDoc.setMatrixCells(aArrayRange, *pErgebnis, formula::FormulaGrammar::GRAM_ENGLISH_XL_A1); @@ -660,6 +662,12 @@ // stored as entire characters -> convert to 1/256 of characters (as in COLINFO) double fDefWidth = 256.0 * maStrm.ReaduInt16(); + if (!pColRowBuff) + { + SAL_WARN("sc", "*ImportExcel::DefColWidth(): pColRowBuff is NULL!"); + return; + } + // #i3006# additional space for default width - Excel adds space depending on font size long nFontHt = GetFontBuffer().GetAppFontData().mnHeight; fDefWidth += XclTools::GetXclDefColWidthCorrection( nFontHt ); @@ -807,6 +815,11 @@ void ImportExcel::Standardwidth() { sal_uInt16 nScWidth = XclTools::GetScColumnWidth( maStrm.ReaduInt16(), GetCharWidth() ); + if (!pColRowBuff) + { + SAL_WARN("sc", "*ImportExcel::Standardwidth(): pColRowBuff is NULL!"); + return; + } pColRowBuff->SetDefWidth( nScWidth, true ); } @@ -1018,17 +1031,21 @@ aIn.Ignore( (GetBiff() >= EXC_BIFF5) ? 6 : 2 ); nFormLen = aIn.ReaduInt16(); + const ScTokenArray* pErgebnis = nullptr; + if( ValidColRow( nLastCol, nLastRow ) ) { // the read mark is now on the formula, length in nFormLen - const ScTokenArray* pErgebnis; pFormConv->Reset( ScAddress( static_cast(nFirstCol), static_cast(nFirstRow), GetCurrScTab() ) ); pFormConv->Convert( pErgebnis, maStrm, nFormLen, true, FT_CellFormula); - OSL_ENSURE( pErgebnis, "+ImportExcel::Array34(): ScTokenArray is NULL!" ); + SAL_WARN_IF(!pErgebnis, "sc", "+ImportExcel::Array34(): ScTokenArray is NULL!"); + } + if (pErgebnis) + { ScDocumentImport& rDoc = GetDocImport(); ScRange aArrayRange(nFirstCol, nFirstRow, GetCurrScTab(), nLastCol, nLastRow, GetCurrScTab()); rDoc.setMatrixCells(aArrayRange, *pErgebnis, formula::FormulaGrammar::GRAM_ENGLISH_XL_A1); @@ -1040,6 +1057,13 @@ sal_uInt16 nFlags, nDefHeight; nFlags = maStrm.ReaduInt16(); nDefHeight = maStrm.ReaduInt16(); + + if (!pColRowBuff) + { + SAL_WARN("sc", "*ImportExcel::Defrowheight345(): pColRowBuff is NULL!"); + return; + } + pColRowBuff->SetDefHeight( nDefHeight, nFlags ); } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xetable.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xetable.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xetable.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xetable.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -932,23 +932,82 @@ // OOXTODO: XML_cm, XML_vm, XML_ph FSEND ); - rWorksheet->startElement( XML_f, - // OOXTODO: XML_t, ST_CellFormulaType - XML_aca, XclXmlUtils::ToPsz( (mxTokArr && mxTokArr->IsVolatile()) || (mxAddRec && mxAddRec->IsVolatile()) ), - // OOXTODO: XML_ref, ST_Ref - // OOXTODO: XML_dt2D, bool - // OOXTODO: XML_dtr, bool - // OOXTODO: XML_del1, bool - // OOXTODO: XML_del2, bool - // OOXTODO: XML_r1, ST_CellRef - // OOXTODO: XML_r2, ST_CellRef - // OOXTODO: XML_ca, bool - // OOXTODO: XML_si, uint - // OOXTODO: XML_bx bool - FSEND ); - rWorksheet->writeEscaped( XclXmlUtils::ToOUString( - rStrm.GetRoot().GetCompileFormulaContext(), mrScFmlaCell.aPos, mrScFmlaCell.GetCode())); - rWorksheet->endElement( XML_f ); + bool bWriteFormula = true; + bool bTagStarted = false; + ScAddress aScPos( static_cast< SCCOL >( GetXclPos().mnCol ), + static_cast< SCROW >( GetXclPos().mnRow ), rStrm.GetRoot().GetCurrScTab() ); + + switch (mrScFmlaCell.GetMatrixFlag()) + { + case MM_NONE: + break; + case MM_REFERENCE: + bWriteFormula = false; + break; + case MM_FORMULA: + case MM_FAKE: + { + // origin of the matrix - find the used matrix range + SCCOL nMatWidth; + SCROW nMatHeight; + mrScFmlaCell.GetMatColsRows( nMatWidth, nMatHeight ); + OSL_ENSURE( nMatWidth && nMatHeight, "XclExpFormulaCell::XclExpFormulaCell - empty matrix" ); + ScRange aMatScRange( aScPos ); + ScAddress& rMatEnd = aMatScRange.aEnd; + rMatEnd.IncCol( static_cast< SCsCOL >( nMatWidth - 1 ) ); + rMatEnd.IncRow( static_cast< SCsROW >( nMatHeight - 1 ) ); + // reduce to valid range (range keeps valid, because start position IS valid + rStrm.GetRoot().GetAddressConverter().ValidateRange( aMatScRange, true ); + + OStringBuffer sFmlaCellRange; + if (ValidRange(aMatScRange)) + { + // calculate the cell range. + sFmlaCellRange.append( XclXmlUtils::ToOString( + rStrm.GetRoot().GetStringBuf(), aMatScRange.aStart ).getStr()); + sFmlaCellRange.append(":"); + sFmlaCellRange.append( XclXmlUtils::ToOString( + rStrm.GetRoot().GetStringBuf(), aMatScRange.aEnd ).getStr()); + } + + if ( aMatScRange.aStart.Col() == GetXclPos().mnCol && + aMatScRange.aStart.Row() == static_cast(GetXclPos().mnRow)) + { + rWorksheet->startElement( XML_f, + XML_aca, XclXmlUtils::ToPsz( (mxTokArr && mxTokArr->IsVolatile()) || + (mxAddRec && mxAddRec->IsVolatile())), + XML_t, mxAddRec ? "array" : NULL, + XML_ref, !sFmlaCellRange.isEmpty()? sFmlaCellRange.getStr() : NULL, + // OOXTODO: XML_dt2D, bool + // OOXTODO: XML_dtr, bool + // OOXTODO: XML_del1, bool + // OOXTODO: XML_del2, bool + // OOXTODO: XML_r1, ST_CellRef + // OOXTODO: XML_r2, ST_CellRef + // OOXTODO: XML_ca, bool + // OOXTODO: XML_si, uint + // OOXTODO: XML_bx bool + FSEND ); + bTagStarted = true; + } + } + break; + } + + if (bWriteFormula) + { + if (!bTagStarted) + { + rWorksheet->startElement( XML_f, + XML_aca, XclXmlUtils::ToPsz( (mxTokArr && mxTokArr->IsVolatile()) || + (mxAddRec && mxAddRec->IsVolatile()) ), + FSEND ); + } + rWorksheet->writeEscaped( XclXmlUtils::ToOUString( + rStrm.GetRoot().GetCompileFormulaContext(), mrScFmlaCell.aPos, mrScFmlaCell.GetCode())); + rWorksheet->endElement( XML_f ); + } + if( strcmp( sType, "inlineStr" ) == 0 ) { rWorksheet->startElement( XML_is, FSEND ); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xicontent.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xicontent.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xicontent.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xicontent.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -75,10 +75,15 @@ void XclImpSst::ReadSst( XclImpStream& rStrm ) { rStrm.Ignore( 4 ); - sal_uInt32 nStrCount(0); - nStrCount = rStrm.ReaduInt32(); + sal_uInt32 nStrCount = rStrm.ReaduInt32(); + auto nBytesAvailable = rStrm.GetRecLeft(); + if (nStrCount > nBytesAvailable) + { + SAL_WARN("sc.filter", "xls claimed to have " << nStrCount << " strings, but only " << nBytesAvailable << " bytes available, truncating"); + nStrCount = nBytesAvailable; + } maStrings.clear(); - maStrings.reserve( static_cast< size_t >( nStrCount ) ); + maStrings.reserve(nStrCount); while( (nStrCount > 0) && rStrm.IsValid() ) { XclImpString aString; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xilink.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xilink.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xilink.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xilink.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -703,7 +703,11 @@ const XclImpExtName* XclImpSupbook::GetExternName( sal_uInt16 nXclIndex ) const { - OSL_ENSURE( nXclIndex > 0, "XclImpSupbook::GetExternName - index must be >0" ); + if (nXclIndex == 0) + { + SAL_WARN("sc", "XclImpSupbook::GetExternName - index must be >0"); + return NULL; + } if (meType == EXC_SBTYPE_SELF || nXclIndex > maExtNameList.size()) return NULL; return &maExtNameList[nXclIndex-1]; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xipivot.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xipivot.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/filter/excel/xipivot.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xipivot.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1031,13 +1031,19 @@ XclPTDataFieldInfoList::const_iterator aIt = maDataInfoList.begin(), aEnd = maDataInfoList.end(); - ScDPSaveDimension& rSaveDim = *rSaveData.GetNewDimensionByName(aFieldName); - ConvertDataField( rSaveDim, *aIt ); + ScDPSaveDimension* pSaveDim = rSaveData.GetNewDimensionByName(aFieldName); + if (!pSaveDim) + { + SAL_WARN("sc.filter","XclImpPTField::ConvertDataField - field name not found: " << aFieldName); + return; + } + + ConvertDataField( *pSaveDim, *aIt ); // multiple data fields -> clone dimension for( ++aIt; aIt != aEnd; ++aIt ) { - ScDPSaveDimension& rDupDim = rSaveData.DuplicateDimension( rSaveDim ); + ScDPSaveDimension& rDupDim = rSaveData.DuplicateDimension( *pSaveDim ); ConvertDataFieldInfo( rDupDim, *aIt ); } } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/condformat/colorformat.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/condformat/colorformat.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/condformat/colorformat.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/condformat/colorformat.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -66,6 +66,16 @@ aEdit.Disable(); } +void SelectColor(const Color& aColor, const OUString & aCustomName, ColorListBox& rLstBox) +{ + rLstBox.SelectEntry( aColor ); + if ( rLstBox.GetSelectEntryColor() != aColor ) + { + rLstBox.InsertEntry( aColor, aCustomName ); + rLstBox.SelectEntry( aColor ); + } +} + } ScDataBarSettingsDlg::ScDataBarSettingsDlg(vcl::Window* pWindow, const ScDataBarFormatData& rData, ScDocument* pDoc, const ScAddress& rPos): @@ -90,13 +100,14 @@ get( mpCbOnlyBar, "only_bar"); maStrWarnSameValue = get("str_same_value")->GetText(); + maCustomColor = get("custom_color")->GetText(); Init(); - mpLbPos->SelectEntry( rData.maPositiveColor ); + ::SelectColor( rData.maPositiveColor, maCustomColor, *mpLbPos); mpLbFillType->SelectEntryPos( rData.mbGradient ? 1 : 0 ); if(rData.mpNegativeColor) - mpLbNeg->SelectEntry( *rData.mpNegativeColor ); + ::SelectColor( *rData.mpNegativeColor, maCustomColor, *mpLbNeg ); switch (rData.meAxisPosition) { diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/docshell/externalrefmgr.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/docshell/externalrefmgr.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/docshell/externalrefmgr.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/docshell/externalrefmgr.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -55,6 +55,7 @@ #include "scmatrix.hxx" #include #include +#include #include #include @@ -2043,7 +2044,10 @@ pVShell->PaintGrid(); } -void ScExternalRefManager::insertRefCell(RefCellMap::iterator& itr, ScFormulaCell* pCell) +namespace { + +void insertRefCellByIterator( + ScExternalRefManager::RefCellMap::iterator& itr, ScFormulaCell* pCell) { if (pCell) { @@ -2052,6 +2056,8 @@ } } +} + void ScExternalRefManager::insertRefCell(sal_uInt16 nFileId, const ScAddress& rCell) { RefCellMap::iterator itr = maRefCells.find(nFileId); @@ -2067,7 +2073,7 @@ itr = r.first; } - insertRefCell(itr, mpDoc->GetFormulaCell(rCell)); + insertRefCellByIterator(itr, mpDoc->GetFormulaCell(rCell)); } void ScExternalRefManager::insertRefCellFromTemplate( ScFormulaCell* pTemplateCell, ScFormulaCell* pCell ) @@ -2078,7 +2084,7 @@ for (RefCellMap::iterator itr = maRefCells.begin(); itr != maRefCells.end(); ++itr) { if (itr->second.find(pTemplateCell) != itr->second.end()) - insertRefCell(itr, pCell); + insertRefCellByIterator(itr, pCell); } } @@ -2392,6 +2398,21 @@ // make medium hidden to prevent assertion from progress bar pSet->Put( SfxBoolItem(SID_HIDDEN, true) ); + // If the current document is allowed to execute macros then the referenced + // document may execute macros according to the security configuration. + SfxObjectShell* pShell = mpDoc->GetDocumentShell(); + if (pShell) + { + SfxMedium* pMedium = pShell->GetMedium(); + if (pMedium) + { + const SfxPoolItem* pItem; + if (pMedium->GetItemSet()->GetItemState( SID_MACROEXECMODE, false, &pItem ) == SfxItemState::SET && + static_cast(pItem)->GetValue() != css::document::MacroExecMode::NEVER_EXECUTE) + pSet->Put( SfxUInt16Item( SID_MACROEXECMODE, css::document::MacroExecMode::USE_CONFIG)); + } + } + unique_ptr pMedium(new SfxMedium(aFile, STREAM_STD_READ, pFilter, pSet)); if (pMedium->GetError() != ERRCODE_NONE) return NULL; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/inc/colorformat.hxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/inc/colorformat.hxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/inc/colorformat.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/inc/colorformat.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -43,6 +43,7 @@ VclPtr mpCbOnlyBar; OUString maStrWarnSameValue; + OUString maCustomColor; SvNumberFormatter* mpNumberFormatter; ScDocument* mpDoc; diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -97,6 +97,7 @@ get(mpEmptyAsZero,"checkEmptyAsZero"); mpEmptyAsZero->Check(rConfig.mbEmptyStringAsZero); mpEmptyAsZero->SetClickHdl(LINK(this, ScCalcOptionsDialog, AsZeroModifiedHdl)); + CoupleEmptyAsZeroToStringConversion(); get(mpSyntax,"comboSyntaxRef"); mpSyntax->SelectEntryPos( toSelectedItem(rConfig.meStringRefAddressSyntax) ); @@ -194,35 +195,41 @@ #endif } +void ScCalcOptionsDialog::CoupleEmptyAsZeroToStringConversion() +{ + switch (maConfig.meStringConversion) + { + case ScCalcConfig::StringConversion::ILLEGAL: + maConfig.mbEmptyStringAsZero = false; + mpEmptyAsZero->Check(false); + mpEmptyAsZero->Enable(false); + break; + case ScCalcConfig::StringConversion::ZERO: + maConfig.mbEmptyStringAsZero = true; + mpEmptyAsZero->Check(); + mpEmptyAsZero->Enable(false); + break; + case ScCalcConfig::StringConversion::UNAMBIGUOUS: + case ScCalcConfig::StringConversion::LOCALE: + // Reset to the value the user selected before. + maConfig.mbEmptyStringAsZero = mbSelectedEmptyStringAsZero; + mpEmptyAsZero->Enable(true); + mpEmptyAsZero->Check( mbSelectedEmptyStringAsZero); + break; + } +} + IMPL_LINK(ScCalcOptionsDialog, AsZeroModifiedHdl, CheckBox*, pCheckBox ) { - maConfig.mbEmptyStringAsZero = pCheckBox->IsChecked(); + maConfig.mbEmptyStringAsZero = mbSelectedEmptyStringAsZero = pCheckBox->IsChecked(); return 0; } IMPL_LINK(ScCalcOptionsDialog, ConversionModifiedHdl, ListBox*, pConv ) { - maConfig.meStringConversion = (ScCalcConfig::StringConversion)pConv->GetSelectEntryPos(); - switch (maConfig.meStringConversion) - { - case ScCalcConfig::StringConversion::ILLEGAL: - maConfig.mbEmptyStringAsZero = false; - mpEmptyAsZero->Check(false); - mpEmptyAsZero->Enable(false); - break; - case ScCalcConfig::StringConversion::ZERO: - maConfig.mbEmptyStringAsZero = true; - mpEmptyAsZero->Check(true); - mpEmptyAsZero->Enable(false); - break; - case ScCalcConfig::StringConversion::UNAMBIGUOUS: - case ScCalcConfig::StringConversion::LOCALE: - // Reset to the value the user selected before. - maConfig.mbEmptyStringAsZero = mbSelectedEmptyStringAsZero; - mpEmptyAsZero->Enable(true); - break; - } + maConfig.meStringConversion = (ScCalcConfig::StringConversion)pConv->GetSelectEntryPos(); + CoupleEmptyAsZeroToStringConversion(); return 0; } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/optdlg/calcoptionsdlg.hxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/optdlg/calcoptionsdlg.hxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/optdlg/calcoptionsdlg.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/optdlg/calcoptionsdlg.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -54,6 +54,7 @@ private: void OpenCLAutomaticSelectionChanged(); void SelectedDeviceChanged(); + void CoupleEmptyAsZeroToStringConversion(); SvTreeListEntry *createItem(const OUString &rCaption, const OUString& sValue) const; void setValueAt(size_t nPos, const OUString &rString); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/vba/vbaeventshelper.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/vba/vbaeventshelper.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/vba/vbaeventshelper.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/vba/vbaeventshelper.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -169,7 +169,8 @@ uno::Reference< frame::XModel > mxModel; ScDocShell* mpDocShell; WindowControllerMap maControllers; /// Maps VCL top windows to their controllers. - VclPtr mpActiveWindow; /// Currently activated window, to prevent multiple (de)activation. + std::multiset< VclPtr > m_PostedWindows; /// Keeps processWindowResizeEvent windows from being deleted between postWindowResizeEvent and processWindowResizeEvent + VclPtr mpActiveWindow; /// Currently activated window, to prevent multiple (de)activation. bool mbWindowResized; /// True = window resize system event processed. bool mbBorderChanged; /// True = borders changed system event processed. bool mbDisposed; @@ -219,7 +220,9 @@ try { xControllerBorder->addBorderResizeListener( this ); } catch( uno::Exception& ) {} if( vcl::Window* pWindow = VCLUnoHelper::GetWindow( xWindow ) ) + { maControllers[ pWindow ] = rxController; + } } void ScVbaEventListener::stopControllerListening( const uno::Reference< frame::XController >& rxController ) @@ -468,6 +471,7 @@ { mbWindowResized = mbBorderChanged = false; acquire(); // ensure we don't get deleted before the timer fires + m_PostedWindows.insert(pWindow); Application::PostUserEvent( LINK( this, ScVbaEventListener, processWindowResizeEvent ), pWindow ); } } @@ -484,7 +488,7 @@ This is handled via the disposing() function which removes the window pointer from the member maControllers. Thus, checking whether maControllers contains pWindow ensures that the window is still alive. */ - if( !mbDisposed && pWindow && (maControllers.count( pWindow ) > 0) ) + if( !mbDisposed && pWindow && !pWindow->IsDisposed() && (maControllers.count(pWindow) > 0) ) { // do not fire event unless all mouse buttons have been released vcl::Window::PointerState aPointerState = pWindow->GetPointerState(); @@ -500,6 +504,14 @@ } } } + { + // note: there may be multiple processWindowResizeEvent outstanding + // for pWindow, so it may have been added to m_PostedWindows multiple + // times - so this must delete exactly one of these elements! + auto const iter(m_PostedWindows.find(pWindow)); + assert(iter != m_PostedWindows.end()); + m_PostedWindows.erase(iter); + } release(); return 0; } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/cellsh2.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/cellsh2.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/cellsh2.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/cellsh2.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -979,6 +979,7 @@ aImport.SetExtOptions( aOptions ); aImport.SetApi( false ); aImport.SetImportBroadcast( true ); + aImport.SetOverwriting( true ); aStream.Seek( 0 ); aImport.ImportStream( aStream, OUString(), SotClipboardFormatId::STRING ); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/output2.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/output2.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/output2.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/output2.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -509,6 +509,9 @@ nChar = aString[ nPos + 1 ]; // delete placeholder and char to repeat aString = aString.replaceAt( nPos, 2, "" ); + // Do not cache/reuse a repeat-filled string, column widths + // or fonts or sizes may differ. + maLastCell.clear(); } } else diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/tabcont.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/tabcont.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/tabcont.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/tabcont.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -38,7 +38,7 @@ // STATIC DATA ----------------------------------------------------------- ScTabControl::ScTabControl( vcl::Window* pParent, ScViewData* pData ) - : TabBar(pParent, WB_3DLOOK | WB_MINSCROLL | WB_RANGESELECT | WB_MULTISELECT | WB_DRAG) + : TabBar(pParent, WB_3DLOOK | WB_MINSCROLL | WB_SCROLL | WB_RANGESELECT | WB_MULTISELECT | WB_DRAG) , DropTargetHelper(this) , DragSourceHelper(this) , pViewData(pData) @@ -79,7 +79,7 @@ EnableEditMode(); UpdateInputContext(); - SetScrollAlwaysEnabled(true); + SetScrollAlwaysEnabled(false); SetScrollAreaContextHdl( LINK( this, ScTabControl, ShowPageList ) ); } diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/tabview3.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/tabview3.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/tabview3.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/tabview3.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -662,7 +662,7 @@ void ScTabView::RemoveHintWindow() { - mpInputHintWindow.reset(); + mpInputHintWindow.disposeAndClear(); } // find window that should not be over the cursor diff -Nru libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/viewfun4.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/viewfun4.cxx --- libreoffice-l10n-5.0.2~rc2/sc/source/ui/view/viewfun4.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/viewfun4.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -100,7 +100,7 @@ if (pActWin) { pEngine->SetPaperSize(Size(100000,100000)); - VclPtrInstance< vcl::Window > aWin( pActWin ); + ScopedVclPtrInstance< vcl::Window > aWin( pActWin ); EditView aEditView( pEngine.get(), aWin.get() ); aEditView.SetOutputArea(Rectangle(0,0,100000,100000)); diff -Nru libreoffice-l10n-5.0.2~rc2/sc/uiconfig/scalc/ui/databaroptions.ui libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/databaroptions.ui --- libreoffice-l10n-5.0.2~rc2/sc/uiconfig/scalc/ui/databaroptions.ui 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/databaroptions.ui 2015-10-24 15:21:49.000000000 +0000 @@ -523,6 +523,17 @@ 5 + + + False + Custom + + + False + True + 6 + + False diff -Nru libreoffice-l10n-5.0.2~rc2/sc/uiconfig/scalc/ui/optcalculatepage.ui libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/optcalculatepage.ui --- libreoffice-l10n-5.0.2~rc2/sc/uiconfig/scalc/ui/optcalculatepage.ui 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/optcalculatepage.ui 2015-10-24 15:21:49.000000000 +0000 @@ -5,7 +5,7 @@ 1 - 1000 + 32767 100 1 10 diff -Nru libreoffice-l10n-5.0.2~rc2/sc/uiconfig/scalc/ui/protectsheetdlg.ui libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/protectsheetdlg.ui --- libreoffice-l10n-5.0.2~rc2/sc/uiconfig/scalc/ui/protectsheetdlg.ui 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/protectsheetdlg.ui 2015-10-24 15:21:49.000000000 +0000 @@ -180,7 +180,7 @@ - + True False True Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sd/qa/unit/data/odp/bulletCharAndFont.odp and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/odp/bulletCharAndFont.odp differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sd/qa/unit/data/ppt/pass/hang-22.ppt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/ppt/pass/hang-22.ppt differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sd/qa/unit/data/pptx/hyperlinktest.pptx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/pptx/hyperlinktest.pptx differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sd/qa/unit/data/pptx/tdf93097.pptx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/pptx/tdf93097.pptx differ diff -Nru libreoffice-l10n-5.0.2~rc2/sd/qa/unit/export-tests.cxx libreoffice-l10n-5.0.3~rc2/sd/qa/unit/export-tests.cxx --- libreoffice-l10n-5.0.2~rc2/sd/qa/unit/export-tests.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/qa/unit/export-tests.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -56,10 +56,12 @@ #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -98,8 +100,10 @@ void testLineStyle(); void testCellLeftAndRightMargin(); void testRightToLeftParaghraph(); + void testTextboxWithHyperlink(); void testTableCellBorder(); void testBulletColor(); + void testBulletCharAndFont(); void testBulletMarginAndIndentation(); void testParaMarginAndindentation(); @@ -132,8 +136,10 @@ CPPUNIT_TEST(testLineStyle); CPPUNIT_TEST(testCellLeftAndRightMargin); CPPUNIT_TEST(testRightToLeftParaghraph); + CPPUNIT_TEST(testTextboxWithHyperlink); CPPUNIT_TEST(testTableCellBorder); CPPUNIT_TEST(testBulletColor); + CPPUNIT_TEST(testBulletCharAndFont); CPPUNIT_TEST(testBulletMarginAndIndentation); CPPUNIT_TEST(testParaMarginAndindentation); @@ -911,6 +917,49 @@ xDocShRef->DoClose(); } +void SdExportTest::testTextboxWithHyperlink() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/pptx/hyperlinktest.pptx"), PPTX); + + xDocShRef = saveAndReload( xDocShRef, PPTX ); + + uno::Reference< drawing::XDrawPagesSupplier > xDoc( + xDocShRef->GetDoc()->getUnoModel(), uno::UNO_QUERY_THROW ); + + uno::Reference< drawing::XDrawPage > xPage( + xDoc->getDrawPages()->getByIndex(0), uno::UNO_QUERY_THROW ); + + uno::Reference< beans::XPropertySet > xShape( + xPage->getByIndex(0), uno::UNO_QUERY ); + CPPUNIT_ASSERT_MESSAGE( "no shape", xShape.is() ); + + // Get first paragraph + uno::Reference xText = uno::Reference(xShape, uno::UNO_QUERY)->getText(); + CPPUNIT_ASSERT_MESSAGE( "not a text shape", xText.is() ); + uno::Reference paraEnumAccess; + paraEnumAccess.set(xText, uno::UNO_QUERY); + uno::Reference paraEnum = paraEnumAccess->createEnumeration(); + uno::Reference const xParagraph(paraEnum->nextElement(), + uno::UNO_QUERY_THROW); + + // first chunk of text + uno::Reference xRunEnumAccess(xParagraph, uno::UNO_QUERY); + uno::Reference xRunEnum = xRunEnumAccess->createEnumeration(); + uno::Reference xRun(xRunEnum->nextElement(), uno::UNO_QUERY); + uno::Reference< beans::XPropertySet > xPropSet( xRun, uno::UNO_QUERY_THROW ); + + uno::Reference xField; + xPropSet->getPropertyValue("TextField") >>= xField; + CPPUNIT_ASSERT_MESSAGE("Where is the text field?", xField.is() ); + + xPropSet.set(xField, uno::UNO_QUERY); + OUString aURL; + xPropSet->getPropertyValue("URL") >>= aURL; + CPPUNIT_ASSERT_EQUAL_MESSAGE("URLs don't match", OUString("http://www.xkcd.com/"), aURL); + + xDocShRef->DoClose(); +} + void SdExportTest::testBulletColor() { ::sd::DrawDocShellRef xDocShRef = loadURL( getURLFromSrc("/sd/qa/unit/data/pptx/bulletColor.pptx"), PPTX ); @@ -937,6 +986,38 @@ CPPUNIT_ASSERT_EQUAL_MESSAGE( "Bullet's color is wrong!", sal_uInt32(0xff0000),pNumFmt->GetNumRule()->GetLevel(0).GetBulletColor().GetColor()); } +void SdExportTest::testBulletCharAndFont() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL( getURLFromSrc("/sd/qa/unit/data/odp/bulletCharAndFont.odp"), ODP); + xDocShRef = saveAndReload( xDocShRef, PPTX ); + uno::Reference< drawing::XDrawPagesSupplier > xDoc( xDocShRef->GetDoc()->getUnoModel(), uno::UNO_QUERY_THROW ); + uno::Reference< drawing::XDrawPage > xPage( xDoc->getDrawPages()->getByIndex(0), uno::UNO_QUERY_THROW ); + uno::Reference< drawing::XShape > xShape(xPage->getByIndex(0), uno::UNO_QUERY); + uno::Reference xText = uno::Reference(xShape, uno::UNO_QUERY_THROW)->getText(); + uno::Reference paraEnumAccess; + paraEnumAccess.set(xText, uno::UNO_QUERY); + uno::Reference paraEnum = paraEnumAccess->createEnumeration(); + uno::Reference const xParagraph(paraEnum->nextElement(), uno::UNO_QUERY_THROW); + uno::Reference< beans::XPropertySet > xPropSet( xParagraph, uno::UNO_QUERY_THROW ); + uno::Reference xLevels(xPropSet->getPropertyValue("NumberingRules"), uno::UNO_QUERY); + uno::Sequence aProps; + xLevels->getByIndex(0) >>= aProps; // 1st level + OUString sBulletChar(sal_Unicode(0xf06c)); + for (int i = 0; i < aProps.getLength(); ++i) + { + const beans::PropertyValue& rProp = aProps[i]; + if (rProp.Name == "BulletChar") + CPPUNIT_ASSERT_EQUAL_MESSAGE( "BulletChar incorrect.", sBulletChar ,rProp.Value.get()); + if (rProp.Name == "BulletFont") + { + awt::FontDescriptor aFontDescriptor; + rProp.Value >>= aFontDescriptor; + CPPUNIT_ASSERT_EQUAL_MESSAGE( "BulletFont incorrect.", OUString("Wingdings"),aFontDescriptor.Name); + } + } + xDocShRef->DoClose(); +} + #if !defined WNT void SdExportTest::testBnc822341() diff -Nru libreoffice-l10n-5.0.2~rc2/sd/qa/unit/import-tests.cxx libreoffice-l10n-5.0.3~rc2/sd/qa/unit/import-tests.cxx --- libreoffice-l10n-5.0.2~rc2/sd/qa/unit/import-tests.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/qa/unit/import-tests.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -105,6 +105,7 @@ void testBnc910045(); void testRowHeight(); void testTdf93830(); + void testTdf93097(); CPPUNIT_TEST_SUITE(SdImportTest); @@ -145,6 +146,7 @@ CPPUNIT_TEST(testBnc910045); CPPUNIT_TEST(testRowHeight); CPPUNIT_TEST(testTdf93830); + CPPUNIT_TEST(testTdf93097); CPPUNIT_TEST_SUITE_END(); }; @@ -1225,6 +1227,16 @@ xDocShRef->DoClose(); } +void SdImportTest::testTdf93097() +{ + // Throwing metadata import aborted the filter, check that metadata is now imported. + sd::DrawDocShellRef xDocShRef = loadURL(getURLFromSrc("/sd/qa/unit/data/pptx/tdf93097.pptx"), PPTX); + uno::Reference xDocumentPropertiesSupplier(xDocShRef->GetModel(), uno::UNO_QUERY); + uno::Reference xDocumentProperties = xDocumentPropertiesSupplier->getDocumentProperties(); + CPPUNIT_ASSERT_EQUAL(OUString("ss"), xDocumentProperties->getTitle()); + xDocShRef->DoClose(); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.0.2~rc2/sd/source/core/stlsheet.cxx libreoffice-l10n-5.0.3~rc2/sd/source/core/stlsheet.cxx --- libreoffice-l10n-5.0.2~rc2/sd/source/core/stlsheet.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/source/core/stlsheet.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -245,6 +245,7 @@ 0, 0 }; pSet = new SfxItemSet(GetPool().GetPool(), nWhichPairTable); + bMySet = true; } return *pSet; @@ -270,6 +271,7 @@ 0, 0 }; pSet = new SfxItemSet(GetPool().GetPool(), nWhichPairTable); + bMySet = true; } return *pSet; @@ -309,6 +311,7 @@ 0, 0 }; pSet = new SfxItemSet(GetPool().GetPool(), nWhichPairTable); + bMySet = true; } return(*pSet); diff -Nru libreoffice-l10n-5.0.2~rc2/sd/source/filter/ppt/pptin.cxx libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/pptin.cxx --- libreoffice-l10n-5.0.2~rc2/sd/source/filter/ppt/pptin.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/pptin.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -367,7 +367,8 @@ if ( pSection ) { Dictionary aDict; - if ( pSection->GetDictionary( aDict ) ) + pSection->GetDictionary(aDict); + if (!aDict.empty()) { Dictionary::const_iterator iter = aDict.find( OUString("_PID_HLINKS") ); diff -Nru libreoffice-l10n-5.0.2~rc2/sd/source/filter/ppt/propread.cxx libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/propread.cxx --- libreoffice-l10n-5.0.2~rc2/sd/source/filter/ppt/propread.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/propread.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -269,10 +269,8 @@ maEntries.push_back( new PropEntry( nId, pBuf, nBufSize, mnTextEnc ) ); } -bool Section::GetDictionary( Dictionary& rDict ) +void Section::GetDictionary(Dictionary& rDict) { - bool bRetValue = false; - boost::ptr_vector::iterator iter; for (iter = maEntries.begin(); iter != maEntries.end(); ++iter) { @@ -280,48 +278,50 @@ break; } - if ( iter != maEntries.end() ) + if (iter == maEntries.end()) + return; + + SvMemoryStream aStream( iter->mpBuf, iter->mnSize, StreamMode::READ ); + aStream.Seek( STREAM_SEEK_TO_BEGIN ); + sal_uInt32 nDictCount(0); + aStream.ReadUInt32( nDictCount ); + for (sal_uInt32 i = 0; i < nDictCount; ++i) { - sal_uInt32 nDictCount, nId, nSize, nPos; - SvMemoryStream aStream( iter->mpBuf, iter->mnSize, StreamMode::READ ); - aStream.Seek( STREAM_SEEK_TO_BEGIN ); - aStream.ReadUInt32( nDictCount ); - for ( sal_uInt32 i = 0; i < nDictCount; i++ ) + sal_uInt32 nId(0), nSize(0); + aStream.ReadUInt32(nId).ReadUInt32(nSize); + if (!aStream.good() || nSize > aStream.remainingSize()) + break; + if (mnTextEnc == RTL_TEXTENCODING_UCS2) + nSize >>= 1; + if (!nSize) + continue; + OUString aString; + try { - aStream.ReadUInt32( nId ).ReadUInt32( nSize ); - if ( nSize ) + if ( mnTextEnc == RTL_TEXTENCODING_UCS2 ) + { + sal_Unicode* pWString = new sal_Unicode[nSize]; + for (sal_uInt32 j = 0; j < nSize; ++j) + aStream.ReadUInt16(pWString[j]); + aString = OUString(pWString, lcl_getMaxSafeStrLen(nSize)); + delete[] pWString; + } + else { - OUString aString; - nPos = aStream.Tell(); - try - { - sal_Char* pString = new sal_Char[ nSize ]; - aStream.Read( pString, nSize ); - if ( mnTextEnc == RTL_TEXTENCODING_UCS2 ) - { - nSize >>= 1; - aStream.Seek( nPos ); - sal_Unicode* pWString = reinterpret_cast(pString); - for ( i = 0; i < nSize; i++ ) - aStream.ReadUInt16( pWString[ i ] ); - aString = OUString(pWString, lcl_getMaxSafeStrLen(nSize)); - } - else - aString = OUString(pString, lcl_getMaxSafeStrLen(nSize), mnTextEnc); - delete[] pString; - } - catch( const std::bad_alloc& ) - { - OSL_FAIL( "sd Section::GetDictionary bad alloc" ); - } - if ( aString.isEmpty() ) - break; - rDict.insert( std::make_pair(aString,nId) ); + sal_Char* pString = new sal_Char[nSize]; + aStream.Read(pString, nSize); + aString = OUString(pString, lcl_getMaxSafeStrLen(nSize), mnTextEnc); + delete[] pString; } - bRetValue = true; } + catch( const std::bad_alloc& ) + { + OSL_FAIL( "sd Section::GetDictionary bad alloc" ); + } + if (aString.isEmpty()) + break; + rDict.insert( std::make_pair(aString,nId) ); } - return bRetValue; } void Section::Read( SotStorageStream *pStrm ) diff -Nru libreoffice-l10n-5.0.2~rc2/sd/source/filter/ppt/propread.hxx libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/propread.hxx --- libreoffice-l10n-5.0.2~rc2/sd/source/filter/ppt/propread.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/propread.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -130,8 +130,8 @@ Section( const Section& rSection ); Section& operator=( const Section& rSection ); - bool GetProperty( sal_uInt32 nId, PropItem& rPropItem ); - bool GetDictionary( Dictionary& rDict ); + bool GetProperty( sal_uInt32 nId, PropItem& rPropItem ); + void GetDictionary( Dictionary& rDict ); const sal_uInt8* GetFMTID() const { return aFMTID; }; void Read( SotStorageStream* pStrm ); }; diff -Nru libreoffice-l10n-5.0.2~rc2/sd/source/ui/func/fusldlg.cxx libreoffice-l10n-5.0.3~rc2/sd/source/ui/func/fusldlg.cxx --- libreoffice-l10n-5.0.2~rc2/sd/source/ui/func/fusldlg.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sd/source/ui/func/fusldlg.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -120,18 +120,23 @@ pDlg->GetAttr( aDlgSet ); - aPage = ITEMVALUE( aDlgSet, ATTR_PRESENT_DIANAME, SfxStringItem ); - if( aPage != rPresentationSettings.maPresPage ) - { - bValuesChanged = true; - rPresentationSettings.maPresPage = aPage; - } - bValue = ITEMVALUE( aDlgSet, ATTR_PRESENT_ALL, SfxBoolItem ); if ( bValue != rPresentationSettings.mbAll ) { bValuesChanged = true; rPresentationSettings.mbAll = bValue; + // remove any previous existing slide + rPresentationSettings.maPresPage = ""; + } + + if (!rPresentationSettings.mbAll) + { + aPage = ITEMVALUE( aDlgSet, ATTR_PRESENT_DIANAME, SfxStringItem ); + if( aPage != rPresentationSettings.maPresPage ) + { + bValuesChanged = true; + rPresentationSettings.maPresPage = aPage; + } } bValue = ITEMVALUE( aDlgSet, ATTR_PRESENT_CUSTOMSHOW, SfxBoolItem ); diff -Nru libreoffice-l10n-5.0.2~rc2/sfx2/uiconfig/ui/newstyle.ui libreoffice-l10n-5.0.3~rc2/sfx2/uiconfig/ui/newstyle.ui --- libreoffice-l10n-5.0.2~rc2/sfx2/uiconfig/ui/newstyle.ui 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sfx2/uiconfig/ui/newstyle.ui 2015-10-24 15:21:49.000000000 +0000 @@ -23,6 +23,7 @@ gtk-ok True + False True True True diff -Nru libreoffice-l10n-5.0.2~rc2/solenv/gbuild/platform/com_GCC_defs.mk libreoffice-l10n-5.0.3~rc2/solenv/gbuild/platform/com_GCC_defs.mk --- libreoffice-l10n-5.0.2~rc2/solenv/gbuild/platform/com_GCC_defs.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/solenv/gbuild/platform/com_GCC_defs.mk 2015-10-24 15:21:49.000000000 +0000 @@ -47,6 +47,8 @@ gb_AFLAGS := $(AFLAGS) gb_COMPILERDEFS := \ + -DBOOST_ERROR_CODE_HEADER_ONLY \ + -DBOOST_SYSTEM_NO_DEPRECATED \ -DCPPU_ENV=$(gb_CPPU_ENV) \ gb_CFLAGS_COMMON := \ diff -Nru libreoffice-l10n-5.0.2~rc2/solenv/gbuild/platform/com_MSC_defs.mk libreoffice-l10n-5.0.3~rc2/solenv/gbuild/platform/com_MSC_defs.mk --- libreoffice-l10n-5.0.2~rc2/solenv/gbuild/platform/com_MSC_defs.mk 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/solenv/gbuild/platform/com_MSC_defs.mk 2015-10-24 15:21:49.000000000 +0000 @@ -44,6 +44,9 @@ # like std::copy, std::transform (when MSVC_USE_DEBUG_RUNTIME is enabled) gb_COMPILERDEFS := \ + -DBOOST_ERROR_CODE_HEADER_ONLY \ + -DBOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE \ + -DBOOST_SYSTEM_NO_DEPRECATED \ -D_CRT_NON_CONFORMING_SWPRINTFS \ -D_CRT_NONSTDC_NO_DEPRECATE \ -D_CRT_SECURE_NO_DEPRECATE \ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/src/451ccf439a36a568653b024534669971-ConvertTextToNumber-1.3.2.oxt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/src/451ccf439a36a568653b024534669971-ConvertTextToNumber-1.3.2.oxt differ diff -Nru libreoffice-l10n-5.0.2~rc2/src/fetch.log libreoffice-l10n-5.0.3~rc2/src/fetch.log --- libreoffice-l10n-5.0.2~rc2/src/fetch.log 2015-09-18 10:47:55.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/src/fetch.log 2015-10-28 22:01:08.000000000 +0000 @@ -1,328 +1,328 @@ -Fri Sep 18 10:40:45 UTC 2015 +Wed Oct 28 21:55:47 UTC 2015 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 360k 3 14273 0 0 111k 0 0:00:03 --:--:-- 0:00:03 110k 100 360k 100 360k 0 0 715k 0 --:--:-- --:--:-- --:--:-- 714k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 360k 23 88325 0 0 283k 0 0:00:01 --:--:-- 0:00:01 282k 100 360k 100 360k 0 0 726k 0 --:--:-- --:--:-- --:--:-- 727k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 83 512k 83 430k 0 0 769k 0 --:--:-- --:--:-- --:--:-- 769k 100 512k 100 512k 0 0 782k 0 --:--:-- --:--:-- --:--:-- 781k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 512k 100 512k 0 0 851k 0 --:--:-- --:--:-- --:--:-- 853k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 1838k 39 731k 0 0 840k 0 0:00:02 --:--:-- 0:00:02 839k 88 1838k 88 1626k 0 0 869k 0 0:00:02 0:00:01 0:00:01 869k 100 1838k 100 1838k 0 0 890k 0 0:00:02 0:00:02 --:--:-- 890k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1838k 0 1203 0 0 9391 0 0:03:20 --:--:-- 0:03:20 9398 65 1838k 65 1210k 0 0 1058k 0 0:00:01 0:00:01 --:--:-- 1058k 100 1838k 100 1838k 0 0 1069k 0 0:00:01 0:00:01 --:--:-- 1068k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 90 721k 90 652k 0 0 845k 0 --:--:-- --:--:-- --:--:-- 845k 100 721k 100 721k 0 0 835k 0 --:--:-- --:--:-- --:--:-- 834k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 25 721k 25 182k 0 0 515k 0 0:00:01 --:--:-- 0:00:01 514k 100 721k 100 721k 0 0 950k 0 --:--:-- --:--:-- --:--:-- 949k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 184k 100 184k 0 0 591k 0 --:--:-- --:--:-- --:--:-- 592k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 184k 100 184k 0 0 481k 0 --:--:-- --:--:-- --:--:-- 483k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 956k 39 379k 0 0 709k 0 0:00:01 --:--:-- 0:00:01 708k 100 956k 100 956k 0 0 839k 0 0:00:01 0:00:01 --:--:-- 840k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 956k 0 1205 0 0 7396 0 0:02:12 --:--:-- 0:02:12 7392 100 956k 100 956k 0 0 975k 0 --:--:-- --:--:-- --:--:-- 974k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 853k 14 124k 0 0 307k 0 0:00:02 --:--:-- 0:00:02 306k 100 853k 100 853k 0 0 643k 0 0:00:01 0:00:01 --:--:-- 643k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 853k 0 1205 0 0 8642 0 0:01:41 --:--:-- 0:01:41 8607 100 853k 100 853k 0 0 999k 0 --:--:-- --:--:-- --:--:-- 998k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 55.4M 1 727k 0 0 720k 0 0:01:18 0:00:01 0:01:17 720k 2 55.4M 2 1644k 0 0 814k 0 0:01:09 0:00:02 0:01:07 814k 4 55.4M 4 2624k 0 0 872k 0 0:01:05 0:00:03 0:01:02 872k 6 55.4M 6 3615k 0 0 897k 0 0:01:03 0:00:04 0:00:59 897k 8 55.4M 8 4568k 0 0 912k 0 0:01:02 0:00:05 0:00:57 914k 9 55.4M 9 5568k 0 0 927k 0 0:01:01 0:00:06 0:00:55 968k 11 55.4M 11 6579k 0 0 939k 0 0:01:00 0:00:07 0:00:53 989k 13 55.4M 13 7625k 0 0 952k 0 0:00:59 0:00:08 0:00:51 1000k 15 55.4M 15 8645k 0 0 959k 0 0:00:59 0:00:09 0:00:50 1009k 17 55.4M 17 9719k 0 0 971k 0 0:00:58 0:00:10 0:00:48 1030k 18 55.4M 18 10.5M 0 0 979k 0 0:00:57 0:00:11 0:00:46 1043k 20 55.4M 20 11.4M 0 0 976k 0 0:00:58 0:00:12 0:00:46 1028k 22 55.4M 22 12.5M 0 0 984k 0 0:00:57 0:00:13 0:00:44 1035k 24 55.4M 24 13.5M 0 0 988k 0 0:00:57 0:00:14 0:00:43 1041k 26 55.4M 26 14.4M 0 0 989k 0 0:00:57 0:00:15 0:00:42 1024k 27 55.4M 27 15.5M 0 0 992k 0 0:00:57 0:00:16 0:00:41 1019k 29 55.4M 29 16.4M 0 0 990k 0 0:00:57 0:00:17 0:00:40 1023k 31 55.4M 31 17.4M 0 0 989k 0 0:00:57 0:00:18 0:00:39 1003k 33 55.4M 33 18.3M 0 0 989k 0 0:00:57 0:00:19 0:00:38 991k 34 55.4M 34 19.3M 0 0 988k 0 0:00:57 0:00:20 0:00:37 985k 36 55.4M 36 20.1M 0 0 983k 0 0:00:57 0:00:21 0:00:36 955k 37 55.4M 37 21.0M 0 0 979k 0 0:00:57 0:00:22 0:00:35 943k 39 55.4M 39 21.8M 0 0 970k 0 0:00:58 0:00:23 0:00:35 903k 40 55.4M 40 22.6M 0 0 964k 0 0:00:58 0:00:24 0:00:34 870k 42 55.4M 42 23.4M 0 0 960k 0 0:00:59 0:00:25 0:00:34 848k 43 55.4M 43 24.0M 0 0 948k 0 0:00:59 0:00:26 0:00:33 803k 44 55.4M 44 24.9M 0 0 945k 0 0:01:00 0:00:27 0:00:33 795k 46 55.4M 46 25.7M 0 0 938k 0 0:01:00 0:00:28 0:00:32 790k 47 55.4M 47 26.4M 0 0 933k 0 0:01:00 0:00:29 0:00:31 784k 49 55.4M 49 27.2M 0 0 928k 0 0:01:01 0:00:30 0:00:31 772k 50 55.4M 50 28.0M 0 0 926k 0 0:01:01 0:00:31 0:00:30 809k 52 55.4M 52 28.8M 0 0 924k 0 0:01:01 0:00:32 0:00:29 808k 53 55.4M 53 29.7M 0 0 923k 0 0:01:01 0:00:33 0:00:28 839k 55 55.4M 55 30.7M 0 0 924k 0 0:01:01 0:00:34 0:00:27 870k 57 55.4M 57 31.6M 0 0 926k 0 0:01:01 0:00:35 0:00:26 909k 58 55.4M 58 32.6M 0 0 929k 0 0:01:01 0:00:36 0:00:25 946k 60 55.4M 60 33.6M 0 0 931k 0 0:01:00 0:00:37 0:00:23 978k 62 55.4M 62 34.6M 0 0 932k 0 0:01:00 0:00:38 0:00:22 991k 64 55.4M 64 35.5M 0 0 933k 0 0:01:00 0:00:39 0:00:21 998k 66 55.4M 66 36.6M 0 0 937k 0 0:01:00 0:00:40 0:00:20 1013k 67 55.4M 67 37.4M 0 0 934k 0 0:01:00 0:00:41 0:00:19 975k 69 55.4M 69 38.4M 0 0 936k 0 0:01:00 0:00:42 0:00:18 970k 70 55.4M 70 39.2M 0 0 935k 0 0:01:00 0:00:43 0:00:17 954k 72 55.4M 72 40.0M 0 0 932k 0 0:01:00 0:00:44 0:00:16 917k 73 55.4M 73 40.9M 0 0 929k 0 0:01:01 0:00:45 0:00:16 868k 74 55.4M 74 41.5M 0 0 925k 0 0:01:01 0:00:46 0:00:15 847k 76 55.4M 76 42.5M 0 0 925k 0 0:01:01 0:00:47 0:00:14 840k 78 55.4M 78 43.3M 0 0 925k 0 0:01:01 0:00:48 0:00:13 844k 80 55.4M 80 44.4M 0 0 927k 0 0:01:01 0:00:49 0:00:12 892k 81 55.4M 81 45.4M 0 0 929k 0 0:01:01 0:00:50 0:00:11 935k 83 55.4M 83 46.3M 0 0 931k 0 0:01:00 0:00:51 0:00:09 988k 85 55.4M 85 47.3M 0 0 931k 0 0:01:00 0:00:52 0:00:08 981k 87 55.4M 87 48.2M 0 0 932k 0 0:01:00 0:00:53 0:00:07 997k 88 55.4M 88 49.1M 0 0 932k 0 0:01:00 0:00:54 0:00:06 978k 90 55.4M 90 50.1M 0 0 933k 0 0:01:00 0:00:55 0:00:05 972k 92 55.4M 92 51.1M 0 0 935k 0 0:01:00 0:00:56 0:00:04 977k 94 55.4M 94 52.1M 0 0 937k 0 0:01:00 0:00:57 0:00:03 995k 95 55.4M 95 53.1M 0 0 938k 0 0:01:00 0:00:58 0:00:02 998k 97 55.4M 97 54.2M 0 0 941k 0 0:01:00 0:00:59 0:00:01 1032k 99 55.4M 99 55.2M 0 0 942k 0 0:01:00 0:01:00 --:--:-- 1039k 100 55.4M 100 55.4M 0 0 942k 0 0:01:00 0:01:00 --:--:-- 1038k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 55.4M 0 54925 0 0 244k 0 0:03:52 --:--:-- 0:03:52 243k 1 55.4M 1 1097k 0 0 899k 0 0:01:03 0:00:01 0:01:02 899k 4 55.4M 4 2471k 0 0 1113k 0 0:00:51 0:00:02 0:00:49 1113k 7 55.4M 7 3978k 0 0 1234k 0 0:00:46 0:00:03 0:00:43 1234k 9 55.4M 9 5627k 0 0 1333k 0 0:00:42 0:00:04 0:00:38 1333k 12 55.4M 12 6879k 0 0 1317k 0 0:00:43 0:00:05 0:00:38 1365k 13 55.4M 13 7920k 0 0 1273k 0 0:00:44 0:00:06 0:00:38 1364k 16 55.4M 16 9573k 0 0 1326k 0 0:00:42 0:00:07 0:00:35 1420k 19 55.4M 19 10.8M 0 0 1353k 0 0:00:41 0:00:08 0:00:33 1429k 22 55.4M 22 12.3M 0 0 1369k 0 0:00:41 0:00:09 0:00:32 1399k 24 55.4M 24 13.3M 0 0 1337k 0 0:00:42 0:00:10 0:00:32 1357k 25 55.4M 25 14.3M 0 0 1307k 0 0:00:43 0:00:11 0:00:32 1351k 27 55.4M 27 15.5M 0 0 1300k 0 0:00:43 0:00:12 0:00:31 1263k 29 55.4M 29 16.3M 0 0 1265k 0 0:00:44 0:00:13 0:00:31 1121k 32 55.4M 32 17.8M 0 0 1282k 0 0:00:44 0:00:14 0:00:30 1121k 34 55.4M 34 19.3M 0 0 1304k 0 0:00:43 0:00:15 0:00:28 1238k 37 55.4M 37 20.6M 0 0 1305k 0 0:00:43 0:00:16 0:00:27 1299k 39 55.4M 39 21.9M 0 0 1302k 0 0:00:43 0:00:17 0:00:26 1309k 42 55.4M 42 23.3M 0 0 1313k 0 0:00:43 0:00:18 0:00:25 1442k 44 55.4M 44 24.8M 0 0 1324k 0 0:00:42 0:00:19 0:00:23 1442k 47 55.4M 47 26.2M 0 0 1330k 0 0:00:42 0:00:20 0:00:22 1406k 48 55.4M 48 27.0M 0 0 1306k 0 0:00:43 0:00:21 0:00:22 1311k 51 55.4M 51 28.4M 0 0 1309k 0 0:00:43 0:00:22 0:00:21 1332k 53 55.4M 53 29.8M 0 0 1316k 0 0:00:43 0:00:23 0:00:20 1324k 56 55.4M 56 31.0M 0 0 1313k 0 0:00:43 0:00:24 0:00:19 1273k 57 55.4M 57 32.1M 0 0 1303k 0 0:00:43 0:00:25 0:00:18 1195k 60 55.4M 60 33.2M 0 0 1300k 0 0:00:43 0:00:26 0:00:17 1273k 62 55.4M 62 34.8M 0 0 1311k 0 0:00:43 0:00:27 0:00:16 1318k 65 55.4M 65 36.3M 0 0 1319k 0 0:00:43 0:00:28 0:00:15 1332k 67 55.4M 67 37.3M 0 0 1308k 0 0:00:43 0:00:29 0:00:14 1283k 70 55.4M 70 38.9M 0 0 1319k 0 0:00:43 0:00:30 0:00:13 1398k 73 55.4M 73 40.5M 0 0 1328k 0 0:00:42 0:00:31 0:00:11 1477k 76 55.4M 76 42.1M 0 0 1339k 0 0:00:42 0:00:32 0:00:10 1495k 78 55.4M 78 43.3M 0 0 1335k 0 0:00:42 0:00:33 0:00:09 1425k 80 55.4M 80 44.8M 0 0 1341k 0 0:00:42 0:00:34 0:00:08 1534k 83 55.4M 83 46.2M 0 0 1345k 0 0:00:42 0:00:35 0:00:07 1500k 84 55.4M 84 47.0M 0 0 1329k 0 0:00:42 0:00:36 0:00:06 1335k 85 55.4M 85 47.6M 0 0 1309k 0 0:00:43 0:00:37 0:00:06 1116k 86 55.4M 86 48.1M 0 0 1286k 0 0:00:44 0:00:38 0:00:06 969k 88 55.4M 88 48.9M 0 0 1273k 0 0:00:44 0:00:39 0:00:05 816k 89 55.4M 89 49.5M 0 0 1262k 0 0:00:44 0:00:40 0:00:04 678k 90 55.4M 90 50.2M 0 0 1248k 0 0:00:45 0:00:41 0:00:04 660k 91 55.4M 91 50.8M 0 0 1232k 0 0:00:46 0:00:42 0:00:04 653k 93 55.4M 93 51.7M 0 0 1225k 0 0:00:46 0:00:43 0:00:03 747k 95 55.4M 95 52.7M 0 0 1221k 0 0:00:46 0:00:44 0:00:02 800k 96 55.4M 96 53.4M 0 0 1210k 0 0:00:46 0:00:45 0:00:01 795k 98 55.4M 98 54.3M 0 0 1204k 0 0:00:47 0:00:46 0:00:01 839k 100 55.4M 100 55.4M 0 0 1205k 0 0:00:47 0:00:47 --:--:-- 968k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 1935k 26 511k 0 0 830k 0 0:00:02 --:--:-- 0:00:02 830k 79 1935k 79 1529k 0 0 947k 0 0:00:02 0:00:01 0:00:01 947k 100 1935k 100 1935k 0 0 964k 0 0:00:02 0:00:02 --:--:-- 964k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 47 1935k 47 912k 0 0 1073k 0 0:00:01 --:--:-- 0:00:01 1072k 100 1935k 100 1935k 0 0 1126k 0 0:00:01 0:00:01 --:--:-- 1127k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 22.4M 1 338k 0 0 590k 0 0:00:38 --:--:-- 0:00:38 589k 5 22.4M 5 1322k 0 0 830k 0 0:00:27 0:00:01 0:00:26 830k 9 22.4M 9 2299k 0 0 893k 0 0:00:25 0:00:02 0:00:23 893k 14 22.4M 14 3331k 0 0 932k 0 0:00:24 0:00:03 0:00:21 932k 18 22.4M 18 4310k 0 0 942k 0 0:00:24 0:00:04 0:00:20 942k 23 22.4M 23 5348k 0 0 959k 0 0:00:23 0:00:05 0:00:18 1001k 27 22.4M 27 6313k 0 0 960k 0 0:00:23 0:00:06 0:00:17 1001k 31 22.4M 31 7307k 0 0 964k 0 0:00:23 0:00:07 0:00:16 1001k 35 22.4M 35 8267k 0 0 964k 0 0:00:23 0:00:08 0:00:15 987k 40 22.4M 40 9253k 0 0 966k 0 0:00:23 0:00:09 0:00:14 988k 44 22.4M 44 10.0M 0 0 968k 0 0:00:23 0:00:10 0:00:13 978k 48 22.4M 48 10.9M 0 0 972k 0 0:00:23 0:00:11 0:00:12 988k 53 22.4M 53 11.9M 0 0 974k 0 0:00:23 0:00:12 0:00:11 988k 57 22.4M 57 12.9M 0 0 975k 0 0:00:23 0:00:13 0:00:10 995k 61 22.4M 61 13.8M 0 0 974k 0 0:00:23 0:00:14 0:00:09 989k 65 22.4M 65 14.8M 0 0 974k 0 0:00:23 0:00:15 0:00:08 986k 70 22.4M 70 15.8M 0 0 976k 0 0:00:23 0:00:16 0:00:07 986k 74 22.4M 74 16.7M 0 0 975k 0 0:00:23 0:00:17 0:00:06 978k 78 22.4M 78 17.7M 0 0 976k 0 0:00:23 0:00:18 0:00:05 979k 82 22.4M 82 18.5M 0 0 972k 0 0:00:23 0:00:19 0:00:04 966k 85 22.4M 85 19.2M 0 0 955k 0 0:00:24 0:00:20 0:00:04 896k 86 22.4M 86 19.5M 0 0 924k 0 0:00:24 0:00:21 0:00:03 752k 88 22.4M 88 19.9M 0 0 900k 0 0:00:25 0:00:22 0:00:03 642k 90 22.4M 90 20.3M 0 0 885k 0 0:00:25 0:00:23 0:00:02 544k 91 22.4M 91 20.6M 0 0 853k 0 0:00:26 0:00:24 0:00:02 405k 93 22.4M 93 21.0M 0 0 838k 0 0:00:27 0:00:25 0:00:02 375k 97 22.4M 97 21.8M 0 0 840k 0 0:00:27 0:00:26 0:00:01 472k 100 22.4M 100 22.4M 0 0 841k 0 0:00:27 0:00:27 --:--:-- 553k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 22.4M 0 1201 0 0 5961 0 1:05:52 --:--:-- 1:05:52 5945 4 22.4M 4 945k 0 0 874k 0 0:00:26 0:00:01 0:00:25 873k 10 22.4M 10 2302k 0 0 1106k 0 0:00:20 0:00:02 0:00:18 1105k 15 22.4M 15 3519k 0 0 1141k 0 0:00:20 0:00:03 0:00:17 1141k 21 22.4M 21 4887k 0 0 1197k 0 0:00:19 0:00:04 0:00:15 1197k 28 22.4M 28 6522k 0 0 1283k 0 0:00:17 0:00:05 0:00:12 1336k 35 22.4M 35 8206k 0 0 1349k 0 0:00:17 0:00:06 0:00:11 1452k 42 22.4M 42 9793k 0 0 1383k 0 0:00:16 0:00:07 0:00:09 1498k 47 22.4M 47 10.6M 0 0 1348k 0 0:00:17 0:00:08 0:00:09 1477k 54 22.4M 54 12.3M 0 0 1387k 0 0:00:16 0:00:09 0:00:07 1542k 61 22.4M 61 13.8M 0 0 1411k 0 0:00:16 0:00:10 0:00:06 1541k 68 22.4M 68 15.4M 0 0 1429k 0 0:00:16 0:00:11 0:00:05 1527k 74 22.4M 74 16.7M 0 0 1415k 0 0:00:16 0:00:12 0:00:04 1461k 80 22.4M 80 18.0M 0 0 1413k 0 0:00:16 0:00:13 0:00:03 1517k 87 22.4M 87 19.6M 0 0 1430k 0 0:00:16 0:00:14 0:00:02 1509k 93 22.4M 93 21.0M 0 0 1430k 0 0:00:16 0:00:15 0:00:01 1467k 98 22.4M 98 22.0M 0 0 1406k 0 0:00:16 0:00:16 --:--:-- 1355k 100 22.4M 100 22.4M 0 0 1396k 0 0:00:16 0:00:16 --:--:-- 1345k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 457k 0 1205 0 0 7521 0 0:01:02 --:--:-- 0:01:02 7484 100 457k 100 457k 0 0 591k 0 --:--:-- --:--:-- --:--:-- 591k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 457k 100 457k 0 0 1040k 0 --:--:-- --:--:-- --:--:-- 1041k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 649k 29 192k 0 0 568k 0 0:00:01 --:--:-- 0:00:01 568k 100 649k 100 649k 0 0 744k 0 --:--:-- --:--:-- --:--:-- 743k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 649k 100 649k 0 0 1346k 0 --:--:-- --:--:-- --:--:-- 1349k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 2188k 11 245k 0 0 558k 0 0:00:03 --:--:-- 0:00:03 558k 53 2188k 53 1178k 0 0 808k 0 0:00:02 0:00:01 0:00:01 808k 95 2188k 95 2082k 0 0 847k 0 0:00:02 0:00:02 --:--:-- 847k 100 2188k 100 2188k 0 0 862k 0 0:00:02 0:00:02 --:--:-- 862k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 22 2188k 22 483k 0 0 1048k 0 0:00:02 --:--:-- 0:00:02 1048k 89 2188k 89 1960k 0 0 1346k 0 0:00:01 0:00:01 --:--:-- 1345k 100 2188k 100 2188k 0 0 1375k 0 0:00:01 0:00:01 --:--:-- 1374k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 74 720k 74 534k 0 0 620k 0 0:00:01 --:--:-- 0:00:01 620k 100 720k 100 720k 0 0 660k 0 0:00:01 0:00:01 --:--:-- 661k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 720k 100 720k 0 0 1099k 0 --:--:-- --:--:-- --:--:-- 1100k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 9.8M 3 348k 0 0 469k 0 0:00:21 --:--:-- 0:00:21 469k 9 9.8M 9 993k 0 0 570k 0 0:00:17 0:00:01 0:00:16 570k 17 9.8M 17 1726k 0 0 629k 0 0:00:16 0:00:02 0:00:14 629k 24 9.8M 24 2502k 0 0 667k 0 0:00:15 0:00:03 0:00:12 667k 32 9.8M 32 3319k 0 0 699k 0 0:00:14 0:00:04 0:00:10 699k 41 9.8M 41 4188k 0 0 729k 0 0:00:13 0:00:05 0:00:08 767k 50 9.8M 50 5121k 0 0 753k 0 0:00:13 0:00:06 0:00:07 817k 58 9.8M 58 5865k 0 0 757k 0 0:00:13 0:00:07 0:00:06 827k 67 9.8M 67 6864k 0 0 785k 0 0:00:12 0:00:08 0:00:04 873k 77 9.8M 77 7822k 0 0 802k 0 0:00:12 0:00:09 0:00:03 901k 87 9.8M 87 8845k 0 0 823k 0 0:00:12 0:00:10 0:00:02 931k 96 9.8M 96 9789k 0 0 831k 0 0:00:12 0:00:11 0:00:01 936k 100 9.8M 100 9.8M 0 0 825k 0 0:00:12 0:00:12 --:--:-- 941k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 9.8M 6 650k 0 0 580k 0 0:00:17 0:00:01 0:00:16 580k 19 9.8M 19 2003k 0 0 945k 0 0:00:10 0:00:02 0:00:08 945k 35 9.8M 35 3536k 0 0 1131k 0 0:00:08 0:00:03 0:00:05 1131k 44 9.8M 44 4484k 0 0 1088k 0 0:00:09 0:00:04 0:00:05 1088k 58 9.8M 58 5895k 0 0 1151k 0 0:00:08 0:00:05 0:00:03 1201k 73 9.8M 73 7452k 0 0 1218k 0 0:00:08 0:00:06 0:00:02 1361k 90 9.8M 90 9096k 0 0 1277k 0 0:00:07 0:00:07 --:--:-- 1418k 100 9.8M 100 9.8M 0 0 1280k 0 0:00:07 0:00:07 --:--:-- 1378k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 542k 7 40409 0 0 92014 0 0:00:06 --:--:-- 0:00:06 92047 100 542k 100 542k 0 0 478k 0 0:00:01 0:00:01 --:--:-- 478k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 542k 0 2657 0 0 18760 0 0:00:29 --:--:-- 0:00:29 18711 100 542k 100 542k 0 0 775k 0 --:--:-- --:--:-- --:--:-- 775k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 931k 18 169k 0 0 586k 0 0:00:01 --:--:-- 0:00:01 585k 97 931k 97 904k 0 0 710k 0 0:00:01 0:00:01 --:--:-- 710k 100 931k 100 931k 0 0 720k 0 0:00:01 0:00:01 --:--:-- 720k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 36 931k 36 335k 0 0 838k 0 0:00:01 --:--:-- 0:00:01 837k 100 931k 100 931k 0 0 1081k 0 --:--:-- --:--:-- --:--:-- 1080k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 42487 100 42487 0 0 251k 0 --:--:-- --:--:-- --:--:-- 251k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 49659 100 49659 0 0 291k 0 --:--:-- --:--:-- --:--:-- 292k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 19 3284k 19 644k 0 0 834k 0 0:00:03 --:--:-- 0:00:03 834k 46 3284k 46 1519k 0 0 866k 0 0:00:03 0:00:01 0:00:02 865k 77 3284k 77 2535k 0 0 919k 0 0:00:03 0:00:02 0:00:01 919k 100 3284k 100 3284k 0 0 936k 0 0:00:03 0:00:03 --:--:-- 936k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 3284k 3 116k 0 0 385k 0 0:00:08 --:--:-- 0:00:08 384k 39 3284k 39 1285k 0 0 983k 0 0:00:03 0:00:01 0:00:02 983k 77 3284k 77 2536k 0 0 1104k 0 0:00:02 0:00:02 --:--:-- 1104k 100 3284k 100 3284k 0 0 1125k 0 0:00:02 0:00:02 --:--:-- 1125k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 455k 18 86873 0 0 373k 0 0:00:01 --:--:-- 0:00:01 373k 100 455k 100 455k 0 0 740k 0 --:--:-- --:--:-- --:--:-- 739k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 63 455k 63 287k 0 0 894k 0 --:--:-- --:--:-- --:--:-- 893k 100 455k 100 455k 0 0 1060k 0 --:--:-- --:--:-- --:--:-- 1060k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 98 452k 98 443k 0 0 739k 0 --:--:-- --:--:-- --:--:-- 739k 100 452k 100 452k 0 0 744k 0 --:--:-- --:--:-- --:--:-- 744k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 452k 100 452k 0 0 827k 0 --:--:-- --:--:-- --:--:-- 828k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 450k 100 450k 0 0 670k 0 --:--:-- --:--:-- --:--:-- 671k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 450k 37 169k 0 0 630k 0 --:--:-- --:--:-- --:--:-- 629k 100 450k 100 450k 0 0 873k 0 --:--:-- --:--:-- --:--:-- 872k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 549k 29 159k 0 0 572k 0 --:--:-- --:--:-- --:--:-- 571k 100 549k 100 549k 0 0 766k 0 --:--:-- --:--:-- --:--:-- 765k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 549k 100 549k 0 0 890k 0 --:--:-- --:--:-- --:--:-- 890k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 13.1M 2 298k 0 0 545k 0 0:00:24 --:--:-- 0:00:24 545k 8 13.1M 8 1125k 0 0 729k 0 0:00:18 0:00:01 0:00:17 729k 15 13.1M 15 2152k 0 0 846k 0 0:00:15 0:00:02 0:00:13 846k 23 13.1M 23 3166k 0 0 893k 0 0:00:15 0:00:03 0:00:12 893k 31 13.1M 31 4189k 0 0 922k 0 0:00:14 0:00:04 0:00:10 922k 38 13.1M 38 5217k 0 0 941k 0 0:00:14 0:00:05 0:00:09 984k 45 13.1M 45 6187k 0 0 945k 0 0:00:14 0:00:06 0:00:08 1012k 53 13.1M 53 7197k 0 0 951k 0 0:00:14 0:00:07 0:00:07 1004k 60 13.1M 60 8155k 0 0 954k 0 0:00:14 0:00:08 0:00:06 997k 68 13.1M 68 9198k 0 0 963k 0 0:00:13 0:00:09 0:00:04 1000k 75 13.1M 75 9.9M 0 0 966k 0 0:00:13 0:00:10 0:00:03 994k 83 13.1M 83 10.9M 0 0 969k 0 0:00:13 0:00:11 0:00:02 999k 90 13.1M 90 11.8M 0 0 969k 0 0:00:13 0:00:12 0:00:01 996k 97 13.1M 97 12.9M 0 0 975k 0 0:00:13 0:00:13 --:--:-- 1011k 100 13.1M 100 13.1M 0 0 972k 0 0:00:13 0:00:13 --:--:-- 993k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 13.1M 0 1202 0 0 9885 0 0:23:16 --:--:-- 0:23:16 9852 7 13.1M 7 1037k 0 0 976k 0 0:00:13 0:00:01 0:00:12 976k 17 13.1M 17 2376k 0 0 1151k 0 0:00:11 0:00:02 0:00:09 1151k 29 13.1M 29 3995k 0 0 1304k 0 0:00:10 0:00:03 0:00:07 1304k 41 13.1M 41 5597k 0 0 1378k 0 0:00:09 0:00:04 0:00:05 1378k 53 13.1M 53 7259k 0 0 1434k 0 0:00:09 0:00:05 0:00:04 1469k 65 13.1M 65 8832k 0 0 1456k 0 0:00:09 0:00:06 0:00:03 1558k 77 13.1M 77 10.1M 0 0 1478k 0 0:00:09 0:00:07 0:00:02 1612k 84 13.1M 84 11.1M 0 0 1420k 0 0:00:09 0:00:08 0:00:01 1492k 92 13.1M 92 12.2M 0 0 1380k 0 0:00:09 0:00:09 --:--:-- 1382k 100 13.1M 100 13.1M 0 0 1366k 0 0:00:09 0:00:09 --:--:-- 1295k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 30 1512k 30 463k 0 0 746k 0 0:00:02 --:--:-- 0:00:02 746k 99 1512k 99 1509k 0 0 932k 0 0:00:01 0:00:01 --:--:-- 932k 100 1512k 100 1512k 0 0 932k 0 0:00:01 0:00:01 --:--:-- 932k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1512k 0 1203 0 0 9144 0 0:02:49 --:--:-- 0:02:49 9113 100 1512k 100 1512k 0 0 1386k 0 0:00:01 0:00:01 --:--:-- 1385k 100 1512k 100 1512k 0 0 1386k 0 0:00:01 0:00:01 --:--:-- 1385k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 583k 100 583k 0 0 860k 0 --:--:-- --:--:-- --:--:-- 861k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 583k 100 583k 0 0 1016k 0 --:--:-- --:--:-- --:--:-- 1017k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 1457k 1 21531 0 0 83185 0 0:00:17 --:--:-- 0:00:17 83131 69 1457k 69 1012k 0 0 804k 0 0:00:01 0:00:01 --:--:-- 804k 100 1457k 100 1457k 0 0 869k 0 0:00:01 0:00:01 --:--:-- 869k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 1457k 14 209k 0 0 613k 0 0:00:02 --:--:-- 0:00:02 612k 94 1457k 94 1375k 0 0 1026k 0 0:00:01 0:00:01 --:--:-- 1026k 100 1457k 100 1457k 0 0 1016k 0 0:00:01 0:00:01 --:--:-- 1016k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 840k 49 418k 0 0 763k 0 0:00:01 --:--:-- 0:00:01 762k 100 840k 100 840k 0 0 870k 0 --:--:-- --:--:-- --:--:-- 870k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 84 840k 84 705k 0 0 820k 0 0:00:01 --:--:-- 0:00:01 819k 100 840k 100 840k 0 0 893k 0 --:--:-- --:--:-- --:--:-- 892k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 5166k 8 459k 0 0 846k 0 0:00:06 --:--:-- 0:00:06 845k 27 5166k 27 1427k 0 0 924k 0 0:00:05 0:00:01 0:00:04 924k 47 5166k 47 2454k 0 0 965k 0 0:00:05 0:00:02 0:00:03 965k 67 5166k 67 3462k 0 0 975k 0 0:00:05 0:00:03 0:00:02 975k 85 5166k 85 4430k 0 0 974k 0 0:00:05 0:00:04 0:00:01 974k 100 5166k 100 5166k 0 0 974k 0 0:00:05 0:00:05 --:--:-- 989k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 20 5166k 20 1049k 0 0 1196k 0 0:00:04 --:--:-- 0:00:04 1196k 49 5166k 49 2570k 0 0 1369k 0 0:00:03 0:00:01 0:00:02 1369k 74 5166k 74 3843k 0 0 1335k 0 0:00:03 0:00:02 0:00:01 1335k 100 5166k 100 5166k 0 0 1361k 0 0:00:03 0:00:03 --:--:-- 1362k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 6776k 0 44763 0 0 229k 0 0:00:29 --:--:-- 0:00:29 228k 13 6776k 13 927k 0 0 777k 0 0:00:08 0:00:01 0:00:07 777k 28 6776k 28 1938k 0 0 883k 0 0:00:07 0:00:02 0:00:05 883k 42 6776k 42 2878k 0 0 901k 0 0:00:07 0:00:03 0:00:04 901k 57 6776k 57 3869k 0 0 921k 0 0:00:07 0:00:04 0:00:03 921k 71 6776k 71 4825k 0 0 928k 0 0:00:07 0:00:05 0:00:02 955k 85 6776k 85 5806k 0 0 937k 0 0:00:07 0:00:06 0:00:01 975k 100 6776k 100 6776k 0 0 944k 0 0:00:07 0:00:07 --:--:-- 971k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 6776k 17 1207k 0 0 1188k 0 0:00:05 0:00:01 0:00:04 1188k 40 6776k 40 2767k 0 0 1373k 0 0:00:04 0:00:02 0:00:02 1372k 61 6776k 61 4195k 0 0 1391k 0 0:00:04 0:00:03 0:00:01 1391k 82 6776k 82 5613k 0 0 1397k 0 0:00:04 0:00:04 --:--:-- 1397k 100 6776k 100 6776k 0 0 1425k 0 0:00:04 0:00:04 --:--:-- 1436k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 1155k 65 755k 0 0 782k 0 0:00:01 --:--:-- 0:00:01 782k 100 1155k 100 1155k 0 0 858k 0 0:00:01 0:00:01 --:--:-- 859k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 1155k 3 40407 0 0 204k 0 0:00:05 --:--:-- 0:00:05 204k 100 1155k 100 1155k 0 0 1087k 0 0:00:01 0:00:01 --:--:-- 1088k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 3436k 13 476k 0 0 787k 0 0:00:04 --:--:-- 0:00:04 787k 40 3436k 40 1382k 0 0 873k 0 0:00:03 0:00:01 0:00:02 872k 65 3436k 65 2264k 0 0 875k 0 0:00:03 0:00:02 0:00:01 875k 94 3436k 94 3261k 0 0 909k 0 0:00:03 0:00:03 --:--:-- 909k 100 3436k 100 3436k 0 0 910k 0 0:00:03 0:00:03 --:--:-- 910k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 3436k 0 1206 0 0 9532 0 0:06:09 --:--:-- 0:06:09 9496 34 3436k 34 1197k 0 0 1102k 0 0:00:03 0:00:01 0:00:02 1102k 62 3436k 62 2153k 0 0 1030k 0 0:00:03 0:00:02 0:00:01 1030k 100 3436k 100 3436k 0 0 1140k 0 0:00:03 0:00:03 --:--:-- 1140k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 61 962k 61 593k 0 0 735k 0 0:00:01 --:--:-- 0:00:01 735k 100 962k 100 962k 0 0 805k 0 0:00:01 0:00:01 --:--:-- 805k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 962k 100 962k 0 0 986k 0 --:--:-- --:--:-- --:--:-- 985k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 57 623k 57 358k 0 0 631k 0 --:--:-- --:--:-- --:--:-- 631k 100 623k 100 623k 0 0 739k 0 --:--:-- --:--:-- --:--:-- 738k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 623k 100 623k 0 0 773k 0 --:--:-- --:--:-- --:--:-- 774k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 24.3M 2 515k 0 0 773k 0 0:00:32 --:--:-- 0:00:32 773k 5 24.3M 5 1468k 0 0 879k 0 0:00:28 0:00:01 0:00:27 880k 9 24.3M 9 2442k 0 0 916k 0 0:00:27 0:00:02 0:00:25 915k 13 24.3M 13 3469k 0 0 946k 0 0:00:26 0:00:03 0:00:23 946k 17 24.3M 17 4453k 0 0 953k 0 0:00:26 0:00:04 0:00:22 953k 21 24.3M 21 5352k 0 0 944k 0 0:00:26 0:00:05 0:00:21 967k 25 24.3M 25 6278k 0 0 939k 0 0:00:26 0:00:06 0:00:20 959k 28 24.3M 28 7191k 0 0 937k 0 0:00:26 0:00:07 0:00:19 949k 32 24.3M 32 8049k 0 0 927k 0 0:00:26 0:00:08 0:00:18 914k 35 24.3M 35 8856k 0 0 915k 0 0:00:27 0:00:09 0:00:18 880k 38 24.3M 38 9626k 0 0 902k 0 0:00:27 0:00:10 0:00:17 854k 41 24.3M 41 10.0M 0 0 877k 0 0:00:28 0:00:11 0:00:17 793k 44 24.3M 44 10.7M 0 0 870k 0 0:00:28 0:00:12 0:00:16 767k 47 24.3M 47 11.5M 0 0 868k 0 0:00:28 0:00:13 0:00:15 766k 51 24.3M 51 12.5M 0 0 877k 0 0:00:28 0:00:14 0:00:14 802k 55 24.3M 55 13.5M 0 0 885k 0 0:00:28 0:00:15 0:00:13 849k 59 24.3M 59 14.5M 0 0 892k 0 0:00:27 0:00:16 0:00:11 929k 63 24.3M 63 15.3M 0 0 892k 0 0:00:27 0:00:17 0:00:10 947k 67 24.3M 67 16.4M 0 0 901k 0 0:00:27 0:00:18 0:00:09 989k 71 24.3M 71 17.3M 0 0 905k 0 0:00:27 0:00:19 0:00:08 988k 75 24.3M 75 18.2M 0 0 905k 0 0:00:27 0:00:20 0:00:07 968k 79 24.3M 79 19.2M 0 0 910k 0 0:00:27 0:00:21 0:00:06 968k 83 24.3M 83 20.2M 0 0 915k 0 0:00:27 0:00:22 0:00:05 998k 87 24.3M 87 21.1M 0 0 916k 0 0:00:27 0:00:23 0:00:04 976k 91 24.3M 91 22.1M 0 0 921k 0 0:00:27 0:00:24 0:00:03 983k 95 24.3M 95 23.1M 0 0 923k 0 0:00:26 0:00:25 0:00:01 996k 99 24.3M 99 24.1M 0 0 926k 0 0:00:26 0:00:26 --:--:-- 994k 100 24.3M 100 24.3M 0 0 926k 0 0:00:26 0:00:26 --:--:-- 981k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 24.3M 0 15721 0 0 99378 0 0:04:16 --:--:-- 0:04:16 99500 5 24.3M 5 1363k 0 0 1187k 0 0:00:20 0:00:01 0:00:19 1186k 11 24.3M 11 2929k 0 0 1363k 0 0:00:18 0:00:02 0:00:16 1363k 18 24.3M 18 4504k 0 0 1419k 0 0:00:17 0:00:03 0:00:14 1419k 22 24.3M 22 5504k 0 0 1326k 0 0:00:18 0:00:04 0:00:14 1326k 27 24.3M 27 6960k 0 0 1352k 0 0:00:18 0:00:05 0:00:13 1391k 34 24.3M 34 8591k 0 0 1397k 0 0:00:17 0:00:06 0:00:11 1445k 40 24.3M 40 9.9M 0 0 1426k 0 0:00:17 0:00:07 0:00:10 1452k 45 24.3M 45 11.1M 0 0 1400k 0 0:00:17 0:00:08 0:00:09 1388k 51 24.3M 51 12.4M 0 0 1396k 0 0:00:17 0:00:09 0:00:08 1453k 57 24.3M 57 13.9M 0 0 1408k 0 0:00:17 0:00:10 0:00:07 1465k 63 24.3M 63 15.4M 0 0 1422k 0 0:00:17 0:00:11 0:00:06 1453k 69 24.3M 69 16.8M 0 0 1421k 0 0:00:17 0:00:12 0:00:05 1415k 74 24.3M 74 18.2M 0 0 1419k 0 0:00:17 0:00:13 0:00:04 1448k 81 24.3M 81 19.8M 0 0 1434k 0 0:00:17 0:00:14 0:00:03 1503k 87 24.3M 87 21.2M 0 0 1435k 0 0:00:17 0:00:15 0:00:02 1491k 92 24.3M 92 22.5M 0 0 1431k 0 0:00:17 0:00:16 0:00:01 1451k 98 24.3M 98 23.8M 0 0 1426k 0 0:00:17 0:00:17 --:--:-- 1437k 100 24.3M 100 24.3M 0 0 1428k 0 0:00:17 0:00:17 --:--:-- 1456k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 66 725k 66 483k 0 0 683k 0 0:00:01 --:--:-- 0:00:01 682k 100 725k 100 725k 0 0 768k 0 --:--:-- --:--:-- --:--:-- 767k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 725k 65 474k 0 0 825k 0 --:--:-- --:--:-- --:--:-- 825k 100 725k 100 725k 0 0 957k 0 --:--:-- --:--:-- --:--:-- 957k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 202k 100 202k 0 0 516k 0 --:--:-- --:--:-- --:--:-- 517k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 202k 100 202k 0 0 686k 0 --:--:-- --:--:-- --:--:-- 687k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 35 417k 35 150k 0 0 431k 0 --:--:-- --:--:-- --:--:-- 431k 100 417k 100 417k 0 0 582k 0 --:--:-- --:--:-- --:--:-- 581k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 70 417k 70 294k 0 0 664k 0 --:--:-- --:--:-- --:--:-- 665k 100 417k 100 417k 0 0 780k 0 --:--:-- --:--:-- --:--:-- 780k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 5615k 6 379k 0 0 677k 0 0:00:08 --:--:-- 0:00:08 676k 22 5615k 22 1266k 0 0 810k 0 0:00:06 0:00:01 0:00:05 809k 40 5615k 40 2298k 0 0 898k 0 0:00:06 0:00:02 0:00:04 898k 57 5615k 57 3241k 0 0 910k 0 0:00:06 0:00:03 0:00:03 910k 74 5615k 74 4199k 0 0 921k 0 0:00:06 0:00:04 0:00:02 921k 92 5615k 92 5182k 0 0 932k 0 0:00:06 0:00:05 0:00:01 960k 100 5615k 100 5615k 0 0 923k 0 0:00:06 0:00:06 --:--:-- 962k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 5615k 13 781k 0 0 894k 0 0:00:06 --:--:-- 0:00:06 894k 37 5615k 37 2078k 0 0 1108k 0 0:00:05 0:00:01 0:00:04 1107k 66 5615k 66 3733k 0 0 1298k 0 0:00:04 0:00:02 0:00:02 1298k 95 5615k 95 5356k 0 0 1383k 0 0:00:04 0:00:03 0:00:01 1382k 100 5615k 100 5615k 0 0 1391k 0 0:00:04 0:00:04 --:--:-- 1391k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 1152k 23 274k 0 0 641k 0 0:00:01 --:--:-- 0:00:01 640k 100 1152k 100 1152k 0 0 833k 0 0:00:01 0:00:01 --:--:-- 834k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 1152k 65 754k 0 0 970k 0 0:00:01 --:--:-- 0:00:01 969k 100 1152k 100 1152k 0 0 1046k 0 0:00:01 0:00:01 --:--:-- 1047k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 64 1363k 64 885k 0 0 868k 0 0:00:01 0:00:01 --:--:-- 868k 100 1363k 100 1363k 0 0 907k 0 0:00:01 0:00:01 --:--:-- 907k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 46 1363k 46 630k 0 0 985k 0 0:00:01 --:--:-- 0:00:01 985k 100 1363k 100 1363k 0 0 1242k 0 0:00:01 0:00:01 --:--:-- 1243k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 2869k 13 388k 0 0 799k 0 0:00:03 --:--:-- 0:00:03 798k 45 2869k 45 1307k 0 0 877k 0 0:00:03 0:00:01 0:00:02 877k 78 2869k 78 2251k 0 0 904k 0 0:00:03 0:00:02 0:00:01 904k 100 2869k 100 2869k 0 0 917k 0 0:00:03 0:00:03 --:--:-- 917k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 2869k 18 540k 0 0 1088k 0 0:00:02 --:--:-- 0:00:02 1088k 66 2869k 66 1908k 0 0 1274k 0 0:00:02 0:00:01 0:00:01 1274k 100 2869k 100 2869k 0 0 1150k 0 0:00:02 0:00:02 --:--:-- 1150k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 23 744k 23 178k 0 0 558k 0 0:00:01 --:--:-- 0:00:01 557k 100 744k 100 744k 0 0 843k 0 --:--:-- --:--:-- --:--:-- 843k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 744k 100 744k 0 0 1142k 0 --:--:-- --:--:-- --:--:-- 1143k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 206k 100 206k 0 0 554k 0 --:--:-- --:--:-- --:--:-- 556k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 10 206k 10 22988 0 0 93311 0 0:00:02 --:--:-- 0:00:02 93068 100 206k 100 206k 0 0 519k 0 --:--:-- --:--:-- --:--:-- 518k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 2860k 26 761k 0 0 764k 0 0:00:03 --:--:-- 0:00:03 764k 60 2860k 60 1743k 0 0 857k 0 0:00:03 0:00:02 0:00:01 858k 93 2860k 93 2674k 0 0 894k 0 0:00:03 0:00:02 0:00:01 894k 100 2860k 100 2860k 0 0 905k 0 0:00:03 0:00:03 --:--:-- 905k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 30 2860k 30 876k 0 0 1079k 0 0:00:02 --:--:-- 0:00:02 1078k 83 2860k 83 2380k 0 0 1314k 0 0:00:02 0:00:01 0:00:01 1314k 100 2860k 100 2860k 0 0 1345k 0 0:00:02 0:00:02 --:--:-- 1346k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 351k 0 --:--:-- --:--:-- --:--:-- 351k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 546k 0 --:--:-- --:--:-- --:--:-- 547k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 976k 16 158k 0 0 484k 0 0:00:02 --:--:-- 0:00:02 483k 48 976k 48 477k 0 0 359k 0 0:00:02 0:00:01 0:00:01 359k 83 976k 83 815k 0 0 339k 0 0:00:02 0:00:02 --:--:-- 339k 100 976k 100 976k 0 0 346k 0 0:00:02 0:00:02 --:--:-- 346k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 26 976k 26 256k 0 0 777k 0 0:00:01 --:--:-- 0:00:01 777k 100 976k 100 976k 0 0 859k 0 0:00:01 0:00:01 --:--:-- 859k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 1357k 9 123k 0 0 212k 0 0:00:06 --:--:-- 0:00:06 211k 20 1357k 20 283k 0 0 176k 0 0:00:07 0:00:01 0:00:06 176k 41 1357k 41 557k 0 0 222k 0 0:00:06 0:00:02 0:00:04 222k 72 1357k 72 983k 0 0 283k 0 0:00:04 0:00:03 0:00:01 283k 100 1357k 100 1357k 0 0 324k 0 0:00:04 0:00:04 --:--:-- 324k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1357k 0 1203 0 0 7315 0 0:03:10 --:--:-- 0:03:10 7290 100 1357k 100 1357k 0 0 1215k 0 0:00:01 0:00:01 --:--:-- 1216k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 35.7M 0 15721 0 0 54621 0 0:11:26 --:--:-- 0:11:26 54586 2 35.7M 2 918k 0 0 722k 0 0:00:50 0:00:01 0:00:49 722k 5 35.7M 5 1921k 0 0 845k 0 0:00:43 0:00:02 0:00:41 845k 7 35.7M 7 2841k 0 0 868k 0 0:00:42 0:00:03 0:00:39 868k 10 35.7M 10 3819k 0 0 894k 0 0:00:40 0:00:04 0:00:36 894k 13 35.7M 13 4761k 0 0 902k 0 0:00:40 0:00:05 0:00:35 951k 15 35.7M 15 5657k 0 0 901k 0 0:00:40 0:00:06 0:00:34 946k 17 35.7M 17 6587k 0 0 904k 0 0:00:40 0:00:07 0:00:33 931k 20 35.7M 20 7414k 0 0 895k 0 0:00:40 0:00:08 0:00:32 914k 22 35.7M 22 8236k 0 0 884k 0 0:00:41 0:00:09 0:00:32 877k 24 35.7M 24 9118k 0 0 887k 0 0:00:41 0:00:10 0:00:31 871k 27 35.7M 27 9.8M 0 0 889k 0 0:00:41 0:00:11 0:00:30 874k 29 35.7M 29 10.6M 0 0 892k 0 0:00:41 0:00:12 0:00:29 875k 32 35.7M 32 11.6M 0 0 901k 0 0:00:40 0:00:13 0:00:27 909k 35 35.7M 35 12.6M 0 0 908k 0 0:00:40 0:00:14 0:00:26 951k 38 35.7M 38 13.5M 0 0 911k 0 0:00:40 0:00:15 0:00:25 960k 40 35.7M 40 14.4M 0 0 910k 0 0:00:40 0:00:16 0:00:24 960k 43 35.7M 43 15.4M 0 0 914k 0 0:00:40 0:00:17 0:00:23 969k 45 35.7M 45 16.2M 0 0 913k 0 0:00:40 0:00:18 0:00:22 944k 48 35.7M 48 17.1M 0 0 912k 0 0:00:40 0:00:19 0:00:21 924k 50 35.7M 50 17.9M 0 0 907k 0 0:00:40 0:00:20 0:00:20 894k 52 35.7M 52 18.7M 0 0 902k 0 0:00:40 0:00:21 0:00:19 877k 54 35.7M 54 19.5M 0 0 899k 0 0:00:40 0:00:22 0:00:18 847k 57 35.7M 57 20.4M 0 0 899k 0 0:00:40 0:00:23 0:00:17 851k 59 35.7M 59 21.3M 0 0 899k 0 0:00:40 0:00:24 0:00:16 848k 62 35.7M 62 22.2M 0 0 900k 0 0:00:40 0:00:25 0:00:15 874k 64 35.7M 64 23.1M 0 0 902k 0 0:00:40 0:00:26 0:00:14 902k 67 35.7M 67 23.9M 0 0 899k 0 0:00:40 0:00:27 0:00:13 897k 69 35.7M 69 24.8M 0 0 901k 0 0:00:40 0:00:28 0:00:12 907k 72 35.7M 72 25.7M 0 0 900k 0 0:00:40 0:00:29 0:00:11 905k 74 35.7M 74 26.6M 0 0 902k 0 0:00:40 0:00:30 0:00:10 914k 77 35.7M 77 27.5M 0 0 903k 0 0:00:40 0:00:31 0:00:09 908k 79 35.7M 79 28.5M 0 0 904k 0 0:00:40 0:00:32 0:00:08 933k 82 35.7M 82 29.4M 0 0 905k 0 0:00:40 0:00:33 0:00:07 928k 84 35.7M 84 30.3M 0 0 905k 0 0:00:40 0:00:34 0:00:06 933k 87 35.7M 87 31.1M 0 0 905k 0 0:00:40 0:00:35 0:00:05 920k 89 35.7M 89 32.0M 0 0 904k 0 0:00:40 0:00:36 0:00:04 910k 92 35.7M 92 32.9M 0 0 904k 0 0:00:40 0:00:37 0:00:03 900k 94 35.7M 94 33.8M 0 0 905k 0 0:00:40 0:00:38 0:00:02 905k 97 35.7M 97 34.7M 0 0 907k 0 0:00:40 0:00:39 0:00:01 919k 99 35.7M 99 35.6M 0 0 907k 0 0:00:40 0:00:40 --:--:-- 921k 100 35.7M 100 35.7M 0 0 908k 0 0:00:40 0:00:40 --:--:-- 940k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 35.7M 2 1067k 0 0 1097k 0 0:00:33 --:--:-- 0:00:33 1097k 6 35.7M 6 2428k 0 0 1231k 0 0:00:29 0:00:01 0:00:28 1230k 10 35.7M 10 3852k 0 0 1296k 0 0:00:28 0:00:02 0:00:26 1296k 14 35.7M 14 5315k 0 0 1339k 0 0:00:27 0:00:03 0:00:24 1338k 18 35.7M 18 6902k 0 0 1388k 0 0:00:26 0:00:04 0:00:22 1388k 22 35.7M 22 8309k 0 0 1391k 0 0:00:26 0:00:05 0:00:21 1448k 26 35.7M 26 9605k 0 0 1378k 0 0:00:26 0:00:06 0:00:20 1435k 30 35.7M 30 11.0M 0 0 1414k 0 0:00:25 0:00:07 0:00:18 1484k 32 35.7M 32 11.5M 0 0 1319k 0 0:00:27 0:00:08 0:00:19 1303k 33 35.7M 33 12.1M 0 0 1240k 0 0:00:29 0:00:10 0:00:19 1094k 35 35.7M 35 12.6M 0 0 1174k 0 0:00:31 0:00:11 0:00:20 919k 37 35.7M 37 13.3M 0 0 1139k 0 0:00:32 0:00:11 0:00:21 805k 39 35.7M 39 13.9M 0 0 1101k 0 0:00:33 0:00:12 0:00:21 604k 40 35.7M 40 14.5M 0 0 1069k 0 0:00:34 0:00:13 0:00:21 619k 43 35.7M 43 15.6M 0 0 1066k 0 0:00:34 0:00:14 0:00:20 716k 47 35.7M 47 16.9M 0 0 1087k 0 0:00:33 0:00:15 0:00:18 892k 51 35.7M 51 18.3M 0 0 1109k 0 0:00:32 0:00:16 0:00:16 1038k 54 35.7M 54 19.5M 0 0 1110k 0 0:00:32 0:00:18 0:00:14 1133k 58 35.7M 58 20.8M 0 0 1126k 0 0:00:32 0:00:18 0:00:14 1286k 62 35.7M 62 22.1M 0 0 1137k 0 0:00:32 0:00:19 0:00:13 1348k 66 35.7M 66 23.7M 0 0 1158k 0 0:00:31 0:00:20 0:00:11 1386k 68 35.7M 68 24.6M 0 0 1146k 0 0:00:31 0:00:21 0:00:10 1272k 71 35.7M 71 25.5M 0 0 1140k 0 0:00:32 0:00:22 0:00:10 1251k 74 35.7M 74 26.8M 0 0 1144k 0 0:00:31 0:00:23 0:00:08 1215k 78 35.7M 78 28.1M 0 0 1155k 0 0:00:31 0:00:24 0:00:07 1226k 82 35.7M 82 29.4M 0 0 1162k 0 0:00:31 0:00:25 0:00:06 1179k 86 35.7M 86 30.7M 0 0 1167k 0 0:00:31 0:00:26 0:00:05 1259k 89 35.7M 89 31.8M 0 0 1165k 0 0:00:31 0:00:27 0:00:04 1279k 93 35.7M 93 33.2M 0 0 1175k 0 0:00:31 0:00:28 0:00:03 1322k 96 35.7M 96 34.4M 0 0 1178k 0 0:00:31 0:00:29 0:00:02 1291k 99 35.7M 99 35.7M 0 0 1181k 0 0:00:30 0:00:30 --:--:-- 1280k 100 35.7M 100 35.7M 0 0 1181k 0 0:00:30 0:00:30 --:--:-- 1277k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 12 4475k 12 541k 0 0 627k 0 0:00:07 --:--:-- 0:00:07 627k 32 4475k 32 1446k 0 0 776k 0 0:00:05 0:00:01 0:00:04 776k 52 4475k 52 2372k 0 0 828k 0 0:00:05 0:00:02 0:00:03 828k 73 4475k 73 3296k 0 0 853k 0 0:00:05 0:00:03 0:00:02 853k 94 4475k 94 4208k 0 0 865k 0 0:00:05 0:00:04 0:00:01 865k 100 4475k 100 4475k 0 0 873k 0 0:00:05 0:00:05 --:--:-- 923k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 4475k 6 277k 0 0 342k 0 0:00:13 --:--:-- 0:00:13 342k 13 4475k 13 612k 0 0 340k 0 0:00:13 0:00:01 0:00:12 340k 23 4475k 23 1068k 0 0 381k 0 0:00:11 0:00:02 0:00:09 381k 42 4475k 42 1895k 0 0 497k 0 0:00:08 0:00:03 0:00:05 497k 61 4475k 61 2736k 0 0 567k 0 0:00:07 0:00:04 0:00:03 567k 82 4475k 82 3685k 0 0 634k 0 0:00:07 0:00:05 0:00:02 681k 100 4475k 100 4475k 0 0 697k 0 0:00:06 0:00:06 --:--:-- 837k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 311k 100 311k 0 0 536k 0 --:--:-- --:--:-- --:--:-- 536k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 311k 14 44768 0 0 136k 0 0:00:02 --:--:-- 0:00:02 136k 100 311k 100 311k 0 0 459k 0 --:--:-- --:--:-- --:--:-- 458k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 254k 0 1205 0 0 11461 0 0:00:22 --:--:-- 0:00:22 11367 100 254k 100 254k 0 0 582k 0 --:--:-- --:--:-- --:--:-- 581k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 254k 100 254k 0 0 612k 0 --:--:-- --:--:-- --:--:-- 613k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 38 1102k 38 420k 0 0 696k 0 0:00:01 --:--:-- 0:00:01 695k 100 1102k 100 1102k 0 0 799k 0 0:00:01 0:00:01 --:--:-- 800k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 1102k 5 60735 0 0 386k 0 0:00:02 --:--:-- 0:00:02 385k 100 1102k 100 1102k 0 0 1072k 0 0:00:01 0:00:01 --:--:-- 1072k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 72992 100 72992 0 0 458k 0 --:--:-- --:--:-- --:--:-- 459k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 72992 1 1206 0 0 14831 0 0:00:04 --:--:-- 0:00:04 14707 100 72992 100 72992 0 0 380k 0 --:--:-- --:--:-- --:--:-- 379k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 636k 100 636k 0 0 651k 0 --:--:-- --:--:-- --:--:-- 651k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 636k 100 636k 0 0 767k 0 --:--:-- --:--:-- --:--:-- 767k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 1077k 65 708k 0 0 705k 0 0:00:01 0:00:01 --:--:-- 705k 100 1077k 100 1077k 0 0 795k 0 0:00:01 0:00:01 --:--:-- 795k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 48 1077k 48 517k 0 0 520k 0 0:00:02 --:--:-- 0:00:02 519k 100 1077k 100 1077k 0 0 766k 0 0:00:01 0:00:01 --:--:-- 767k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 5051k 9 457k 0 0 737k 0 0:00:06 --:--:-- 0:00:06 737k 27 5051k 27 1407k 0 0 857k 0 0:00:05 0:00:01 0:00:04 856k 47 5051k 47 2374k 0 0 907k 0 0:00:05 0:00:02 0:00:03 907k 65 5051k 65 3290k 0 0 909k 0 0:00:05 0:00:03 0:00:02 909k 83 5051k 83 4232k 0 0 913k 0 0:00:05 0:00:04 0:00:01 913k 100 5051k 100 5051k 0 0 915k 0 0:00:05 0:00:05 --:--:-- 938k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 5051k 5 296k 0 0 531k 0 0:00:09 --:--:-- 0:00:09 530k 29 5051k 29 1465k 0 0 947k 0 0:00:05 0:00:01 0:00:04 947k 57 5051k 57 2909k 0 0 1142k 0 0:00:04 0:00:02 0:00:02 1142k 83 5051k 83 4236k 0 0 1194k 0 0:00:04 0:00:03 0:00:01 1194k 100 5051k 100 5051k 0 0 1151k 0 0:00:04 0:00:04 --:--:-- 1151k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 52 1613k 52 853k 0 0 813k 0 0:00:01 0:00:01 --:--:-- 813k 100 1613k 100 1613k 0 0 859k 0 0:00:01 0:00:01 --:--:-- 859k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1613k 0 1203 0 0 9321 0 0:02:57 --:--:-- 0:02:57 9325 90 1613k 90 1457k 0 0 1324k 0 0:00:01 0:00:01 --:--:-- 1324k 100 1613k 100 1613k 0 0 1337k 0 0:00:01 0:00:01 --:--:-- 1337k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 3355k 1 49119 0 0 373k 0 0:00:08 --:--:-- 0:00:08 371k 27 3355k 27 932k 0 0 826k 0 0:00:04 0:00:01 0:00:03 826k 57 3355k 57 1936k 0 0 909k 0 0:00:03 0:00:02 0:00:01 909k 88 3355k 88 2953k 0 0 943k 0 0:00:03 0:00:03 --:--:-- 943k 100 3355k 100 3355k 0 0 937k 0 0:00:03 0:00:03 --:--:-- 937k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 19 3355k 19 669k 0 0 795k 0 0:00:04 --:--:-- 0:00:04 795k 61 3355k 61 2052k 0 0 1115k 0 0:00:03 0:00:01 0:00:02 1115k 96 3355k 96 3229k 0 0 1131k 0 0:00:02 0:00:02 --:--:-- 1130k 100 3355k 100 3355k 0 0 1105k 0 0:00:03 0:00:03 --:--:-- 1105k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 52 751k 52 393k 0 0 757k 0 --:--:-- --:--:-- --:--:-- 756k 100 751k 100 751k 0 0 843k 0 --:--:-- --:--:-- --:--:-- 842k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 96 751k 96 724k 0 0 965k 0 --:--:-- --:--:-- --:--:-- 964k 100 751k 100 751k 0 0 979k 0 --:--:-- --:--:-- --:--:-- 979k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 1878k 15 300k 0 0 500k 0 0:00:03 --:--:-- 0:00:03 500k 64 1878k 64 1209k 0 0 756k 0 0:00:02 0:00:01 0:00:01 755k 100 1878k 100 1878k 0 0 802k 0 0:00:02 0:00:02 --:--:-- 803k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 56 1878k 56 1054k 0 0 1106k 0 0:00:01 --:--:-- 0:00:01 1105k 100 1878k 100 1878k 0 0 1266k 0 0:00:01 0:00:01 --:--:-- 1267k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 45 149k 45 69449 0 0 313k 0 --:--:-- --:--:-- --:--:-- 312k 100 149k 100 149k 0 0 512k 0 --:--:-- --:--:-- --:--:-- 510k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 149k 100 149k 0 0 404k 0 --:--:-- --:--:-- --:--:-- 405k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 110k 100 110k 0 0 524k 0 --:--:-- --:--:-- --:--:-- 526k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 110k 100 110k 0 0 464k 0 --:--:-- --:--:-- --:--:-- 464k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 1142k 49 562k 0 0 833k 0 0:00:01 --:--:-- 0:00:01 832k 100 1142k 100 1142k 0 0 865k 0 0:00:01 0:00:01 --:--:-- 865k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 51 1142k 51 585k 0 0 782k 0 0:00:01 --:--:-- 0:00:01 782k 100 1142k 100 1142k 0 0 957k 0 0:00:01 0:00:01 --:--:-- 958k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 5019k 3 191k 0 0 594k 0 0:00:08 --:--:-- 0:00:08 593k 22 5019k 22 1117k 0 0 845k 0 0:00:05 0:00:01 0:00:04 845k 41 5019k 41 2087k 0 0 900k 0 0:00:05 0:00:02 0:00:03 899k 60 5019k 60 3029k 0 0 911k 0 0:00:05 0:00:03 0:00:02 911k 79 5019k 79 3985k 0 0 922k 0 0:00:05 0:00:04 0:00:01 922k 98 5019k 98 4939k 0 0 928k 0 0:00:05 0:00:05 --:--:-- 949k 100 5019k 100 5019k 0 0 932k 0 0:00:05 0:00:05 --:--:-- 961k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 5019k 9 460k 0 0 911k 0 0:00:05 --:--:-- 0:00:05 910k 35 5019k 35 1776k 0 0 1183k 0 0:00:04 0:00:01 0:00:03 1183k 63 5019k 63 3201k 0 0 1277k 0 0:00:03 0:00:02 0:00:01 1277k 92 5019k 92 4666k 0 0 1332k 0 0:00:03 0:00:03 --:--:-- 1332k 100 5019k 100 5019k 0 0 1353k 0 0:00:03 0:00:03 --:--:-- 1353k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 77 847k 77 660k 0 0 708k 0 0:00:01 --:--:-- 0:00:01 707k 100 847k 100 847k 0 0 702k 0 0:00:01 0:00:01 --:--:-- 702k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 847k 100 847k 0 0 1311k 0 --:--:-- --:--:-- --:--:-- 1313k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 34 1302k 34 453k 0 0 676k 0 0:00:01 --:--:-- 0:00:01 676k 98 1302k 98 1287k 0 0 772k 0 0:00:01 0:00:01 --:--:-- 772k 100 1302k 100 1302k 0 0 776k 0 0:00:01 0:00:01 --:--:-- 776k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 1302k 100 1302k 0 0 1267k 0 0:00:01 0:00:01 --:--:-- 1268k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 32 2232k 32 735k 0 0 776k 0 0:00:02 --:--:-- 0:00:02 776k 78 2232k 78 1745k 0 0 896k 0 0:00:02 0:00:01 0:00:01 896k 100 2232k 100 2232k 0 0 882k 0 0:00:02 0:00:02 --:--:-- 882k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 2232k 37 827k 0 0 852k 0 0:00:02 --:--:-- 0:00:02 852k 98 2232k 98 2190k 0 0 1109k 0 0:00:02 0:00:01 0:00:01 1109k 100 2232k 100 2232k 0 0 1113k 0 0:00:02 0:00:02 --:--:-- 1113k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 6496k 3 259k 0 0 672k 0 0:00:09 --:--:-- 0:00:09 671k 17 6496k 17 1145k 0 0 827k 0 0:00:07 0:00:01 0:00:06 827k 31 6496k 31 2020k 0 0 848k 0 0:00:07 0:00:02 0:00:05 848k 46 6496k 46 3017k 0 0 891k 0 0:00:07 0:00:03 0:00:04 891k 61 6496k 61 3991k 0 0 905k 0 0:00:07 0:00:04 0:00:03 905k 75 6496k 75 4890k 0 0 904k 0 0:00:07 0:00:05 0:00:02 922k 88 6496k 88 5760k 0 0 902k 0 0:00:07 0:00:06 0:00:01 923k 100 6496k 100 6496k 0 0 896k 0 0:00:07 0:00:07 --:--:-- 919k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 18 6496k 18 1189k 0 0 1294k 0 0:00:05 --:--:-- 0:00:05 1294k 41 6496k 41 2705k 0 0 1406k 0 0:00:04 0:00:01 0:00:03 1406k 63 6496k 63 4145k 0 0 1420k 0 0:00:04 0:00:02 0:00:02 1420k 84 6496k 84 5505k 0 0 1404k 0 0:00:04 0:00:03 0:00:01 1404k 100 6496k 100 6496k 0 0 1433k 0 0:00:04 0:00:04 --:--:-- 1434k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 455k 0 1205 0 0 9139 0 0:00:51 --:--:-- 0:00:51 9128 100 455k 100 455k 0 0 665k 0 --:--:-- --:--:-- --:--:-- 665k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 74 455k 74 340k 0 0 1085k 0 --:--:-- --:--:-- --:--:-- 1086k 100 455k 100 455k 0 0 1181k 0 --:--:-- --:--:-- --:--:-- 1180k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 33 697k 33 230k 0 0 621k 0 0:00:01 --:--:-- 0:00:01 620k 100 697k 100 697k 0 0 757k 0 --:--:-- --:--:-- --:--:-- 757k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 697k 100 697k 0 0 1273k 0 --:--:-- --:--:-- --:--:-- 1275k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 100k 100 100k 0 0 319k 0 --:--:-- --:--:-- --:--:-- 320k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 100k 100 100k 0 0 597k 0 --:--:-- --:--:-- --:--:-- 598k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 1073k 1 15723 0 0 168k 0 0:00:06 --:--:-- 0:00:06 166k 74 1073k 74 796k 0 0 735k 0 0:00:01 0:00:01 --:--:-- 735k 100 1073k 100 1073k 0 0 773k 0 0:00:01 0:00:01 --:--:-- 773k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 1073k 2 22983 0 0 224k 0 0:00:04 --:--:-- 0:00:04 224k 100 1073k 100 1073k 0 0 979k 0 0:00:01 0:00:01 --:--:-- 980k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 419k 100 419k 0 0 733k 0 --:--:-- --:--:-- --:--:-- 734k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 419k 100 419k 0 0 824k 0 --:--:-- --:--:-- --:--:-- 825k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1274k 0 1203 0 0 9098 0 0:02:23 --:--:-- 0:02:23 9113 60 1274k 60 771k 0 0 719k 0 0:00:01 0:00:01 --:--:-- 719k 100 1274k 100 1274k 0 0 775k 0 0:00:01 0:00:01 --:--:-- 774k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 1274k 11 150k 0 0 359k 0 0:00:03 --:--:-- 0:00:03 359k 88 1274k 88 1127k 0 0 795k 0 0:00:01 0:00:01 --:--:-- 795k 100 1274k 100 1274k 0 0 833k 0 0:00:01 0:00:01 --:--:-- 833k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 39 494k 39 196k 0 0 447k 0 0:00:01 --:--:-- 0:00:01 447k 100 494k 100 494k 0 0 646k 0 --:--:-- --:--:-- --:--:-- 646k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 494k 100 494k 0 0 763k 0 --:--:-- --:--:-- --:--:-- 765k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 4795k 9 442k 0 0 722k 0 0:00:06 --:--:-- 0:00:06 722k 27 4795k 27 1309k 0 0 812k 0 0:00:05 0:00:01 0:00:04 812k 46 4795k 46 2250k 0 0 861k 0 0:00:05 0:00:02 0:00:03 861k 65 4795k 65 3124k 0 0 865k 0 0:00:05 0:00:03 0:00:02 865k 85 4795k 85 4096k 0 0 885k 0 0:00:05 0:00:04 0:00:01 884k 100 4795k 100 4795k 0 0 899k 0 0:00:05 0:00:05 --:--:-- 922k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 21 4795k 21 1033k 0 0 890k 0 0:00:05 0:00:01 0:00:04 890k 45 4795k 45 2186k 0 0 1011k 0 0:00:04 0:00:02 0:00:02 1011k 77 4795k 77 3724k 0 0 1177k 0 0:00:04 0:00:03 0:00:01 1177k 100 4795k 100 4795k 0 0 1246k 0 0:00:03 0:00:03 --:--:-- 1246k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 863k 15 137k 0 0 580k 0 0:00:01 --:--:-- 0:00:01 579k 100 863k 100 863k 0 0 877k 0 --:--:-- --:--:-- --:--:-- 876k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 15 863k 15 134k 0 0 547k 0 0:00:01 --:--:-- 0:00:01 546k 100 863k 100 863k 0 0 925k 0 --:--:-- --:--:-- --:--:-- 925k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 8119k 1 125k 0 0 566k 0 0:00:14 --:--:-- 0:00:14 564k 13 8119k 13 1071k 0 0 880k 0 0:00:09 0:00:01 0:00:08 879k 25 8119k 25 2047k 0 0 923k 0 0:00:08 0:00:02 0:00:06 923k 37 8119k 37 3010k 0 0 927k 0 0:00:08 0:00:03 0:00:05 927k 48 8119k 48 3964k 0 0 940k 0 0:00:08 0:00:04 0:00:04 940k 61 8119k 61 4988k 0 0 952k 0 0:00:08 0:00:05 0:00:03 969k 73 8119k 73 5966k 0 0 959k 0 0:00:08 0:00:06 0:00:02 978k 85 8119k 85 6978k 0 0 966k 0 0:00:08 0:00:07 0:00:01 985k 97 8119k 97 7943k 0 0 966k 0 0:00:08 0:00:08 --:--:-- 991k 100 8119k 100 8119k 0 0 962k 0 0:00:08 0:00:08 --:--:-- 984k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 8119k 1 120k 0 0 440k 0 0:00:18 --:--:-- 0:00:18 438k 15 8119k 15 1278k 0 0 1002k 0 0:00:08 0:00:01 0:00:07 1002k 35 8119k 35 2861k 0 0 1258k 0 0:00:06 0:00:02 0:00:04 1258k 56 8119k 56 4562k 0 0 1392k 0 0:00:05 0:00:03 0:00:02 1392k 73 8119k 73 6003k 0 0 1405k 0 0:00:05 0:00:04 0:00:01 1404k 91 8119k 91 7469k 0 0 1417k 0 0:00:05 0:00:05 --:--:-- 1470k 100 8119k 100 8119k 0 0 1425k 0 0:00:05 0:00:05 --:--:-- 1547k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 425k 100 425k 0 0 752k 0 --:--:-- --:--:-- --:--:-- 752k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 425k 100 425k 0 0 913k 0 --:--:-- --:--:-- --:--:-- 914k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9464k 0 37503 0 0 304k 0 0:00:31 --:--:-- 0:00:31 302k 8 9464k 8 789k 0 0 705k 0 0:00:13 0:00:01 0:00:12 705k 18 9464k 18 1753k 0 0 827k 0 0:00:11 0:00:02 0:00:09 827k 28 9464k 28 2740k 0 0 873k 0 0:00:10 0:00:03 0:00:07 873k 39 9464k 39 3761k 0 0 913k 0 0:00:10 0:00:04 0:00:06 913k 50 9464k 50 4747k 0 0 927k 0 0:00:10 0:00:05 0:00:05 942k 60 9464k 60 5719k 0 0 934k 0 0:00:10 0:00:06 0:00:04 986k 65 9464k 65 6224k 0 0 874k 0 0:00:10 0:00:07 0:00:03 894k 69 9464k 69 6591k 0 0 803k 0 0:00:11 0:00:08 0:00:03 760k 74 9464k 74 7037k 0 0 771k 0 0:00:12 0:00:09 0:00:03 655k 79 9464k 79 7497k 0 0 740k 0 0:00:12 0:00:10 0:00:02 550k 84 9464k 84 8008k 0 0 720k 0 0:00:13 0:00:11 0:00:02 457k 90 9464k 90 8540k 0 0 704k 0 0:00:13 0:00:12 0:00:01 463k 97 9464k 97 9239k 0 0 704k 0 0:00:13 0:00:13 --:--:-- 538k 100 9464k 100 9464k 0 0 708k 0 0:00:13 0:00:13 --:--:-- 573k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 12 9464k 12 1229k 0 0 1246k 0 0:00:07 --:--:-- 0:00:07 1245k 28 9464k 28 2666k 0 0 1342k 0 0:00:07 0:00:01 0:00:06 1342k 44 9464k 44 4178k 0 0 1399k 0 0:00:06 0:00:02 0:00:04 1398k 61 9464k 61 5816k 0 0 1458k 0 0:00:06 0:00:03 0:00:03 1458k 78 9464k 78 7422k 0 0 1488k 0 0:00:06 0:00:04 0:00:02 1488k 92 9464k 92 8723k 0 0 1457k 0 0:00:06 0:00:05 0:00:01 1498k 100 9464k 100 9464k 0 0 1469k 0 0:00:06 0:00:06 --:--:-- 1525k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 11 5316k 11 625k 0 0 868k 0 0:00:06 --:--:-- 0:00:06 868k 30 5316k 30 1616k 0 0 939k 0 0:00:05 0:00:01 0:00:04 939k 49 5316k 49 2613k 0 0 960k 0 0:00:05 0:00:02 0:00:03 960k 67 5316k 67 3608k 0 0 969k 0 0:00:05 0:00:03 0:00:02 969k 83 5316k 83 4422k 0 0 937k 0 0:00:05 0:00:04 0:00:01 936k 100 5316k 100 5316k 0 0 944k 0 0:00:05 0:00:05 --:--:-- 955k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 5316k 8 443k 0 0 974k 0 0:00:05 --:--:-- 0:00:05 974k 34 5316k 34 1823k 0 0 1252k 0 0:00:04 0:00:01 0:00:03 1253k 64 5316k 64 3421k 0 0 1394k 0 0:00:03 0:00:02 0:00:01 1394k 85 5316k 85 4554k 0 0 1318k 0 0:00:04 0:00:03 0:00:01 1318k 100 5316k 100 5316k 0 0 1296k 0 0:00:04 0:00:04 --:--:-- 1296k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 17 5138k 17 917k 0 0 869k 0 0:00:05 0:00:01 0:00:04 869k 37 5138k 37 1906k 0 0 927k 0 0:00:05 0:00:02 0:00:03 927k 55 5138k 55 2852k 0 0 933k 0 0:00:05 0:00:03 0:00:02 933k 74 5138k 74 3835k 0 0 945k 0 0:00:05 0:00:04 0:00:01 945k 93 5138k 93 4796k 0 0 945k 0 0:00:05 0:00:05 --:--:-- 957k 100 5138k 100 5138k 0 0 953k 0 0:00:05 0:00:05 --:--:-- 974k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 5138k 2 138k 0 0 453k 0 0:00:11 --:--:-- 0:00:11 453k 21 5138k 21 1104k 0 0 861k 0 0:00:05 0:00:01 0:00:04 860k 50 5138k 50 2573k 0 0 1127k 0 0:00:04 0:00:02 0:00:02 1127k 73 5138k 73 3771k 0 0 1147k 0 0:00:04 0:00:03 0:00:01 1147k 100 5138k 100 5138k 0 0 1207k 0 0:00:04 0:00:04 --:--:-- 1207k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 29 1626k 29 487k 0 0 769k 0 0:00:02 --:--:-- 0:00:02 768k 86 1626k 86 1407k 0 0 859k 0 0:00:01 0:00:01 --:--:-- 858k 100 1626k 100 1626k 0 0 873k 0 0:00:01 0:00:01 --:--:-- 872k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 1626k 37 608k 0 0 634k 0 0:00:02 --:--:-- 0:00:02 634k 100 1626k 100 1626k 0 0 939k 0 0:00:01 0:00:01 --:--:-- 939k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 350k 100 350k 0 0 795k 0 --:--:-- --:--:-- --:--:-- 796k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 25 350k 25 91229 0 0 481k 0 --:--:-- --:--:-- --:--:-- 481k 100 350k 100 350k 0 0 911k 0 --:--:-- --:--:-- --:--:-- 910k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 6 2526k 6 162k 0 0 593k 0 0:00:04 --:--:-- 0:00:04 592k 45 2526k 45 1155k 0 0 920k 0 0:00:02 0:00:01 0:00:01 920k 84 2526k 84 2143k 0 0 950k 0 0:00:02 0:00:02 --:--:-- 950k 100 2526k 100 2526k 0 0 959k 0 0:00:02 0:00:02 --:--:-- 959k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 30 2526k 30 768k 0 0 987k 0 0:00:02 --:--:-- 0:00:02 986k 83 2526k 83 2112k 0 0 1190k 0 0:00:02 0:00:01 0:00:01 1190k 100 2526k 100 2526k 0 0 1224k 0 0:00:02 0:00:02 --:--:-- 1225k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 15.3M 2 444k 0 0 737k 0 0:00:21 --:--:-- 0:00:21 736k 8 15.3M 8 1392k 0 0 868k 0 0:00:18 0:00:01 0:00:17 867k 14 15.3M 14 2323k 0 0 892k 0 0:00:17 0:00:02 0:00:15 892k 20 15.3M 20 3299k 0 0 915k 0 0:00:17 0:00:03 0:00:14 915k 26 15.3M 26 4230k 0 0 918k 0 0:00:17 0:00:04 0:00:13 918k 32 15.3M 32 5186k 0 0 925k 0 0:00:17 0:00:05 0:00:12 948k 39 15.3M 39 6149k 0 0 931k 0 0:00:16 0:00:06 0:00:10 951k 44 15.3M 44 7079k 0 0 930k 0 0:00:16 0:00:07 0:00:09 950k 49 15.3M 49 7859k 0 0 913k 0 0:00:17 0:00:08 0:00:09 911k 55 15.3M 55 8798k 0 0 914k 0 0:00:17 0:00:09 0:00:08 909k 61 15.3M 61 9731k 0 0 917k 0 0:00:17 0:00:10 0:00:07 908k 68 15.3M 68 10.4M 0 0 924k 0 0:00:17 0:00:11 0:00:06 915k 74 15.3M 74 11.3M 0 0 923k 0 0:00:17 0:00:12 0:00:05 913k 80 15.3M 80 12.3M 0 0 928k 0 0:00:16 0:00:13 0:00:03 955k 86 15.3M 86 13.2M 0 0 929k 0 0:00:16 0:00:14 0:00:02 958k 91 15.3M 91 14.1M 0 0 926k 0 0:00:16 0:00:15 0:00:01 945k 97 15.3M 97 15.0M 0 0 926k 0 0:00:16 0:00:16 --:--:-- 931k 100 15.3M 100 15.3M 0 0 926k 0 0:00:16 0:00:16 --:--:-- 932k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 15.3M 4 687k 0 0 1047k 0 0:00:15 --:--:-- 0:00:15 1046k 14 15.3M 14 2323k 0 0 1403k 0 0:00:11 0:00:01 0:00:10 1403k 21 15.3M 21 3455k 0 0 1300k 0 0:00:12 0:00:02 0:00:10 1300k 29 15.3M 29 4662k 0 0 1274k 0 0:00:12 0:00:03 0:00:09 1274k 39 15.3M 39 6287k 0 0 1350k 0 0:00:11 0:00:04 0:00:07 1350k 50 15.3M 50 8017k 0 0 1416k 0 0:00:11 0:00:05 0:00:06 1465k 56 15.3M 56 8847k 0 0 1328k 0 0:00:11 0:00:06 0:00:05 1303k 61 15.3M 61 9737k 0 0 1271k 0 0:00:12 0:00:07 0:00:05 1256k 72 15.3M 72 11.1M 0 0 1314k 0 0:00:11 0:00:08 0:00:03 1343k 81 15.3M 81 12.5M 0 0 1332k 0 0:00:11 0:00:09 0:00:02 1316k 86 15.3M 86 13.3M 0 0 1281k 0 0:00:12 0:00:10 0:00:02 1128k 93 15.3M 93 14.4M 0 0 1267k 0 0:00:12 0:00:11 0:00:01 1185k 100 15.3M 100 15.3M 0 0 1286k 0 0:00:12 0:00:12 --:--:-- 1310k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2 16.0M 2 410k 0 0 767k 0 0:00:21 --:--:-- 0:00:21 766k 7 16.0M 7 1287k 0 0 838k 0 0:00:19 0:00:01 0:00:18 838k 13 16.0M 13 2200k 0 0 867k 0 0:00:19 0:00:02 0:00:17 867k 19 16.0M 19 3150k 0 0 884k 0 0:00:18 0:00:03 0:00:15 884k 24 16.0M 24 4067k 0 0 893k 0 0:00:18 0:00:04 0:00:14 893k 30 16.0M 30 4969k 0 0 897k 0 0:00:18 0:00:05 0:00:13 911k 35 16.0M 35 5931k 0 0 907k 0 0:00:18 0:00:06 0:00:12 928k 40 16.0M 40 6696k 0 0 888k 0 0:00:18 0:00:07 0:00:11 899k 46 16.0M 46 7594k 0 0 889k 0 0:00:18 0:00:08 0:00:10 893k 51 16.0M 51 8442k 0 0 885k 0 0:00:18 0:00:09 0:00:09 877k 56 16.0M 56 9354k 0 0 887k 0 0:00:18 0:00:10 0:00:08 877k 62 16.0M 62 10.0M 0 0 890k 0 0:00:18 0:00:11 0:00:07 867k 67 16.0M 67 10.8M 0 0 888k 0 0:00:18 0:00:12 0:00:06 889k 73 16.0M 73 11.7M 0 0 890k 0 0:00:18 0:00:13 0:00:05 893k 78 16.0M 78 12.6M 0 0 891k 0 0:00:18 0:00:14 0:00:04 902k 84 16.0M 84 13.5M 0 0 891k 0 0:00:18 0:00:15 0:00:03 899k 89 16.0M 89 14.3M 0 0 891k 0 0:00:18 0:00:16 0:00:02 893k 95 16.0M 95 15.3M 0 0 894k 0 0:00:18 0:00:17 0:00:01 910k 100 16.0M 100 16.0M 0 0 896k 0 0:00:18 0:00:18 --:--:-- 913k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 16.0M 0 15721 0 0 57977 0 0:04:51 --:--:-- 0:04:51 58011 9 16.0M 9 1599k 0 0 1266k 0 0:00:13 0:00:01 0:00:12 1266k 16 16.0M 16 2652k 0 0 1173k 0 0:00:14 0:00:02 0:00:12 1173k 26 16.0M 26 4294k 0 0 1317k 0 0:00:12 0:00:03 0:00:09 1317k 36 16.0M 36 5952k 0 0 1397k 0 0:00:11 0:00:04 0:00:07 1397k 46 16.0M 46 7622k 0 0 1449k 0 0:00:11 0:00:05 0:00:06 1524k 50 16.0M 50 8351k 0 0 1333k 0 0:00:12 0:00:06 0:00:06 1350k 59 16.0M 59 9785k 0 0 1347k 0 0:00:12 0:00:07 0:00:05 1426k 69 16.0M 69 11.1M 0 0 1381k 0 0:00:11 0:00:08 0:00:03 1423k 79 16.0M 79 12.7M 0 0 1414k 0 0:00:11 0:00:09 0:00:02 1429k 84 16.0M 84 13.5M 0 0 1353k 0 0:00:12 0:00:10 0:00:02 1253k 88 16.0M 88 14.3M 0 0 1301k 0 0:00:12 0:00:11 0:00:01 1261k 98 16.0M 98 15.8M 0 0 1322k 0 0:00:12 0:00:12 --:--:-- 1285k 100 16.0M 100 16.0M 0 0 1306k 0 0:00:12 0:00:12 --:--:-- 1165k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 46 1746k 46 816k 0 0 748k 0 0:00:02 0:00:01 0:00:01 747k 100 1746k 100 1746k 0 0 875k 0 0:00:01 0:00:01 --:--:-- 875k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 1746k 16 281k 0 0 534k 0 0:00:03 --:--:-- 0:00:03 533k 43 1746k 43 752k 0 0 469k 0 0:00:03 0:00:01 0:00:02 469k 72 1746k 72 1264k 0 0 501k 0 0:00:03 0:00:02 0:00:01 501k 100 1746k 100 1746k 0 0 558k 0 0:00:03 0:00:03 --:--:-- 558k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 1435k 0 1203 0 0 14769 0 0:01:39 --:--:-- 0:01:39 14670 62 1435k 62 895k 0 0 830k 0 0:00:01 0:00:01 --:--:-- 830k 100 1435k 100 1435k 0 0 855k 0 0:00:01 0:00:01 --:--:-- 854k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 1435k 5 85419 0 0 236k 0 0:00:06 --:--:-- 0:00:06 235k 48 1435k 48 700k 0 0 517k 0 0:00:02 0:00:01 0:00:01 517k 85 1435k 85 1226k 0 0 520k 0 0:00:02 0:00:02 --:--:-- 520k 100 1435k 100 1435k 0 0 511k 0 0:00:02 0:00:02 --:--:-- 511k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 14 1586k 14 235k 0 0 641k 0 0:00:02 --:--:-- 0:00:02 640k 74 1586k 74 1180k 0 0 857k 0 0:00:01 0:00:01 --:--:-- 857k 100 1586k 100 1586k 0 0 895k 0 0:00:01 0:00:01 --:--:-- 895k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 1586k 24 392k 0 0 773k 0 0:00:02 --:--:-- 0:00:02 772k 100 1586k 100 1586k 0 0 1156k 0 0:00:01 0:00:01 --:--:-- 1157k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 94 475k 94 450k 0 0 808k 0 --:--:-- --:--:-- --:--:-- 809k 100 475k 100 475k 0 0 819k 0 --:--:-- --:--:-- --:--:-- 818k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 475k 0 1205 0 0 7625 0 0:01:03 --:--:-- 0:01:03 7626 100 475k 100 475k 0 0 949k 0 --:--:-- --:--:-- --:--:-- 948k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 56 1486k 56 846k 0 0 889k 0 0:00:01 --:--:-- 0:00:01 888k 100 1486k 100 1486k 0 0 924k 0 0:00:01 0:00:01 --:--:-- 924k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 20 1486k 20 297k 0 0 538k 0 0:00:02 --:--:-- 0:00:02 538k 100 1486k 100 1486k 0 0 1002k 0 0:00:01 0:00:01 --:--:-- 1003k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 121k 0 --:--:-- --:--:-- --:--:-- 122k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 9796 100 9796 0 0 88264 0 --:--:-- --:--:-- --:--:-- 88252 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 38 186k 38 72353 0 0 358k 0 --:--:-- --:--:-- --:--:-- 356k 100 186k 100 186k 0 0 567k 0 --:--:-- --:--:-- --:--:-- 567k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 186k 100 186k 0 0 623k 0 --:--:-- --:--:-- --:--:-- 626k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 96939 100 96939 0 0 488k 0 --:--:-- --:--:-- --:--:-- 490k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 96939 100 96939 0 0 432k 0 --:--:-- --:--:-- --:--:-- 434k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 15.7M 3 487k 0 0 759k 0 0:00:21 --:--:-- 0:00:21 759k 6 15.7M 6 1060k 0 0 641k 0 0:00:25 0:00:01 0:00:24 641k 9 15.7M 9 1552k 0 0 587k 0 0:00:27 0:00:02 0:00:25 587k 13 15.7M 13 2191k 0 0 601k 0 0:00:26 0:00:03 0:00:23 601k 18 15.7M 18 3056k 0 0 658k 0 0:00:24 0:00:04 0:00:20 658k 24 15.7M 24 4008k 0 0 710k 0 0:00:22 0:00:05 0:00:17 704k 30 15.7M 30 4965k 0 0 746k 0 0:00:21 0:00:06 0:00:15 781k 36 15.7M 36 5919k 0 0 773k 0 0:00:20 0:00:07 0:00:13 870k 42 15.7M 42 6910k 0 0 799k 0 0:00:20 0:00:08 0:00:12 943k 48 15.7M 48 7897k 0 0 819k 0 0:00:19 0:00:09 0:00:10 968k 55 15.7M 55 8877k 0 0 832k 0 0:00:19 0:00:10 0:00:09 969k 60 15.7M 60 9823k 0 0 843k 0 0:00:19 0:00:11 0:00:08 972k 67 15.7M 67 10.5M 0 0 856k 0 0:00:18 0:00:12 0:00:06 985k 73 15.7M 73 11.5M 0 0 864k 0 0:00:18 0:00:13 0:00:05 977k 78 15.7M 78 12.4M 0 0 868k 0 0:00:18 0:00:14 0:00:04 963k 84 15.7M 84 13.3M 0 0 872k 0 0:00:18 0:00:15 0:00:03 959k 90 15.7M 90 14.3M 0 0 879k 0 0:00:18 0:00:16 0:00:02 964k 96 15.7M 96 15.1M 0 0 881k 0 0:00:18 0:00:17 0:00:01 944k 100 15.7M 100 15.7M 0 0 884k 0 0:00:18 0:00:18 --:--:-- 942k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 15.7M 0 94130 0 0 309k 0 0:00:52 --:--:-- 0:00:52 309k 7 15.7M 7 1185k 0 0 914k 0 0:00:17 0:00:01 0:00:16 914k 16 15.7M 16 2708k 0 0 1179k 0 0:00:13 0:00:02 0:00:11 1178k 26 15.7M 26 4202k 0 0 1274k 0 0:00:12 0:00:03 0:00:09 1275k 33 15.7M 33 5348k 0 0 1244k 0 0:00:12 0:00:04 0:00:08 1244k 40 15.7M 40 6481k 0 0 1222k 0 0:00:13 0:00:05 0:00:08 1277k 49 15.7M 49 7912k 0 0 1256k 0 0:00:12 0:00:06 0:00:06 1345k 57 15.7M 57 9209k 0 0 1261k 0 0:00:12 0:00:07 0:00:05 1300k 62 15.7M 62 9.8M 0 0 1221k 0 0:00:13 0:00:08 0:00:05 1186k 72 15.7M 72 11.4M 0 0 1258k 0 0:00:12 0:00:09 0:00:03 1270k 82 15.7M 82 13.0M 0 0 1297k 0 0:00:12 0:00:10 0:00:02 1377k 89 15.7M 89 14.0M 0 0 1274k 0 0:00:12 0:00:11 0:00:01 1298k 96 15.7M 96 15.2M 0 0 1268k 0 0:00:12 0:00:12 --:--:-- 1277k 100 15.7M 100 15.7M 0 0 1278k 0 0:00:12 0:00:12 --:--:-- 1387k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 37 503k 37 189k 0 0 601k 0 --:--:-- --:--:-- --:--:-- 600k 100 503k 100 503k 0 0 769k 0 --:--:-- --:--:-- --:--:-- 768k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 81 503k 81 408k 0 0 811k 0 --:--:-- --:--:-- --:--:-- 809k 100 503k 100 503k 0 0 902k 0 --:--:-- --:--:-- --:--:-- 902k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 65 617k 65 402k 0 0 642k 0 --:--:-- --:--:-- --:--:-- 641k 100 617k 100 617k 0 0 752k 0 --:--:-- --:--:-- --:--:-- 752k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 617k 100 617k 0 0 852k 0 --:--:-- --:--:-- --:--:-- 852k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 372k 100 372k 0 0 767k 0 --:--:-- --:--:-- --:--:-- 768k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 372k 0 1205 0 0 5691 0 0:01:07 --:--:-- 0:01:07 5683 100 372k 100 372k 0 0 670k 0 --:--:-- --:--:-- --:--:-- 669k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 24 551k 24 134k 0 0 517k 0 0:00:01 --:--:-- 0:00:01 517k 100 551k 100 551k 0 0 789k 0 --:--:-- --:--:-- --:--:-- 788k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 79 551k 79 437k 0 0 282k 0 0:00:01 0:00:01 --:--:-- 282k 100 551k 100 551k 0 0 335k 0 0:00:01 0:00:01 --:--:-- 335k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 23150 100 23150 0 0 179k 0 --:--:-- --:--:-- --:--:-- 180k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 23150 100 23150 0 0 91630 0 --:--:-- --:--:-- --:--:-- 91865 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 42 557k 42 236k 0 0 638k 0 --:--:-- --:--:-- --:--:-- 639k 100 557k 100 557k 0 0 765k 0 --:--:-- --:--:-- --:--:-- 765k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 54 557k 54 301k 0 0 519k 0 0:00:01 --:--:-- 0:00:01 519k 100 557k 100 557k 0 0 577k 0 --:--:-- --:--:-- --:--:-- 576k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 159k 100 159k 0 0 526k 0 --:--:-- --:--:-- --:--:-- 527k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 159k 100 159k 0 0 454k 0 --:--:-- --:--:-- --:--:-- 455k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 169k 0 --:--:-- --:--:-- --:--:-- 171k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 12288 100 12288 0 0 107k 0 --:--:-- --:--:-- --:--:-- 109k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 5006k 0 1206 0 0 6510 0 0:13:07 --:--:-- 0:13:07 6483 19 5006k 19 990k 0 0 844k 0 0:00:05 0:00:01 0:00:04 844k 40 5006k 40 2013k 0 0 926k 0 0:00:05 0:00:02 0:00:03 926k 59 5006k 59 2984k 0 0 940k 0 0:00:05 0:00:03 0:00:02 940k 77 5006k 77 3880k 0 0 929k 0 0:00:05 0:00:04 0:00:01 929k 97 5006k 97 4890k 0 0 945k 0 0:00:05 0:00:05 --:--:-- 979k 100 5006k 100 5006k 0 0 939k 0 0:00:05 0:00:05 --:--:-- 966k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 5006k 16 819k 0 0 774k 0 0:00:06 0:00:01 0:00:05 774k 28 5006k 28 1447k 0 0 710k 0 0:00:07 0:00:02 0:00:05 709k 57 5006k 57 2902k 0 0 954k 0 0:00:05 0:00:03 0:00:02 954k 84 5006k 84 4250k 0 0 1052k 0 0:00:04 0:00:04 --:--:-- 1052k 100 5006k 100 5006k 0 0 1095k 0 0:00:04 0:00:04 --:--:-- 1104k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 72 933k 72 678k 0 0 814k 0 0:00:01 --:--:-- 0:00:01 814k 100 933k 100 933k 0 0 840k 0 0:00:01 0:00:01 --:--:-- 840k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 933k 1 15728 0 0 27729 0 0:00:34 --:--:-- 0:00:34 27738 31 933k 31 291k 0 0 203k 0 0:00:04 0:00:01 0:00:03 202k 100 933k 100 933k 0 0 463k 0 0:00:02 0:00:02 --:--:-- 463k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 9 4122k 9 403k 0 0 567k 0 0:00:07 --:--:-- 0:00:07 566k 34 4122k 34 1433k 0 0 837k 0 0:00:04 0:00:01 0:00:03 836k 61 4122k 61 2515k 0 0 927k 0 0:00:04 0:00:02 0:00:02 927k 85 4122k 85 3512k 0 0 946k 0 0:00:04 0:00:03 0:00:01 946k 100 4122k 100 4122k 0 0 959k 0 0:00:04 0:00:04 --:--:-- 959k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 4122k 1 44766 0 0 107k 0 0:00:38 --:--:-- 0:00:38 107k 33 4122k 33 1365k 0 0 980k 0 0:00:04 0:00:01 0:00:03 980k 67 4122k 67 2788k 0 0 1165k 0 0:00:03 0:00:02 0:00:01 1165k 98 4122k 98 4049k 0 0 1193k 0 0:00:03 0:00:03 --:--:-- 1193k 100 4122k 100 4122k 0 0 1198k 0 0:00:03 0:00:03 --:--:-- 1198k % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 57 525k 57 303k 0 0 789k 0 --:--:-- --:--:-- --:--:-- 789k 100 525k 100 525k 0 0 874k 0 --:--:-- --:--:-- --:--:-- 874k + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 525k 100 525k 0 0 761k 0 --:--:-- --:--:-- --:--:-- 762k diff -Nru libreoffice-l10n-5.0.2~rc2/svl/source/items/style.cxx libreoffice-l10n-5.0.3~rc2/svl/source/items/style.cxx --- libreoffice-l10n-5.0.2~rc2/svl/source/items/style.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svl/source/items/style.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -284,6 +284,11 @@ return *pSet; } +std::unique_ptr SfxStyleSheetBase::GetItemSetForPreview() +{ + return std::unique_ptr(new SfxItemSet(GetItemSet())); +} + /** * Set help file and ID and return it */ diff -Nru libreoffice-l10n-5.0.2~rc2/svl/source/numbers/zformat.cxx libreoffice-l10n-5.0.3~rc2/svl/source/numbers/zformat.cxx --- libreoffice-l10n-5.0.2~rc2/svl/source/numbers/zformat.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svl/source/numbers/zformat.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -55,6 +55,11 @@ const sal_uInt16 UPPER_PRECISION = 300; // entirely arbitrary... const double EXP_LOWER_BOUND = 1.0E-4; // prefer scientific notation below this value. +const double EXP_ABS_UPPER_BOUND = 1.0E15; // use exponential notation above that absolute value. + // Back in time was E16 that lead + // to display rounding errors, see + // also sal/rtl/math.cxx + // doubleToString() } // namespace @@ -1717,7 +1722,7 @@ { sal_uInt16 nStandardPrec = rScan.GetStandardPrec(); - if ( fabs(fNumber) > 1.0E15 ) // #58531# was E16 + if ( fabs(fNumber) > EXP_ABS_UPPER_BOUND ) { nStandardPrec = ::std::min(nStandardPrec, static_cast(14)); // limits to 14 decimals rOutString = ::rtl::math::doubleToUString( fNumber, @@ -2110,27 +2115,40 @@ } fNumber = -fNumber; } + /* TODO: why did we insist on 10 decimals for the non-exponent + * case? doubleToUString() handles rtl_math_DecimalPlaces_Max + * gracefully when used with rtl_math_StringFormat_Automatic, + * so all that special casing and mumbo-jumbo in the else + * branch below might not be needed at all. */ + if (fNumber > EXP_ABS_UPPER_BOUND) + { + sBuff.append( ::rtl::math::doubleToUString( fNumber, + rtl_math_StringFormat_Automatic, + rtl_math_DecimalPlaces_Max, + GetFormatter().GetNumDecimalSep()[0], true)); + } + else { OUString sTemp; ImpGetOutputStdToPrecision(fNumber, sTemp, 10); // Use 10 decimals for general 'unlimited' format. sBuff.append(sTemp); - } - if (fNumber < EXP_LOWER_BOUND) - { - sal_Int32 nLen = sBuff.getLength(); - if (!nLen) + if (fNumber < EXP_LOWER_BOUND) { - return false; - } - // #i112250# With the 10-decimal limit, small numbers are formatted as "0". - // Switch to scientific in that case, too: - if (nLen > 11 || ((nLen == 1 && sBuff[0] == '0') && fNumber != 0.0)) - { - sal_uInt16 nStandardPrec = rScan.GetStandardPrec(); - nStandardPrec = ::std::min(nStandardPrec, static_cast(14)); // limits to 14 decimals - sBuff = ::rtl::math::doubleToUString( fNumber, - rtl_math_StringFormat_E2, nStandardPrec /*2*/, - GetFormatter().GetNumDecimalSep()[0], true); + sal_Int32 nLen = sBuff.getLength(); + if (!nLen) + { + return false; + } + // #i112250# With the 10-decimal limit, small numbers are formatted as "0". + // Switch to scientific in that case, too: + if (nLen > 11 || ((nLen == 1 && sBuff[0] == '0') && fNumber != 0.0)) + { + sal_uInt16 nStandardPrec = rScan.GetStandardPrec(); + nStandardPrec = ::std::min(nStandardPrec, static_cast(14)); // limits to 14 decimals + sBuff = ::rtl::math::doubleToUString( fNumber, + rtl_math_StringFormat_E2, nStandardPrec /*2*/, + GetFormatter().GetNumDecimalSep()[0], true); + } } } if (bSign) diff -Nru libreoffice-l10n-5.0.2~rc2/svtools/source/filter/DocumentToGraphicRenderer.cxx libreoffice-l10n-5.0.3~rc2/svtools/source/filter/DocumentToGraphicRenderer.cxx --- libreoffice-l10n-5.0.2~rc2/svtools/source/filter/DocumentToGraphicRenderer.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svtools/source/filter/DocumentToGraphicRenderer.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -94,7 +94,8 @@ Graphic DocumentToGraphicRenderer::renderToGraphic( sal_Int32 aCurrentPage, Size aDocumentSizePixel, - Size aTargetSizePixel) + Size aTargetSizePixel, + Color aPageColor) { if (!mxModel.is() || !mxController.is() || !mxRenderable.is()) @@ -127,6 +128,12 @@ aMtf.Record( pOutputDev ); + if (aPageColor != Color(COL_TRANSPARENT)) + { + pOutputDev->SetBackground(Wallpaper(aPageColor)); + pOutputDev->Erase(); + } + uno::Any aSelection; aSelection <<= mxDocument; mxRenderable->render(aCurrentPage - 1, aSelection, renderProps ); diff -Nru libreoffice-l10n-5.0.2~rc2/svx/source/fmcomp/gridcell.cxx libreoffice-l10n-5.0.3~rc2/svx/source/fmcomp/gridcell.cxx --- libreoffice-l10n-5.0.2~rc2/svx/source/fmcomp/gridcell.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svx/source/fmcomp/gridcell.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -3255,6 +3255,7 @@ Reference< ::com::sun::star::awt::XControlModel > FmXGridCell::getModel() throw( ::com::sun::star::uno::RuntimeException, std::exception ) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); return Reference< ::com::sun::star::awt::XControlModel > (m_pColumn->getModel(), UNO_QUERY); } @@ -3262,12 +3263,14 @@ sal_Bool FmXGridCell::getLock() throw( RuntimeException, std::exception ) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); return m_pColumn->isLocked(); } void FmXGridCell::setLock(sal_Bool _bLock) throw( RuntimeException, std::exception ) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); if (getLock() == _bLock) return; else @@ -3322,60 +3325,70 @@ void SAL_CALL FmXGridCell::addWindowListener( const Reference< awt::XWindowListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aWindowListeners.addInterface( _rxListener ); } void SAL_CALL FmXGridCell::removeWindowListener( const Reference< awt::XWindowListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aWindowListeners.removeInterface( _rxListener ); } void SAL_CALL FmXGridCell::addFocusListener( const Reference< awt::XFocusListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aFocusListeners.addInterface( _rxListener ); } void SAL_CALL FmXGridCell::removeFocusListener( const Reference< awt::XFocusListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aFocusListeners.removeInterface( _rxListener ); } void SAL_CALL FmXGridCell::addKeyListener( const Reference< awt::XKeyListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aKeyListeners.addInterface( _rxListener ); } void SAL_CALL FmXGridCell::removeKeyListener( const Reference< awt::XKeyListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aKeyListeners.removeInterface( _rxListener ); } void SAL_CALL FmXGridCell::addMouseListener( const Reference< awt::XMouseListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aMouseListeners.addInterface( _rxListener ); } void SAL_CALL FmXGridCell::removeMouseListener( const Reference< awt::XMouseListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aMouseListeners.removeInterface( _rxListener ); } void SAL_CALL FmXGridCell::addMouseMotionListener( const Reference< awt::XMouseMotionListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aMouseMotionListeners.addInterface( _rxListener ); } void SAL_CALL FmXGridCell::removeMouseMotionListener( const Reference< awt::XMouseMotionListener >& _rxListener ) throw (RuntimeException, std::exception) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aMouseMotionListeners.removeInterface( _rxListener ); } @@ -3405,12 +3418,14 @@ void FmXGridCell::onFocusGained( const awt::FocusEvent& _rEvent ) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aFocusListeners.notifyEach( &awt::XFocusListener::focusGained, _rEvent ); } void FmXGridCell::onFocusLost( const awt::FocusEvent& _rEvent ) { + checkDisposed(OComponentHelper::rBHelper.bDisposed); m_aFocusListeners.notifyEach( &awt::XFocusListener::focusLost, _rEvent ); } diff -Nru libreoffice-l10n-5.0.2~rc2/svx/source/stbctrls/stbctrls.src libreoffice-l10n-5.0.3~rc2/svx/source/stbctrls/stbctrls.src --- libreoffice-l10n-5.0.2~rc2/svx/source/stbctrls/stbctrls.src 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svx/source/stbctrls/stbctrls.src 2015-10-24 15:21:49.000000000 +0000 @@ -126,11 +126,6 @@ Text [ en-US ] = "Zoom level. Right-click to change zoom level or click to open Zoom dialog."; }; -String RID_SVXSTR_ZOOM -{ - Text [ en-US ] = "Adjust zoom level"; -}; - String RID_SVXSTR_ZOOM_IN { Text [ en-US ] = "Zoom In"; diff -Nru libreoffice-l10n-5.0.2~rc2/svx/source/stbctrls/zoomsliderctrl.cxx libreoffice-l10n-5.0.3~rc2/svx/source/stbctrls/zoomsliderctrl.cxx --- libreoffice-l10n-5.0.2~rc2/svx/source/stbctrls/zoomsliderctrl.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svx/source/stbctrls/zoomsliderctrl.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -390,7 +390,8 @@ nXDiff <= aControlRect.GetWidth() - nSliderXOffset + nButtonRightOffset ) GetStatusBar().SetQuickHelpText(GetId(), SVX_RESSTR(RID_SVXSTR_ZOOM_IN)); else - GetStatusBar().SetQuickHelpText(GetId(), SVX_RESSTR(RID_SVXSTR_ZOOM)); + // don't hide the slider and its handle with a tooltip during zooming + GetStatusBar().SetQuickHelpText(GetId(), ""); return true; } diff -Nru libreoffice-l10n-5.0.2~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx libreoffice-l10n-5.0.3~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx --- libreoffice-l10n-5.0.2~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -47,7 +47,7 @@ const SfxObjectShell& rShell, OutputDevice& rOutputDev, SfxStyleSheetBase* pStyle, long nMaxHeight) : StylePreviewRenderer(rShell, rOutputDev, pStyle, nMaxHeight) - , maFont() + , m_pFont() , maFontColor(COL_AUTO) , maBackgroundColor(COL_AUTO) , maPixelSize() @@ -60,65 +60,69 @@ bool CommonStylePreviewRenderer::recalculate() { - const SfxItemSet& aItemSet = mpStyle->GetItemSet(); + m_pFont.reset(); - maFont = SvxFont(); + std::unique_ptr pItemSet(mpStyle->GetItemSetForPreview()); + + if (!pItemSet) return false; + + std::unique_ptr pFont(new SvxFont); const SfxPoolItem* pItem; - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_WEIGHT)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_WEIGHT)) != nullptr) { - maFont.SetWeight(static_cast(pItem)->GetWeight()); + pFont->SetWeight(static_cast(pItem)->GetWeight()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_POSTURE)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_POSTURE)) != nullptr) { - maFont.SetItalic(static_cast(pItem)->GetPosture()); + pFont->SetItalic(static_cast(pItem)->GetPosture()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_CONTOUR)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_CONTOUR)) != nullptr) { - maFont.SetOutline(static_cast< const SvxContourItem*>(pItem)->GetValue()); + pFont->SetOutline(static_cast< const SvxContourItem*>(pItem)->GetValue()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_SHADOWED)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_SHADOWED)) != nullptr) { - maFont.SetShadow(static_cast(pItem)->GetValue()); + pFont->SetShadow(static_cast(pItem)->GetValue()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_RELIEF)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_RELIEF)) != nullptr) { - maFont.SetRelief(static_cast(static_cast(pItem)->GetValue())); + pFont->SetRelief(static_cast(static_cast(pItem)->GetValue())); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_UNDERLINE)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_UNDERLINE)) != nullptr) { - maFont.SetUnderline(static_cast< const SvxUnderlineItem*>(pItem)->GetLineStyle()); + pFont->SetUnderline(static_cast< const SvxUnderlineItem*>(pItem)->GetLineStyle()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_OVERLINE)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_OVERLINE)) != nullptr) { - maFont.SetOverline(static_cast(static_cast(pItem)->GetValue())); + pFont->SetOverline(static_cast(static_cast(pItem)->GetValue())); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_STRIKEOUT)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_STRIKEOUT)) != nullptr) { - maFont.SetStrikeout(static_cast(pItem)->GetStrikeout()); + pFont->SetStrikeout(static_cast(pItem)->GetStrikeout()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_CASEMAP)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_CASEMAP)) != nullptr) { - maFont.SetCaseMap(static_cast(pItem)->GetCaseMap()); + pFont->SetCaseMap(static_cast(pItem)->GetCaseMap()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_EMPHASISMARK)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_EMPHASISMARK)) != nullptr) { - maFont.SetEmphasisMark(static_cast(pItem)->GetEmphasisMark()); + pFont->SetEmphasisMark(static_cast(pItem)->GetEmphasisMark()); } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_COLOR)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_COLOR)) != nullptr) { maFontColor = Color(static_cast(pItem)->GetValue()); } if (mpStyle->GetFamily() == SFX_STYLE_FAMILY_PARA) { - if ((pItem = aItemSet.GetItem(XATTR_FILLSTYLE)) != nullptr) + if ((pItem = pItemSet->GetItem(XATTR_FILLSTYLE)) != nullptr) { sal_uInt16 aFillStyle = static_cast(pItem)->GetValue(); if (aFillStyle == drawing::FillStyle_SOLID) { - if ((pItem = aItemSet.GetItem(XATTR_FILLCOLOR)) != nullptr) + if ((pItem = pItemSet->GetItem(XATTR_FILLCOLOR)) != nullptr) { maBackgroundColor = Color(static_cast(pItem)->GetColorValue()); } @@ -126,27 +130,27 @@ } } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_FONT)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_FONT)) != nullptr) { const SvxFontItem* pFontItem = static_cast(pItem); - maFont.SetName(pFontItem->GetFamilyName()); - maFont.SetStyleName(pFontItem->GetStyleName()); + pFont->SetName(pFontItem->GetFamilyName()); + pFont->SetStyleName(pFontItem->GetStyleName()); } else { return false; } - if ((pItem = aItemSet.GetItem(SID_ATTR_CHAR_FONTHEIGHT)) != nullptr) + if ((pItem = pItemSet->GetItem(SID_ATTR_CHAR_FONTHEIGHT)) != nullptr) { const SvxFontHeightItem* pFontHeightItem = static_cast(pItem); Size aFontSize(0, pFontHeightItem->GetHeight()); maPixelSize = Size(mrOutputDev.LogicToPixel(aFontSize, mrShell.GetMapUnit())); - maFont.SetSize(maPixelSize); + pFont->SetSize(maPixelSize); vcl::Font aOldFont(mrOutputDev.GetFont()); - mrOutputDev.SetFont(maFont); + mrOutputDev.SetFont(*pFont); Rectangle aTextRect; mrOutputDev.GetTextBoundRect(aTextRect, mpStyle->GetName()); if (aTextRect.Bottom() > mnMaxHeight) @@ -154,7 +158,7 @@ double ratio = double(mnMaxHeight) / aTextRect.Bottom(); maPixelSize.Width() *= ratio; maPixelSize.Height() *= ratio; - maFont.SetSize(maPixelSize); + pFont->SetSize(maPixelSize); } mrOutputDev.SetFont(aOldFont); } @@ -163,12 +167,14 @@ return false; } + m_pFont = std::move(pFont); return true; } Size CommonStylePreviewRenderer::getRenderSize() { - maPixelSize = maFont.GetTextSize(&mrOutputDev, maStyleName); + assert(m_pFont); + maPixelSize = m_pFont->GetTextSize(&mrOutputDev, maStyleName); if (maPixelSize.Height() > mnMaxHeight) maPixelSize.Height() = mnMaxHeight; return maPixelSize; @@ -187,13 +193,18 @@ mrOutputDev.DrawRect(aRectangle); } - mrOutputDev.SetFont(maFont); + if (m_pFont) + { + mrOutputDev.SetFont(*m_pFont); + } if (maFontColor != COL_AUTO) mrOutputDev.SetTextColor(maFontColor); + Size aPixelSize((m_pFont) ? maPixelSize : mrOutputDev.GetFont().GetSize()); + Point aFontDrawPosition = aRectangle.TopLeft(); - if (aRectangle.GetHeight() > maPixelSize.Height()) - aFontDrawPosition.Y() += ( aRectangle.GetHeight() - maPixelSize.Height() ) / 2; + if (aRectangle.GetHeight() > aPixelSize.Height()) + aFontDrawPosition.Y() += (aRectangle.GetHeight() - aPixelSize.Height()) / 2; mrOutputDev.DrawText(aFontDrawPosition, maStyleName); diff -Nru libreoffice-l10n-5.0.2~rc2/svx/source/tbxctrls/itemwin.cxx libreoffice-l10n-5.0.3~rc2/svx/source/tbxctrls/itemwin.cxx --- libreoffice-l10n-5.0.2~rc2/svx/source/tbxctrls/itemwin.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svx/source/tbxctrls/itemwin.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -419,16 +419,19 @@ { MouseNotifyEvent nType = rNEvt.GetType(); - if ( MouseNotifyEvent::MOUSEBUTTONDOWN == nType || MouseNotifyEvent::GETFOCUS == nType ) - nCurPos = GetSelectEntryPos(); - else if ( MouseNotifyEvent::LOSEFOCUS == nType - && Application::GetFocusWindow() - && !IsWindowOrChild( Application::GetFocusWindow(), true ) ) + if (!isDisposed()) { - if ( !bSelect ) - SelectEntryPos( nCurPos ); - else - bSelect = false; + if ( MouseNotifyEvent::MOUSEBUTTONDOWN == nType || MouseNotifyEvent::GETFOCUS == nType ) + nCurPos = GetSelectEntryPos(); + else if ( MouseNotifyEvent::LOSEFOCUS == nType + && Application::GetFocusWindow() + && !IsWindowOrChild( Application::GetFocusWindow(), true ) ) + { + if ( !bSelect ) + SelectEntryPos( nCurPos ); + else + bSelect = false; + } } return FillTypeLB::PreNotify( rNEvt ); @@ -440,6 +443,9 @@ { bool nHandled = FillTypeLB::Notify( rNEvt ); + if (isDisposed()) + return false; + if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT ) { const KeyEvent* pKEvt = rNEvt.GetKeyEvent(); diff -Nru libreoffice-l10n-5.0.2~rc2/svx/source/tbxctrls/tbcontrl.cxx libreoffice-l10n-5.0.3~rc2/svx/source/tbxctrls/tbcontrl.cxx --- libreoffice-l10n-5.0.2~rc2/svx/source/tbxctrls/tbcontrl.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/svx/source/tbxctrls/tbcontrl.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -639,10 +639,13 @@ if (pStyle ) { - const SfxItemSet& aItemSet = pStyle->GetItemSet(); + std::unique_ptr const pItemSet(pStyle->GetItemSetForPreview()); + if (!pItemSet) return; - const SvxFontItem *pFontItem = static_cast< const SvxFontItem* >( aItemSet.GetItem( SID_ATTR_CHAR_FONT ) ); - const SvxFontHeightItem *pFontHeightItem = static_cast< const SvxFontHeightItem* >( aItemSet.GetItem( SID_ATTR_CHAR_FONTHEIGHT ) ); + const SvxFontItem * const pFontItem = + static_cast(pItemSet->GetItem(SID_ATTR_CHAR_FONT)); + const SvxFontHeightItem * const pFontHeightItem = + static_cast(pItemSet->GetItem(SID_ATTR_CHAR_FONTHEIGHT)); if ( pFontItem && pFontHeightItem ) { @@ -655,43 +658,43 @@ aFont.SetStyleName(pFontItem->GetStyleName()); aFont.SetSize(aPixelSize); - const SfxPoolItem *pItem = aItemSet.GetItem( SID_ATTR_CHAR_WEIGHT ); + const SfxPoolItem *pItem = pItemSet->GetItem( SID_ATTR_CHAR_WEIGHT ); if ( pItem ) aFont.SetWeight( static_cast< const SvxWeightItem* >( pItem )->GetWeight() ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_POSTURE ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_POSTURE ); if ( pItem ) aFont.SetItalic( static_cast< const SvxPostureItem* >( pItem )->GetPosture() ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_CONTOUR ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_CONTOUR ); if ( pItem ) aFont.SetOutline( static_cast< const SvxContourItem* >( pItem )->GetValue() ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_SHADOWED ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_SHADOWED ); if ( pItem ) aFont.SetShadow( static_cast< const SvxShadowedItem* >( pItem )->GetValue() ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_RELIEF ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_RELIEF ); if ( pItem ) aFont.SetRelief( static_cast< FontRelief >( static_cast< const SvxCharReliefItem* >( pItem )->GetValue() ) ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_UNDERLINE ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_UNDERLINE ); if ( pItem ) aFont.SetUnderline( static_cast< const SvxUnderlineItem* >( pItem )->GetLineStyle() ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_OVERLINE ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_OVERLINE ); if ( pItem ) aFont.SetOverline( static_cast< FontUnderline >( static_cast< const SvxOverlineItem* >( pItem )->GetValue() ) ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_STRIKEOUT ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_STRIKEOUT ); if ( pItem ) aFont.SetStrikeout( static_cast< const SvxCrossedOutItem* >( pItem )->GetStrikeout() ); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_CASEMAP ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_CASEMAP ); if ( pItem ) aFont.SetCaseMap(static_cast(pItem)->GetCaseMap()); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_EMPHASISMARK ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_EMPHASISMARK ); if ( pItem ) aFont.SetEmphasisMark( static_cast< const SvxEmphasisMarkItem* >( pItem )->GetEmphasisMark() ); @@ -702,14 +705,14 @@ rRenderContext.SetFont(aFont); - pItem = aItemSet.GetItem( SID_ATTR_CHAR_COLOR ); + pItem = pItemSet->GetItem( SID_ATTR_CHAR_COLOR ); // text color, when nothing is selected if ( (NULL != pItem) && bIsNotSelected) aFontCol = Color( static_cast< const SvxColorItem* >( pItem )->GetValue() ); sal_uInt16 style = drawing::FillStyle_NONE; // which kind of Fill style is selected - pItem = aItemSet.GetItem( XATTR_FILLSTYLE ); + pItem = pItemSet->GetItem( XATTR_FILLSTYLE ); // only when ok and not selected if ( (NULL != pItem) && bIsNotSelected) style = static_cast< const XFillStyleItem* >( pItem )->GetValue(); @@ -719,7 +722,7 @@ case drawing::FillStyle_SOLID: { // set background color - pItem = aItemSet.GetItem( XATTR_FILLCOLOR ); + pItem = pItemSet->GetItem( XATTR_FILLCOLOR ); if ( NULL != pItem ) aBackCol = Color( static_cast< const XFillColorItem* >( pItem )->GetColorValue() ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/inc/docstyle.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/docstyle.hxx --- libreoffice-l10n-5.0.2~rc2/sw/inc/docstyle.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/inc/docstyle.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -61,10 +61,12 @@ enum FillStyleType { FillOnlyName, FillAllInfo, - FillPhysical + FillPhysical, + FillPreview, }; - SAL_DLLPRIVATE bool FillStyleSheet( FillStyleType eFType ); + SAL_DLLPRIVATE bool FillStyleSheet(FillStyleType eFType, + std::unique_ptr * o_ppFlatSet = nullptr); protected: virtual ~SwDocStyleSheet(); @@ -99,6 +101,7 @@ const bool bResetIndentAttrsAtParagraphStyle = false ); virtual SfxItemSet& GetItemSet() SAL_OVERRIDE; + virtual std::unique_ptr GetItemSetForPreview() SAL_OVERRIDE; /** new method for paragraph styles to merge indent attributes of applied list style into the given item set, if the list style indent attributes are applicable. */ void MergeIndentAttrsOfListStyle( SfxItemSet& rSet ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/inc/IDocumentContentOperations.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/IDocumentContentOperations.hxx --- libreoffice-l10n-5.0.2~rc2/sw/inc/IDocumentContentOperations.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/inc/IDocumentContentOperations.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -79,6 +79,9 @@ The position can be in the same or in an another document. It can also be within the range! + \warning The range has to include at least two nodes or has to be a + SwDoc::IsColumnSelection! + Normally this function should work only with content nodes. But there is a special case used by SwDoc::Paste, which starts the SwPaM at the content start node. This position doesn't contain any content: diff -Nru libreoffice-l10n-5.0.2~rc2/sw/inc/IDocumentStatistics.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/IDocumentStatistics.hxx --- libreoffice-l10n-5.0.2~rc2/sw/inc/IDocumentStatistics.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/inc/IDocumentStatistics.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -31,7 +31,7 @@ /** DocInfo has changed (notify via DocShell): make required fields update. */ - virtual void DocInfoChgd() = 0; + virtual void DocInfoChgd(bool isEnableSetModified) = 0; /** Document - Statistics */ diff -Nru libreoffice-l10n-5.0.2~rc2/sw/inc/ndtxt.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/ndtxt.hxx --- libreoffice-l10n-5.0.2~rc2/sw/inc/ndtxt.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/inc/ndtxt.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -184,13 +184,16 @@ void DelFrms_TextNodePart(); public: + enum class WrongState { TODO, PENDING, DONE }; + bool IsWordCountDirty() const; + WrongState GetWrongDirty() const; bool IsWrongDirty() const; bool IsGrammarCheckDirty() const; bool IsSmartTagDirty() const; bool IsAutoCompleteWordDirty() const; void SetWordCountDirty( bool bNew ) const; - void SetWrongDirty( bool bNew ) const; + void SetWrongDirty(WrongState eNew) const; void SetGrammarCheckDirty( bool bNew ) const; void SetSmartTagDirty( bool bNew ) const; void SetAutoCompleteWordDirty( bool bNew ) const; Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/core/data/ww8/pass/hang-9.doc and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/core/data/ww8/pass/hang-9.doc differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/htmlexport/data/tdf90905.odt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/htmlexport/data/tdf90905.odt differ diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/htmlexport/htmlexport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -250,7 +250,8 @@ CPPUNIT_ASSERT(pDoc); // Internal url should be valid - assertXPath(pDoc, "/html/body/p/a", "href", "#0.0.1.Text|outline"); + assertXPath(pDoc, "/html/body/p[1]/a", "href", "#0.0.1.Text|outline"); + assertXPath(pDoc, "/html/body/p[2]/a", "href", "#bookmark"); } CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/odfexport/odfexport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/odfexport/odfexport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfexport/odfexport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -119,38 +119,38 @@ xTextFrame = getShape(8); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, getProperty(xTextFrame, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Black 0 Degrees"), getProperty(xTextFrame, "FillHatchName")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(false), getProperty(xTextFrame, "FillBackground")); + CPPUNIT_ASSERT_EQUAL(false, getProperty(xTextFrame, "FillBackground")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillTransparence")); //Frame 9 xTextFrame = getShape(9); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, getProperty(xTextFrame, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Black 0 Degrees"), getProperty(xTextFrame, "FillHatchName")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(true), getProperty(xTextFrame, "FillBackground")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xTextFrame, "FillBackground")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillTransparence")); //Frame 10 xTextFrame = getShape(10); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, getProperty(xTextFrame, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Black 0 Degrees"), getProperty(xTextFrame, "FillHatchName")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(false), getProperty(xTextFrame, "FillBackground")); + CPPUNIT_ASSERT_EQUAL(false, getProperty(xTextFrame, "FillBackground")); CPPUNIT_ASSERT_EQUAL(sal_Int32(45), getProperty(xTextFrame, "FillTransparence")); //Frame 11 xTextFrame = getShape(11); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, getProperty(xTextFrame, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Black 0 Degrees"), getProperty(xTextFrame, "FillHatchName")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(true), getProperty(xTextFrame, "FillBackground")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xTextFrame, "FillBackground")); CPPUNIT_ASSERT_EQUAL(sal_Int32(45), getProperty(xTextFrame, "FillTransparence")); //Frame 12 xTextFrame = getShape(12); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, getProperty(xTextFrame, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Black 0 Degrees"), getProperty(xTextFrame, "FillHatchName")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(false), getProperty(xTextFrame, "FillBackground")); + CPPUNIT_ASSERT_EQUAL(false, getProperty(xTextFrame, "FillBackground")); aGradientxTextFrame = getProperty(xTextFrame, "FillTransparenceGradient"); CPPUNIT_ASSERT_EQUAL(css::awt::GradientStyle_LINEAR, aGradientxTextFrame.Style); //Frame 13 xTextFrame = getShape(13); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, getProperty(xTextFrame, "FillStyle")); CPPUNIT_ASSERT_EQUAL(OUString("Black 0 Degrees"), getProperty(xTextFrame, "FillHatchName")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(true), getProperty(xTextFrame, "FillBackground")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xTextFrame, "FillBackground")); aGradientxTextFrame = getProperty(xTextFrame, "FillTransparenceGradient"); CPPUNIT_ASSERT_EQUAL(css::awt::GradientStyle_LINEAR, aGradientxTextFrame.Style); //Frame 14 @@ -162,7 +162,7 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapPositionOffsetY")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapOffsetX")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapOffsetY")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(true), getProperty(xTextFrame, "FillBitmapTile")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xTextFrame, "FillBitmapTile")); //Frame 15 xTextFrame = getShape(15); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_BITMAP, getProperty(xTextFrame, "FillStyle")); @@ -172,7 +172,7 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapPositionOffsetY")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapOffsetX")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapOffsetY")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(true), getProperty(xTextFrame, "FillBitmapTile")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xTextFrame, "FillBitmapTile")); //Frame 16 xTextFrame = getShape(16); CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_BITMAP, getProperty(xTextFrame, "FillStyle")); @@ -181,7 +181,7 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapPositionOffsetY")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapOffsetX")); CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xTextFrame, "FillBitmapOffsetY")); - CPPUNIT_ASSERT_EQUAL(sal_Bool(true), getProperty(xTextFrame, "FillBitmapTile")); + CPPUNIT_ASSERT_EQUAL(true, getProperty(xTextFrame, "FillBitmapTile")); aGradientxTextFrame = getProperty(xTextFrame, "FillTransparenceGradient"); CPPUNIT_ASSERT_EQUAL(css::awt::GradientStyle_LINEAR, aGradientxTextFrame.Style); Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/odfimport/data/tdf92586.odt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfimport/data/tdf92586.odt differ diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/odfimport/odfimport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfimport/odfimport.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/odfimport/odfimport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfimport/odfimport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -606,6 +606,13 @@ CPPUNIT_ASSERT(getProperty(getParagraph(2), "ParaKeepTogether")); } +DECLARE_ODFIMPORT_TEST(testTdf92586, "tdf92586.odt") +{ + uno::Reference xPageStyle(getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY); + // This was BitmapMode_NO_REPEAT. + CPPUNIT_ASSERT_EQUAL(drawing::BitmapMode_STRETCH, getProperty(xPageStyle, "FillBitmapMode")); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/data/tdf83227.docx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/data/tdf83227.docx differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/data/tdf92521.odt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/data/tdf92521.odt differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/data/tdf93676-1.odt and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/data/tdf93676-1.odt differ diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -803,6 +803,25 @@ } +DECLARE_OOXMLEXPORT_TEST(testTdf83227, "tdf83227.docx") +{ + // Bug document contains a rotated image, which is handled as a draw shape (not as a Writer image) on export. + if (!mbExported) + return; + + uno::Reference xNameAccess = packages::zip::ZipFileAccess::createWithURL(comphelper::getComponentContext(m_xSFactory), maTempFile.GetURL()); + CPPUNIT_ASSERT_EQUAL(true, bool(xNameAccess->hasByName("word/media/image1.png"))); + // This was also true, image was written twice. + CPPUNIT_ASSERT_EQUAL(false, bool(xNameAccess->hasByName("word/media/image2.png"))); +} + +DECLARE_OOXMLEXPORT_TEST(testTdf92521, "tdf92521.odt") +{ + if (xmlDocPtr pXmlDoc = parseExport("word/document.xml")) + // There should be a section break that's in the middle of the document: right after the table. + assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:pPr/w:sectPr", 1); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -912,6 +912,21 @@ assertXPath(pXmlDoc, "/w:document/w:body/w:p[2]/w:r[1]/mc:AlternateContent[1]/mc:Choice[1]/w:drawing[1]/wp:anchor[1]/wp:extent","cx","0"); } +// part of tdf#93676, word gives the frame in the exported .docx a huge height, +// because its exported with 255% height percentage from a 255 HeightPercent +// settings, but 255 is a special flag that the value is synced to the +// other dimension. +DECLARE_OOXMLEXPORT_TEST(testSyncedRelativePercent, "tdf93676-1.odt") +{ + xmlDocPtr pXmlDoc = parseExport("word/document.xml"); + if (!pXmlDoc) + return; + + // check no explicit pctHeight has been exported, all we care + // about at this point is that its not 255000 + assertXPath(pXmlDoc, "//wp14:pctHeight", 0); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlimport/data/tdf92124.docx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/data/tdf92124.docx differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlimport/data/tdf92454.docx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/data/tdf92454.docx differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlimport/data/tdf93919.docx and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/data/tdf93919.docx differ diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -2767,6 +2767,34 @@ CPPUNIT_ASSERT_EQUAL(static_cast(0), aGeometry["TextPreRotateAngle"].get()); } +DECLARE_OOXMLIMPORT_TEST(testTdf93919, "tdf93919.docx") +{ + // This was 0, left margin was not inherited from the list style. + CPPUNIT_ASSERT_EQUAL(static_cast(1270), getProperty(getParagraph(1), "ParaLeftMargin")); +} + +DECLARE_OOXMLIMPORT_TEST(testTdf92454, "tdf92454.docx") +{ + // The first paragraph had a large indentation / left margin as inheritance + // in Word and Writer works differently, and no direct value was set to be + // explicit. + uno::Reference xParagraph(getParagraph(1), uno::UNO_QUERY); + // This was beans::PropertyState_DEFAULT_VALUE. + CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DIRECT_VALUE, xParagraph->getPropertyState("ParaFirstLineIndent")); +} + +DECLARE_OOXMLIMPORT_TEST(testTdf92124, "tdf92124.docx") +{ + // Get the second paragraph's numbering style's 1st level's suffix. + uno::Reference xParagraph = getParagraph(2); + auto xLevels = getProperty< uno::Reference >(xParagraph, "NumberingRules"); + uno::Sequence aLevel; + xLevels->getByIndex(0) >>= aLevel; // 1st level + OUString aSuffix = std::find_if(aLevel.begin(), aLevel.end(), [](const beans::PropertyValue& rValue) { return rValue.Name == "Suffix"; })->Value.get(); + // Make sure it's empty as the source document contains . + CPPUNIT_ASSERT(aSuffix.isEmpty()); +} + #endif CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/uiwriter/data/redlineFrame.fodt libreoffice-l10n-5.0.3~rc2/sw/qa/extras/uiwriter/data/redlineFrame.fodt --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/uiwriter/data/redlineFrame.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/uiwriter/data/redlineFrame.fodt 2015-10-24 15:21:49.000000000 +0000 @@ -0,0 +1,81 @@ + + + + ms 2015-08-24T21:49:45.305718699LibreOfficeDev/4.3.7.2$Linux_X86_64 LibreOffice_project/8a35821d8636a03b8bf4e15b48f59794652c68ba + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ms + 2015-09-10T15:36:00 + + + + + + + ms + 2015-09-10T15:36:00 + + + Removed text + + + + Added text + + + + diff -Nru libreoffice-l10n-5.0.2~rc2/sw/qa/extras/uiwriter/uiwriter.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx --- libreoffice-l10n-5.0.2~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -66,6 +66,7 @@ //Regression test of fdo#70143 //EDITING: undo search&replace corrupt text when searching backward void testReplaceBackward(); + void testRedlineFrame(); void testFdo69893(); void testFdo70807(); void testImportRTF(); @@ -106,6 +107,7 @@ CPPUNIT_TEST_SUITE(SwUiWriterTest); CPPUNIT_TEST(testReplaceForward); CPPUNIT_TEST(testReplaceBackward); + CPPUNIT_TEST(testRedlineFrame); CPPUNIT_TEST(testFdo69893); CPPUNIT_TEST(testFdo70807); CPPUNIT_TEST(testImportRTF); @@ -194,6 +196,31 @@ CPPUNIT_ASSERT_EQUAL(ORIGINAL_REPLACE_CONTENT, pTextNode->GetText()); } +void SwUiWriterTest::testRedlineFrame() +{ + SwDoc * pDoc(createDoc("redlineFrame.fodt")); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + + uno::Reference xDrawPageSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xDrawPage = xDrawPageSupplier->getDrawPage(); + // there is exactly one frame + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xDrawPage->getCount()); + + sal_uInt16 nMode = pWrtShell->GetRedlineMode(); + CPPUNIT_ASSERT(nMode & nsRedlineMode_t::REDLINE_SHOW_DELETE); + + // hide delete redlines + pWrtShell->SetRedlineMode(nMode & ~nsRedlineMode_t::REDLINE_SHOW_DELETE); + + // there is still exactly one frame + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xDrawPage->getCount()); + + pWrtShell->SetRedlineMode(nMode); // show again + + // there is still exactly one frame + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xDrawPage->getCount()); +} + void SwUiWriterTest::testFdo75110() { SwDoc* pDoc = createDoc("fdo75110.odt"); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/crsr/crossrefbookmark.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/crsr/crossrefbookmark.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/crsr/crossrefbookmark.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/crsr/crossrefbookmark.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -84,7 +84,7 @@ const vcl::KeyCode& rCode, const OUString& rName, const OUString& rShortName) - : CrossRefBookmark(rPaM, rCode, rName, rShortName, IDocumentMarkAccess::GetCrossRefHeadingBookmarkNamePrefix()) + : CrossRefBookmark(rPaM, rCode, rName, rShortName, CrossRefNumItemBookmark_NamePrefix) { } bool CrossRefNumItemBookmark::IsLegalName(const OUString& rName) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/docbm.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/docbm.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/docbm.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/docbm.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1108,9 +1108,13 @@ OUStringBuffer sBuf; OUString sTmp; - // Try the name "XXX", where XXX is a number. Start the number at the existing count rather than 1 - // in order to increase the chance that already the first one will not exist. - sal_Int32 nCnt = m_vAllMarks.size() + 1; + // try the name "XXX" (where XXX is a number starting from 1) unless there is + // a unused name. Due to performance-reasons (especially in mailmerge-Szenarios) there + // is a map m_aMarkBasenameMapUniqueOffset which holds the next possible offset (XXX) for + // rName (so there is no need to test for nCnt-values smaller than the offset). + sal_Int32 nCnt = 1; + MarkBasenameMapUniqueOffset_t::const_iterator aIter = m_aMarkBasenameMapUniqueOffset.find(rName); + if(aIter != m_aMarkBasenameMapUniqueOffset.end()) nCnt = aIter->second; while(nCnt < SAL_MAX_INT32) { sTmp = sBuf.append(rName).append(nCnt).makeStringAndClear(); @@ -1120,6 +1124,8 @@ break; } } + m_aMarkBasenameMapUniqueOffset[rName] = nCnt; + return sTmp; } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/doc.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/doc.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/doc.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/doc.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1100,14 +1100,14 @@ { if( pTextNode->GetWrong() && pTextNode->GetWrong()->InvalidateWrong() ) - pTextNode->SetWrongDirty( true ); + pTextNode->SetWrongDirty(SwTextNode::WrongState::TODO); if( pTextNode->GetGrammarCheck() && pTextNode->GetGrammarCheck()->InvalidateWrong() ) pTextNode->SetGrammarCheckDirty( true ); } else { - pTextNode->SetWrongDirty( true ); + pTextNode->SetWrongDirty(SwTextNode::WrongState::TODO); if( pTextNode->GetWrong() ) pTextNode->GetWrong()->SetInvalid( 0, COMPLETE_STRING ); pTextNode->SetGrammarCheckDirty( true ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/docnew.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/docnew.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/docnew.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/docnew.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -896,6 +896,7 @@ SwPageDesc *const pTargetPageDesc, bool const bDeletePrevious, int pageOffset) { // GetEndOfExtras + 1 = StartOfContent == no content node! + // this ensures, that we have at least two nodes in the SwPaM. // @see IDocumentContentOperations::CopyRange SwNodeIndex aSourceIdx( rSource.GetNodes().GetEndOfExtras(), 1 ); SwNodeIndex aSourceEndIdx( rSource.GetNodes().GetEndOfContent(), -1 ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1584,7 +1584,7 @@ bool bColumnSel = pDoc->IsClipBoard() && pDoc->IsColumnSelection(); // Catch if there's no copy to do - if( !rPam.HasMark() || ( *pStt > *pEnd && !bColumnSel ) ) + if( !rPam.HasMark() || ( *pStt >= *pEnd && !bColumnSel ) ) return false; // Prevent copying in Flys that are anchored in the area @@ -3132,8 +3132,7 @@ const SwPaM* pCopiedPaM, const bool bMakeNewFrms, const bool bDelRedlines, - const bool bCopyFlyAtFly, - const bool bMergedFirstNode ) const + const bool bCopyFlyAtFly ) const { SwDoc* pDest = rInsPos.GetNode().GetDoc(); @@ -3141,17 +3140,13 @@ SwNodeIndex aSavePos( rInsPos, -1 ); bool bEndIsEqualEndPos = rInsPos == rRg.aEnd; - SwNodeRange aRg( rRg ); - if ( bMergedFirstNode ) - aRg.aStart++; - if ( aRg.aStart <= aRg.aEnd ) - m_rDoc.GetNodes()._CopyNodes( aRg, rInsPos, bMakeNewFrms, true ); - if ( !bMergedFirstNode ) - ++aSavePos; - if ( bEndIsEqualEndPos ) + m_rDoc.GetNodes()._CopyNodes( rRg, rInsPos, bMakeNewFrms, true ); + ++aSavePos; + if( bEndIsEqualEndPos ) const_cast(rRg.aEnd) = aSavePos; aRedlRest.Restore(); + #if OSL_DEBUG_LEVEL > 0 { //JP 17.06.99: Bug 66973 - check count only if the selection is in @@ -3165,9 +3160,9 @@ !aTmpI.GetNode().IsEndNode() ) { // If the range starts with a SwStartNode, it isn't copied - sal_uInt16 offset = (aRg.aStart.GetNode().GetNodeType() != ND_STARTNODE) ? 1 : 0; + sal_uInt16 offset = (rRg.aStart.GetNode().GetNodeType() != ND_STARTNODE) ? 1 : 0; OSL_ENSURE( rInsPos.GetIndex() - aSavePos.GetIndex() == - aRg.aEnd.GetIndex() - aRg.aStart.GetIndex() - 1 + offset, + rRg.aEnd.GetIndex() - rRg.aStart.GetIndex() - 1 + offset, "An insufficient number of nodes were copied!" ); } } @@ -3175,7 +3170,7 @@ { ::sw::UndoGuard const undoGuard(pDest->GetIDocumentUndoRedo()); - CopyFlyInFlyImpl( rRg, nEndContentIndex, aSavePos, bCopyFlyAtFly, bMergedFirstNode ); + CopyFlyInFlyImpl( rRg, nEndContentIndex, aSavePos, bCopyFlyAtFly ); } SwNodeRange aCpyRange( aSavePos, rInsPos ); @@ -3201,8 +3196,7 @@ const SwNodeRange& rRg, const sal_Int32 nEndContentIndex, const SwNodeIndex& rStartIdx, - const bool bCopyFlyAtFly, - const bool bMergedFirstNode ) const + const bool bCopyFlyAtFly ) const { // First collect all Flys, sort them according to their ordering number, // and then only copy them. This maintains the ordering numbers (which are only @@ -3335,8 +3329,6 @@ ++aIdx; } - if ( bMergedFirstNode ) - nAnchorTextNdNumInRange--; if ( !bAnchorTextNdFound ) { @@ -4105,7 +4097,7 @@ SwPosition* pEnd = rPam.End(); // Catch when there's no copy to do. - if( !rPam.HasMark() || ( *pStt > *pEnd && !bColumnSel ) || + if( !rPam.HasMark() || ( *pStt >= *pEnd && !bColumnSel ) || //JP 29.6.2001: 88963 - dont copy if inspos is in region of start to end //JP 15.11.2001: don't test inclusive the end, ever exclusive ( pDoc == &m_rDoc && *pStt <= rPos && rPos < *pEnd )) @@ -4193,8 +4185,6 @@ pNumRuleToPropagate = 0; } - bool bHandledStartNode = false; - // This do/while block is only there so that we can break out of it! do { if( pSttTextNd ) @@ -4202,8 +4192,6 @@ // Don't copy the beginning completely? if( !bCopyCollFormat || bColumnSel || pStt->nContent.GetIndex() ) { - bHandledStartNode = true; - SwIndex aDestIdx( rPos.nContent ); bool bCopyOk = false; if( !pDestTextNd ) @@ -4279,11 +4267,18 @@ pEnd->nContent -= nCpyLen; } - if( bCopyCollFormat && bOneNode ) + if( bOneNode ) { - pSttTextNd->CopyCollFormat( *pDestTextNd ); - POP_NUMRULE_STATE + if (bCopyCollFormat) + { + pSttTextNd->CopyCollFormat( *pDestTextNd ); + POP_NUMRULE_STATE + } + + break; } + + aRg.aStart++; } } else if( pDestTextNd ) @@ -4340,7 +4335,7 @@ } pDestTextNd = aInsPos.GetNode().GetTextNode(); - if( pEndTextNd && (!bOneNode || !bHandledStartNode) ) + if (pEndTextNd) { SwIndex aDestIdx( rPos.nContent ); if( !pDestTextNd ) @@ -4384,7 +4379,7 @@ if( bCopyAll || aRg.aStart != aRg.aEnd ) { SfxItemSet aBrkSet( pDoc->GetAttrPool(), aBreakSetRange ); - if( !bOneNode && pSttTextNd && bCopyCollFormat && pDestTextNd->HasSwAttrSet() ) + if (pSttTextNd && bCopyCollFormat && pDestTextNd->HasSwAttrSet()) { aBrkSet.Put( *pDestTextNd->GetpSwAttrSet() ); if( SfxItemState::SET == aBrkSet.GetItemState( RES_BREAK, false ) ) @@ -4396,15 +4391,13 @@ if( aInsPos == pEnd->nNode ) { SwNodeIndex aSaveIdx( aInsPos, -1 ); - CopyWithFlyInFly( aRg, 0, aInsPos, &rPam, bMakeNewFrms, - false, false, bHandledStartNode ); + CopyWithFlyInFly( aRg, 0,aInsPos, &rPam, bMakeNewFrms, false ); ++aSaveIdx; pEnd->nNode = aSaveIdx; pEnd->nContent.Assign( aSaveIdx.GetNode().GetTextNode(), 0 ); } else - CopyWithFlyInFly( aRg, pEnd->nContent.GetIndex(), aInsPos, &rPam, - bMakeNewFrms, false, false, bHandledStartNode ); + CopyWithFlyInFly( aRg, pEnd->nContent.GetIndex(), aInsPos, &rPam, bMakeNewFrms, false ); bCopyBookmarks = false; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/DocumentStatisticsManager.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/DocumentStatisticsManager.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/DocumentStatisticsManager.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/DocumentStatisticsManager.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -77,11 +77,14 @@ maStatsUpdateTimer.SetTimeoutHdl( LINK( this, DocumentStatisticsManager, DoIdleStatsUpdate ) ); } -void DocumentStatisticsManager::DocInfoChgd( ) +void DocumentStatisticsManager::DocInfoChgd(bool const isEnableSetModified) { m_rDoc.getIDocumentFieldsAccess().GetSysFieldType( RES_DOCINFOFLD )->UpdateFields(); m_rDoc.getIDocumentFieldsAccess().GetSysFieldType( RES_TEMPLNAMEFLD )->UpdateFields(); - m_rDoc.getIDocumentState().SetModified(); + if (isEnableSetModified) + { + m_rDoc.getIDocumentState().SetModified(); + } } const SwDocStat& DocumentStatisticsManager::GetDocStat() const diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/extinput.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/extinput.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/extinput.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/extinput.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -59,6 +59,9 @@ sal_Int32 nEndCnt = GetMark()->nContent.GetIndex(); if( nEndCnt != nSttCnt ) { + // Prevent IME edited text being grouped with non-IME edited text. + bool bKeepGroupUndo = pDoc->GetIDocumentUndoRedo().DoesGroupUndo(); + pDoc->GetIDocumentUndoRedo().DoGroupUndo(false); if( nEndCnt < nSttCnt ) { std::swap(nSttCnt, nEndCnt); @@ -66,24 +69,6 @@ // In order to get Undo/Redlining etc. working correctly, // we need to go through the Doc interface - if(eInputLanguage != LANGUAGE_DONTKNOW) - { - // #i41974# Only set language attribute - // for CJK/CTL scripts. - bool bLang = true; - sal_uInt16 nWhich = RES_CHRATR_LANGUAGE; - switch(SvtLanguageOptions::GetI18NScriptTypeOfLanguage(eInputLanguage)) - { - case i18n::ScriptType::ASIAN: nWhich = RES_CHRATR_CJK_LANGUAGE; break; - case i18n::ScriptType::COMPLEX: nWhich = RES_CHRATR_CTL_LANGUAGE; break; - default: bLang = false; - } - if ( bLang ) - { - SvxLanguageItem aLangItem( eInputLanguage, nWhich ); - pDoc->getIDocumentContentOperations().InsertPoolItem(*this, aLangItem ); - } - } rIdx = nSttCnt; const OUString sText( pTNd->GetText().copy(nSttCnt, nEndCnt - nSttCnt)); if( bIsOverwriteCursor && !sOverwriteText.isEmpty() ) @@ -124,6 +109,28 @@ pDoc->getIDocumentContentOperations().InsertString( *this, sText ); } } + pDoc->GetIDocumentUndoRedo().DoGroupUndo(bKeepGroupUndo); + if (eInputLanguage != LANGUAGE_DONTKNOW) + { + sal_uInt16 nWhich = RES_CHRATR_LANGUAGE; + sal_Int16 nScriptType = SvtLanguageOptions::GetI18NScriptTypeOfLanguage(eInputLanguage); + switch(nScriptType) + { + case i18n::ScriptType::ASIAN: + nWhich = RES_CHRATR_CJK_LANGUAGE; break; + case i18n::ScriptType::COMPLEX: + nWhich = RES_CHRATR_CTL_LANGUAGE; break; + } + // #i41974# Only set language attribute for CJK/CTL scripts. + if (RES_CHRATR_LANGUAGE != nWhich && pTNd->GetLang( nSttCnt, nEndCnt-nSttCnt, nScriptType) != eInputLanguage) + { + SvxLanguageItem aLangItem( eInputLanguage, nWhich ); + rIdx = nSttCnt; + GetMark()->nContent = nEndCnt; + pDoc->getIDocumentContentOperations().InsertPoolItem(*this, aLangItem ); + } + + } } } } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/tblrwcl.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/tblrwcl.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/doc/tblrwcl.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/tblrwcl.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1613,17 +1613,15 @@ _InsULPara aPara( pTableNd, true, true, pLeftBox, pMergeBox, pRightBox, pInsLine ); // Move the overlapping upper/lower Lines of the selected Area - _FndBoxes& rLineBoxes = pFndBox->GetLines().front().GetBoxes(); - for (_FndBoxes::iterator it = rLineBoxes.begin(); it != rLineBoxes.end(); ++it) + for (auto & it : pFndBox->GetLines().front().GetBoxes()) { - lcl_Merge_MoveBox(*it, &aPara); + lcl_Merge_MoveBox(it, &aPara); } aPara.SetLower( pInsLine ); const auto nEnd = pFndBox->GetLines().size()-1; - rLineBoxes = pFndBox->GetLines()[nEnd].GetBoxes(); - for (_FndBoxes::iterator it = rLineBoxes.begin(); it != rLineBoxes.end(); ++it) + for (auto & it : pFndBox->GetLines()[nEnd].GetBoxes()) { - lcl_Merge_MoveBox(*it, &aPara); + lcl_Merge_MoveBox(it, &aPara); } // Move the Boxes extending into the selected Area from left/right diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/DocumentContentOperationsManager.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/DocumentContentOperationsManager.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/DocumentContentOperationsManager.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/DocumentContentOperationsManager.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -106,13 +106,11 @@ const SwPaM* pCopiedPaM = NULL, bool bMakeNewFrms = true, bool bDelRedlines = true, - bool bCopyFlyAtFly = false, - const bool bMergedFirstNode = false ) const; + bool bCopyFlyAtFly = false ) const; void CopyFlyInFlyImpl( const SwNodeRange& rRg, const sal_Int32 nEndContentIndex, const SwNodeIndex& rStartIdx, - const bool bCopyFlyAtFly = false, - const bool bMergedFirstNode = false ) const; + const bool bCopyFlyAtFly = false ) const; /// Parameters for _Rst and lcl_SetTextFormatColl //originallyfrom docfmt.cxx diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/DocumentStatisticsManager.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/DocumentStatisticsManager.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/DocumentStatisticsManager.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/DocumentStatisticsManager.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -37,7 +37,7 @@ DocumentStatisticsManager( SwDoc& i_rSwdoc ); - void DocInfoChgd() SAL_OVERRIDE; + void DocInfoChgd(bool isEnableSetModified) SAL_OVERRIDE; const SwDocStat &GetDocStat() const SAL_OVERRIDE; SwDocStat & GetDocStat(); //Non const version of the above, not part of the interface. const SwDocStat &GetUpdatedDocStat(bool bCompleteAsync = false, bool bFields = true) SAL_OVERRIDE; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/MarkManager.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/MarkManager.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/MarkManager.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/MarkManager.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -27,6 +27,7 @@ namespace sw { namespace mark { + typedef std::unordered_map MarkBasenameMapUniqueOffset_t; class MarkManager : private ::boost::noncopyable @@ -109,6 +110,7 @@ container_t m_vFieldmarks; std::unordered_set m_aMarkNamesSet; + mutable MarkBasenameMapUniqueOffset_t m_aMarkBasenameMapUniqueOffset; // container for annotation marks container_t m_vAnnotationMarks; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/wrong.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/wrong.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/inc/wrong.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/wrong.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -211,7 +211,8 @@ inline void Validate(){ nBeginInvalid = nEndInvalid = COMPLETE_STRING; } void Invalidate( sal_Int32 nBegin, sal_Int32 nEnd ); bool InvalidateWrong(); - bool Fresh( sal_Int32 &rStart, sal_Int32 &rEnd, sal_Int32 nPos, + enum class FreshState { FRESH, CURSOR, NOTHING }; + FreshState Fresh( sal_Int32 &rStart, sal_Int32 &rEnd, sal_Int32 nPos, sal_Int32 nLen, sal_uInt16 nIndex, sal_Int32 nCursorPos ); sal_uInt16 GetWrongPos( sal_Int32 nValue ) const; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/layout/layact.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/layout/layact.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/layout/layact.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/layout/layact.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1931,7 +1931,8 @@ case ONLINE_SPELLING : { SwRect aRepaint( const_cast(static_cast(pCnt))->_AutoSpell( pContentNode, nTextPos ) ); - bPageValid = bPageValid && !pTextNode->IsWrongDirty(); + // tdf#92036 PENDING should stop idle spell checking + bPageValid = bPageValid && (SwTextNode::WrongState::TODO != pTextNode->GetWrongDirty()); if( !bPageValid ) bAllValid = false; if ( aRepaint.HasArea() ) @@ -1942,7 +1943,9 @@ } case AUTOCOMPLETE_WORDS : const_cast(static_cast(pCnt))->CollectAutoCmplWrds( pContentNode, nTextPos ); - if ( Application::AnyInput( VCL_INPUT_ANY ) ) + // note: bPageValid remains true here even if the cursor + // position is skipped, so no PENDING state needed currently + if (Application::AnyInput(VCL_INPUT_ANY & VclInputFlags(~VclInputFlags::TIMER))) return true; break; case WORD_COUNT : diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/layout/trvlfrm.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/layout/trvlfrm.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/layout/trvlfrm.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/layout/trvlfrm.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -2429,8 +2429,7 @@ { lLeft = (pStartFrm->Frm().*fnRect->fnGetLeft)() + (pStartFrm->Prt().*fnRect->fnGetLeft)(); - lRight = (pStartFrm->Frm().*fnRect->fnGetLeft)() + - (pStartFrm->Prt().*fnRect->fnGetRight)(); + lRight = (aEndFrm.*fnRect->fnGetRight)(); } if( lLeft < (aStFrm.*fnRect->fnGetLeft)() ) lLeft = (aStFrm.*fnRect->fnGetLeft)(); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/text/frmform.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/frmform.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/text/frmform.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/text/frmform.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1909,12 +1909,20 @@ sal_Int32 nStart = GetOfst(); const sal_Int32 nEnd = GetFollow() ? GetFollow()->GetOfst() : aInf.GetText().getLength(); + + int nLoopProtection = 0; do { - sal_Int32 nShift = aLine.FormatLine(nStart) - nStart; - nStart += nShift; - if ((nShift != 0) // Check for special case: line is invisible, - // like in too thin table cell: tdf#66141 + sal_Int32 nNewStart = aLine.FormatLine(nStart); + if (nNewStart == nStart) + ++nLoopProtection; + else + nLoopProtection = 0; + nStart = nNewStart; + const bool bWillEndlessInsert = nLoopProtection > 2; + SAL_WARN_IF(bWillEndlessInsert, "sw", "loop detection triggered"); + if ((!bWillEndlessInsert) // Check for special case: line is invisible, + // like in too thin table cell: tdf#66141 && (aInf.IsNewLine() || (!aInf.IsStop() && nStart < nEnd))) aLine.Insert( new SwLineLayout() ); } while( aLine.Next() ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/text/itrcrsr.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/itrcrsr.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/text/itrcrsr.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/text/itrcrsr.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1265,7 +1265,7 @@ // x is the horizontal offset within the line. SwTwips x = rPoint.X(); const SwTwips nLeftMargin = GetLineStart(); - SwTwips nRightMargin = GetLineEnd(); + SwTwips nRightMargin = GetLineEnd() + GetCurr()->GetHangingMargin(); if( nRightMargin == nLeftMargin ) nRightMargin += 30; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/text/itrpaint.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/itrpaint.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/text/itrpaint.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/text/itrpaint.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -423,7 +423,7 @@ if ( bAdjustBaseLine ) GetInfo().Y( GetInfo().GetPos().Y() + AdjustBaseLine( *pCurr, &aEnd ) ); - + GetInfo().X( GetInfo().X() + GetCurr()->GetHangingMargin() ); aEnd.Paint( GetInfo() ); GetInfo().Y( nOldY ); } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/text/txtfrm.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/txtfrm.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/text/txtfrm.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/text/txtfrm.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -845,7 +845,7 @@ pTextNode->SetSmartTags( new SwWrongList( WRONGLIST_SMARTTAG ) ); pTextNode->GetSmartTags()->SetInvalid( nPos, nEnd ); } - pTextNode->SetWrongDirty( true ); + pTextNode->SetWrongDirty(SwTextNode::WrongState::TODO); pTextNode->SetGrammarCheckDirty( true ); pTextNode->SetWordCountDirty( true ); pTextNode->SetAutoCompleteWordDirty( true ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/text/wrong.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/wrong.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/text/wrong.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/text/wrong.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -356,11 +356,17 @@ @return if ??? */ -bool SwWrongList::Fresh( sal_Int32 &rStart, sal_Int32 &rEnd, sal_Int32 nPos, - sal_Int32 nLen, sal_uInt16 nIndex, sal_Int32 nCursorPos ) +auto SwWrongList::Fresh( sal_Int32 &rStart, sal_Int32 &rEnd, sal_Int32 nPos, + sal_Int32 nLen, sal_uInt16 nIndex, sal_Int32 nCursorPos ) -> FreshState { - // length of word must be greater than 0 and cursor position must be outside the word - bool bRet = nLen && ( nCursorPos > nPos + nLen || nCursorPos < nPos ); + // length of word must be greater than 0 + // only report a spelling error if the cursor position is outside the word, + // so that the user is not annoyed while typing + FreshState eRet = (nLen) + ? (nCursorPos > nPos + nLen || nCursorPos < nPos) + ? FreshState::FRESH + : FreshState::CURSOR + : FreshState::NOTHING; sal_Int32 nWrPos = 0; sal_Int32 nWrEnd = rEnd; @@ -383,11 +389,11 @@ if( nCnt < Count() && nWrPos == nPos && Len( nCnt ) == nLen ) { ++nCnt; - bRet = true; + eRet = FreshState::FRESH; } else { - if( bRet ) + if (FreshState::FRESH == eRet) { if( rStart > nPos ) rStart = nPos; @@ -417,7 +423,7 @@ Remove( nIndex, nCnt - nIndex ); - return bRet; + return eRet; } void SwWrongList::Invalidate( sal_Int32 nBegin, sal_Int32 nEnd ) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/txtnode/ndtxt.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/txtnode/ndtxt.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/txtnode/ndtxt.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/txtnode/ndtxt.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -424,7 +424,7 @@ { pNode->SetWrong( GetWrong()->SplitList( nSplitPos ) ); } - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); if( GetGrammarCheck() ) { @@ -527,7 +527,7 @@ { SwWrongList *pList = GetWrong(); SetWrong( 0, false ); - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); SwGrammarMarkUp *pList3 = GetGrammarCheck(); SetGrammarCheck( 0, false ); @@ -648,7 +648,7 @@ if( pList ) { pList->JoinList( pTextNode->GetWrong(), nOldLen ); - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); SetWrong( 0, false ); } else @@ -657,7 +657,7 @@ if( pList ) { pList->Move( 0, nOldLen ); - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); pTextNode->SetWrong( 0, false ); } } @@ -739,7 +739,7 @@ if( pList ) { pList->JoinList( GetWrong(), Len() ); - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); pTextNode->SetWrong( 0, false ); SetWrong( NULL ); } @@ -749,7 +749,7 @@ if( pList ) { pList->Move( 0, nLen ); - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); SetWrong( 0, false ); } } @@ -1383,7 +1383,7 @@ void SwTextNode::DelFrms_TextNodePart() { SetWrong( NULL ); - SetWrongDirty( true ); + SetWrongDirty(WrongState::TODO); SetGrammarCheck( NULL ); SetGrammarCheckDirty( true ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/txtnode/txtedt.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/txtnode/txtedt.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/txtnode/txtedt.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/txtnode/txtedt.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1311,6 +1311,7 @@ } bool bFresh = nBegin < nEnd; + bool bPending(false); if( bFresh ) { @@ -1353,13 +1354,19 @@ pNode->SetWrong( new SwWrongList( WRONGLIST_SPELL ) ); pNode->GetWrong()->SetInvalid( 0, nEnd ); } - if( pNode->GetWrong()->Fresh( nChgStart, nChgEnd, - nBegin, nLen, nInsertPos, nActPos ) ) - pNode->GetWrong()->Insert( OUString(), 0, nBegin, nLen, nInsertPos++ ); - else + SwWrongList::FreshState const eState(pNode->GetWrong()->Fresh( + nChgStart, nChgEnd, nBegin, nLen, nInsertPos, nActPos)); + switch (eState) { - nInvStart = nBegin; - nInvEnd = nBegin + nLen; + case SwWrongList::FreshState::FRESH: + pNode->GetWrong()->Insert(OUString(), 0, nBegin, nLen, nInsertPos++); + break; + case SwWrongList::FreshState::CURSOR: + bPending = true; // fall-through to mark as invalid + case SwWrongList::FreshState::NOTHING: + nInvStart = nBegin; + nInvEnd = nBegin + nLen; + break; } } } @@ -1402,12 +1409,17 @@ } pNode->GetWrong()->SetInvalid( nInvStart, nInvEnd ); - pNode->SetWrongDirty( COMPLETE_STRING != pNode->GetWrong()->GetBeginInv() ); + pNode->SetWrongDirty( + (COMPLETE_STRING != pNode->GetWrong()->GetBeginInv()) + ? ((bPending) + ? SwTextNode::WrongState::PENDING + : SwTextNode::WrongState::TODO) + : SwTextNode::WrongState::DONE); if( !pNode->GetWrong()->Count() && ! pNode->IsWrongDirty() ) pNode->SetWrong( NULL ); } else - pNode->SetWrongDirty( false ); + pNode->SetWrongDirty(SwTextNode::WrongState::DONE); if( bAddAutoCmpl ) pNode->SetAutoCompleteWordDirty( false ); @@ -1557,7 +1569,7 @@ sal_Int32 nBegin = 0; sal_Int32 nEnd = pNode->GetText().getLength(); sal_Int32 nLen; - bool bACWDirty = false, bAnyWrd = false; + bool bACWDirty = false; if( nBegin < nEnd ) { @@ -1576,21 +1588,21 @@ { if( rACW.GetMinWordLen() <= rWord.getLength() ) rACW.InsertWord( rWord, *pDoc ); - bAnyWrd = true; } else bACWDirty = true; } if( !--nCnt ) { - if ( Application::AnyInput( VCL_INPUT_ANY ) ) + // don't wait for TIMER here, so we can finish big paragraphs + if (Application::AnyInput(VCL_INPUT_ANY & VclInputFlags(~VclInputFlags::TIMER))) return; nCnt = 100; } } } - if( bAnyWrd && !bACWDirty ) + if (!bACWDirty) pNode->SetAutoCompleteWordDirty( false ); } @@ -2115,7 +2127,7 @@ sal_uLong nNumberOfChars; sal_uLong nNumberOfCharsExcludingSpaces; bool bWordCountDirty; - bool bWrongDirty; // Ist das Wrong-Feld auf invalid? + SwTextNode::WrongState eWrongDirty; ///< online spell checking needed/done? bool bGrammarCheckDirty; bool bSmartTagDirty; bool bAutoComplDirty; // die ACompl-Liste muss angepasst werden @@ -2129,7 +2141,7 @@ nNumberOfChars ( 0 ), nNumberOfCharsExcludingSpaces ( 0 ), bWordCountDirty ( true ), - bWrongDirty ( true ), + eWrongDirty ( SwTextNode::WrongState::TODO ), bGrammarCheckDirty ( true ), bSmartTagDirty ( true ), bAutoComplDirty ( true ) {}; @@ -2276,17 +2288,22 @@ return m_pParaIdleData_Impl && m_pParaIdleData_Impl->bWordCountDirty; } -void SwTextNode::SetWrongDirty( bool bNew ) const +void SwTextNode::SetWrongDirty(WrongState eNew) const { if ( m_pParaIdleData_Impl ) { - m_pParaIdleData_Impl->bWrongDirty = bNew; + m_pParaIdleData_Impl->eWrongDirty = eNew; } } +auto SwTextNode::GetWrongDirty() const -> WrongState +{ + return (m_pParaIdleData_Impl) ? m_pParaIdleData_Impl->eWrongDirty : WrongState::DONE; +} + bool SwTextNode::IsWrongDirty() const { - return m_pParaIdleData_Impl && m_pParaIdleData_Impl->bWrongDirty; + return m_pParaIdleData_Impl && m_pParaIdleData_Impl->eWrongDirty != WrongState::DONE; } void SwTextNode::SetGrammarCheckDirty( bool bNew ) const diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/unocore/unoflatpara.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/unocore/unoflatpara.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/unocore/unoflatpara.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/unocore/unoflatpara.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -199,7 +199,10 @@ if (GetTextNode()) { if ( text::TextMarkupType::SPELLCHECK == nType ) - GetTextNode()->SetWrongDirty( !bVal ); + { + GetTextNode()->SetWrongDirty( + (bVal) ? SwTextNode::WrongState::DONE : SwTextNode::WrongState::TODO); + } else if ( text::TextMarkupType::SMARTTAG == nType ) GetTextNode()->SetSmartTagDirty( !bVal ); else if( text::TextMarkupType::PROOFREADING == nType ) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/unocore/unoobj.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/unocore/unoobj.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/unocore/unoobj.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/unocore/unoobj.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -2562,7 +2562,7 @@ if ( text::TextMarkupType::SPELLCHECK == nType ) { - txtNode->SetWrongDirty(true); + txtNode->SetWrongDirty(SwTextNode::WrongState::TODO); txtNode->SetWrong(0, true); } else if( text::TextMarkupType::PROOFREADING == nType ) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/core/view/viewsh.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/view/viewsh.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/core/view/viewsh.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/core/view/viewsh.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1674,7 +1674,7 @@ class RenderContextGuard { VclPtr& m_pRef; - vcl::RenderContext* m_pOriginalValue; + VclPtr m_pOriginalValue; SwViewShell* m_pShell; public: diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/html/htmlplug.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/html/htmlplug.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/html/htmlplug.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/html/htmlplug.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -655,6 +655,8 @@ delete pAppletImpl; pAppletImpl = 0; } +#else + (void) this; // Silence loplugin:staticmethods #endif } @@ -786,6 +788,8 @@ delete pAppletImpl; pAppletImpl = 0; +#else + (void) this; #endif } @@ -816,6 +820,8 @@ return; pAppletImpl->AppendParam( aName, aValue ); +#else + (void) this; #endif } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/html/wrthtml.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/html/wrthtml.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/html/wrthtml.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/html/wrthtml.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1198,8 +1198,9 @@ } } } - else + else if (!sURL.isEmpty() && sURL[0] != '#') { + // Link is not started from "#", so looks like external link. Encode this URL. INetURLObject aURL(sURL); sURL = aURL.GetMainURL(INetURLObject::NO_DECODE); } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/attributeoutputbase.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/attributeoutputbase.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/attributeoutputbase.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/attributeoutputbase.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -156,7 +156,7 @@ virtual void EndParagraph( ww8::WW8TableNodeInfoInner::Pointer_t pTextNodeInfoInner ) = 0; /// Called in order to output section breaks. - virtual void SectionBreaks(const SwTextNode& rNode) = 0; + virtual void SectionBreaks(const SwNode& rNode) = 0; /// Called before we start outputting the attributes. virtual void StartParagraphProperties() = 0; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -774,7 +774,7 @@ m_pSerializer->singleElementNS( XML_w, XML_p, FSEND ); } -void DocxAttributeOutput::SectionBreaks(const SwTextNode& rNode) +void DocxAttributeOutput::SectionBreaks(const SwNode& rNode) { // output page/section breaks // Writer can have them at the beginning of a paragraph, or at the end, but @@ -782,16 +782,31 @@ // paragraph in a section. To get it right, we have to switch to the next // paragraph, and detect the section breaks there. SwNodeIndex aNextIndex( rNode, 1 ); - if ( aNextIndex.GetNode().IsTextNode() ) + + if (rNode.IsTextNode()) { - const SwTextNode* pTextNode = static_cast< SwTextNode* >( &aNextIndex.GetNode() ); - m_rExport.OutputSectionBreaks( pTextNode->GetpSwAttrSet(), *pTextNode, m_tableReference->m_bTableCellOpen, pTextNode->GetText().isEmpty() ); + if (aNextIndex.GetNode().IsTextNode()) + { + const SwTextNode* pTextNode = static_cast(&aNextIndex.GetNode()); + m_rExport.OutputSectionBreaks(pTextNode->GetpSwAttrSet(), *pTextNode, m_tableReference->m_bTableCellOpen, pTextNode->GetText().isEmpty()); + } + else if (aNextIndex.GetNode().IsTableNode()) + { + const SwTableNode* pTableNode = static_cast(&aNextIndex.GetNode()); + const SwFrameFormat *pFormat = pTableNode->GetTable().GetFrameFormat(); + m_rExport.OutputSectionBreaks(&(pFormat->GetAttrSet()), *pTableNode); + } } - else if ( aNextIndex.GetNode().IsTableNode() ) + else if (rNode.IsEndNode()) { - const SwTableNode* pTableNode = static_cast< SwTableNode* >( &aNextIndex.GetNode() ); - const SwFrameFormat *pFormat = pTableNode->GetTable().GetFrameFormat(); - m_rExport.OutputSectionBreaks( &(pFormat->GetAttrSet()), *pTableNode ); + // End of something: make sure that it's the end of a table. + assert(rNode.StartOfSectionNode()->IsTableNode()); + if (aNextIndex.GetNode().IsTextNode()) + { + // Handle section break between a table and a text node following it. + const SwTextNode* pTextNode = aNextIndex.GetNode().GetTextNode(); + m_rExport.OutputSectionBreaks(pTextNode->GetpSwAttrSet(), *pTextNode, m_tableReference->m_bTableCellOpen, pTextNode->GetText().isEmpty()); + } } } @@ -4074,6 +4089,22 @@ void DocxAttributeOutput::ClearRelIdCache() { m_aRelIdCache.clear(); + m_aSdrRelIdCache.clear(); +} + +OUString DocxAttributeOutput::FindRelId(BitmapChecksum nChecksum) +{ + OUString aRet; + + if (m_aSdrRelIdCache.find(nChecksum) != m_aSdrRelIdCache.end()) + aRet = m_aSdrRelIdCache[nChecksum]; + + return aRet; +} + +void DocxAttributeOutput::CacheRelId(BitmapChecksum nChecksum, const OUString& rRelId) +{ + m_aSdrRelIdCache[nChecksum] = rRelId; } void DocxAttributeOutput::FlyFrameGraphic( const SwGrfNode* pGrfNode, const Size& rSize, const SwFlyFrameFormat* pOLEFrameFormat, SwOLENode* pOLENode, const SdrObject* pSdrObj ) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxattributeoutput.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxattributeoutput.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxattributeoutput.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxattributeoutput.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -155,7 +155,7 @@ virtual void EmptyParagraph() SAL_OVERRIDE; /// Called in order to output section breaks. - virtual void SectionBreaks(const SwTextNode& rNode) SAL_OVERRIDE; + virtual void SectionBreaks(const SwNode& rNode) SAL_OVERRIDE; /// Called before we start outputting the attributes. virtual void StartParagraphProperties() SAL_OVERRIDE; @@ -906,6 +906,8 @@ /// RelId <-> Graphic* cache, so that in case of alternate content, the same graphic only gets written once. std::map m_aRelIdCache; + /// RelId <-> BitmapChecksum cache, similar to m_aRelIdCache, but used for non-Writer graphics, handled in oox. + std::map m_aSdrRelIdCache; /// members to control the existence of grabbagged SDT properties in the paragraph sal_Int32 m_nParagraphSdtPrToken; @@ -963,6 +965,8 @@ virtual void WriteVMLTextBox(css::uno::Reference xShape) SAL_OVERRIDE; /// DMLTextExport virtual void WriteTextBox(css::uno::Reference xShape) SAL_OVERRIDE; + virtual OUString FindRelId(BitmapChecksum nChecksum) SAL_OVERRIDE; + virtual void CacheRelId(BitmapChecksum nChecksum, const OUString& rRelId) SAL_OVERRIDE; virtual oox::drawingml::DrawingML& GetDrawingML() SAL_OVERRIDE; void BulletDefinition(int nId, const Graphic& rGraphic, Size aSize) SAL_OVERRIDE; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxexport.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxexport.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxexport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxexport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -499,6 +499,9 @@ m_pSections->AppendSection( m_pAktPageDesc, pParentFormat, nRstLnNum ); } } + else if (TXT_MAINTEXT == m_nTextTyp && rEndNode.StartOfSectionNode()->IsTableNode()) + // End node of a table: see if a section break should be written after the table. + AttrOutput().SectionBreaks(rEndNode); } void DocxExport::OutputGrfNode( const SwGrfNode& ) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxsdrexport.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxsdrexport.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/docxsdrexport.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxsdrexport.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1594,23 +1594,25 @@ pFS->endElementNS(XML_a, XML_graphic); // Relative size of the Text Frame. - if (rSize.GetWidthPercent()) + const sal_uInt8 nWidthPercent = rSize.GetWidthPercent(); + if (nWidthPercent && nWidthPercent != 0xff) { pFS->startElementNS(XML_wp14, XML_sizeRelH, XML_relativeFrom, (rSize.GetWidthPercentRelation() == text::RelOrientation::PAGE_FRAME ? "page" : "margin"), FSEND); pFS->startElementNS(XML_wp14, XML_pctWidth, FSEND); - pFS->writeEscaped(OUString::number(rSize.GetWidthPercent() * oox::drawingml::PER_PERCENT)); + pFS->writeEscaped(OUString::number(nWidthPercent * oox::drawingml::PER_PERCENT)); pFS->endElementNS(XML_wp14, XML_pctWidth); pFS->endElementNS(XML_wp14, XML_sizeRelH); } - if (rSize.GetHeightPercent()) + const sal_uInt8 nHeightPercent = rSize.GetHeightPercent(); + if (nHeightPercent && nHeightPercent != 0xff) { pFS->startElementNS(XML_wp14, XML_sizeRelV, XML_relativeFrom, (rSize.GetHeightPercentRelation() == text::RelOrientation::PAGE_FRAME ? "page" : "margin"), FSEND); pFS->startElementNS(XML_wp14, XML_pctHeight, FSEND); - pFS->writeEscaped(OUString::number(rSize.GetHeightPercent() * oox::drawingml::PER_PERCENT)); + pFS->writeEscaped(OUString::number(nHeightPercent * oox::drawingml::PER_PERCENT)); pFS->endElementNS(XML_wp14, XML_pctHeight); pFS->endElementNS(XML_wp14, XML_sizeRelV); } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -310,33 +310,36 @@ m_rExport.Strm().WriteCharPtr(SAL_NEWLINE_STRING).WriteCharPtr(OOO_STRING_SVTOOLS_RTF_PAR).WriteChar(' '); } -void RtfAttributeOutput::SectionBreaks(const SwTextNode& rNode) +void RtfAttributeOutput::SectionBreaks(const SwNode& rNode) { - OSL_ENSURE(m_aStyles.getLength() == 0, "m_aStyles is not empty"); + if (rNode.IsTextNode()) + { + OSL_ENSURE(m_aStyles.getLength() == 0, "m_aStyles is not empty"); - // output page/section breaks - SwNodeIndex aNextIndex(rNode, 1); - m_rExport.Strm().WriteCharPtr(m_aSectionBreaks.makeStringAndClear().getStr()); - m_bBufferSectionBreaks = true; + // output page/section breaks + SwNodeIndex aNextIndex(rNode, 1); + m_rExport.Strm().WriteCharPtr(m_aSectionBreaks.makeStringAndClear().getStr()); + m_bBufferSectionBreaks = true; - // output section headers / footers - if (!m_bBufferSectionHeaders) - m_rExport.Strm().WriteCharPtr(m_aSectionHeaders.makeStringAndClear().getStr()); + // output section headers / footers + if (!m_bBufferSectionHeaders) + m_rExport.Strm().WriteCharPtr(m_aSectionHeaders.makeStringAndClear().getStr()); - if (aNextIndex.GetNode().IsTextNode()) - { - const SwTextNode* pTextNode = static_cast< SwTextNode* >(&aNextIndex.GetNode()); - m_rExport.OutputSectionBreaks(pTextNode->GetpSwAttrSet(), *pTextNode); - // Save the current page description for now, so later we will be able to access the previous one. - m_pPrevPageDesc = pTextNode->FindPageDesc(false); - } - else if (aNextIndex.GetNode().IsTableNode()) - { - const SwTableNode* pTableNode = static_cast< SwTableNode* >(&aNextIndex.GetNode()); - const SwFrameFormat* pFormat = pTableNode->GetTable().GetFrameFormat(); - m_rExport.OutputSectionBreaks(&(pFormat->GetAttrSet()), *pTableNode); + if (aNextIndex.GetNode().IsTextNode()) + { + const SwTextNode* pTextNode = static_cast< SwTextNode* >(&aNextIndex.GetNode()); + m_rExport.OutputSectionBreaks(pTextNode->GetpSwAttrSet(), *pTextNode); + // Save the current page description for now, so later we will be able to access the previous one. + m_pPrevPageDesc = pTextNode->FindPageDesc(false); + } + else if (aNextIndex.GetNode().IsTableNode()) + { + const SwTableNode* pTableNode = static_cast< SwTableNode* >(&aNextIndex.GetNode()); + const SwFrameFormat* pFormat = pTableNode->GetTable().GetFrameFormat(); + m_rExport.OutputSectionBreaks(&(pFormat->GetAttrSet()), *pTableNode); + } + m_bBufferSectionBreaks = false; } - m_bBufferSectionBreaks = false; } void RtfAttributeOutput::StartParagraphProperties() @@ -1600,9 +1603,10 @@ const SwFormatFrmSize& rSize = rFrameFormat.GetFrmSize(); // Relative size of the Text Frame. - if (rSize.GetWidthPercent()) + const sal_uInt8 nWidthPercent = rSize.GetWidthPercent(); + if (nWidthPercent && nWidthPercent != 0xff) { - rFlyProperties.push_back(std::make_pair("pctHoriz", OString::number(rSize.GetWidthPercent() * 10))); + rFlyProperties.push_back(std::make_pair("pctHoriz", OString::number(nWidthPercent * 10))); OString aRelation; switch (rSize.GetWidthPercentRelation()) @@ -1616,9 +1620,10 @@ } rFlyProperties.push_back(std::make_pair("sizerelh", aRelation)); } - if (rSize.GetHeightPercent()) + const sal_uInt8 nHeightPercent = rSize.GetHeightPercent(); + if (nHeightPercent && nHeightPercent != 0xff) { - rFlyProperties.push_back(std::make_pair("pctVert", OString::number(rSize.GetHeightPercent() * 10))); + rFlyProperties.push_back(std::make_pair("pctVert", OString::number(nHeightPercent * 10))); OString aRelation; switch (rSize.GetHeightPercentRelation()) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/rtfattributeoutput.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/rtfattributeoutput.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/rtfattributeoutput.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/rtfattributeoutput.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -53,7 +53,7 @@ virtual void EmptyParagraph() SAL_OVERRIDE; /// Called in order to output section breaks. - virtual void SectionBreaks(const SwTextNode& rNode) SAL_OVERRIDE; + virtual void SectionBreaks(const SwNode& rNode) SAL_OVERRIDE; /// Called before we start outputting the attributes. virtual void StartParagraphProperties() SAL_OVERRIDE; diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/ww8attributeoutput.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/ww8attributeoutput.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/ww8attributeoutput.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/ww8attributeoutput.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -36,7 +36,7 @@ virtual void EndParagraph( ww8::WW8TableNodeInfoInner::Pointer_t pTextNodeInfoInner ) SAL_OVERRIDE; /// Called in order to output section breaks. - virtual void SectionBreaks(const SwTextNode& /*rNode*/) SAL_OVERRIDE {} + virtual void SectionBreaks(const SwNode& /*rNode*/) SAL_OVERRIDE {} /// Called before we start outputting the attributes. virtual void StartParagraphProperties() SAL_OVERRIDE {} diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/ww8scan.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/ww8scan.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/filter/ww8/ww8scan.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/ww8scan.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -4450,11 +4450,15 @@ else nStartPos -= nCpOfs; } - if( nEndPos != WW8_CP_MAX ) + if (nEndPos != WW8_CP_MAX) { - OSL_ENSURE(nCpOfs <= nEndPos, - "oh oh, so much for the subdocument piece theory"); - nEndPos -= nCpOfs; + if (nCpOfs > nEndPos) + { + SAL_WARN("sw.ww8", "broken subdocument piece entry"); + nEndPos = WW8_CP_MAX; + } + else + nEndPos -= nCpOfs; } } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/ui/frmdlg/cption.cxx libreoffice-l10n-5.0.3~rc2/sw/source/ui/frmdlg/cption.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/ui/frmdlg/cption.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/ui/frmdlg/cption.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -318,8 +318,6 @@ SwFieldType* pType = (bCorrectFieldName && !bNone) ? rSh.GetFieldType( RES_SETEXPFLD, sFieldTypeName ) : 0; - fprintf(stderr, "pType is %p\n", pType); - fprintf(stderr, "bCorrectFieldName is %d\n", bCorrectFieldName); m_pOKButton->Enable( bCorrectFieldName && (!pType || static_cast(pType)->GetType() == nsSwGetSetExpType::GSE_SEQ) ); diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/ui/index/swuiidxmrk.cxx libreoffice-l10n-5.0.3~rc2/sw/source/ui/index/swuiidxmrk.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/ui/index/swuiidxmrk.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/ui/index/swuiidxmrk.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -621,6 +621,7 @@ } else { + SwViewShell::SetCareWin( 0 ); m_rDialog.EndDialog(RET_CANCEL); } return 0; @@ -930,7 +931,6 @@ SwIndexMarkPane::~SwIndexMarkPane() { delete pTOXMgr; - SwViewShell::SetCareWin( 0 ); } void SwIndexMarkPane::ReInitDlg(SwWrtShell& rWrtShell, SwTOXMark* pCurTOXMark) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/uibase/app/docsh2.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/app/docsh2.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/uibase/app/docsh2.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/uibase/app/docsh2.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -207,7 +207,7 @@ m_pWrtShell->StartAllAction(); } - m_pDoc->getIDocumentStatistics().DocInfoChgd(); + m_pDoc->getIDocumentStatistics().DocInfoChgd(IsEnableSetModified()); if (m_pWrtShell) { @@ -296,8 +296,9 @@ EnableSetModified( false ); // #i41679# const bool bIsDocModified = m_pDoc->getIDocumentState().IsModified(); + // TODO: is the ResetModified() below because of only the direct call from DocInfoChgd, or does UpdateFields() set it too? - m_pDoc->getIDocumentStatistics().DocInfoChgd( ); + m_pDoc->getIDocumentStatistics().DocInfoChgd(false); // #i41679# if ( !bIsDocModified ) diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/uibase/app/docstyle.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/app/docstyle.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/uibase/app/docstyle.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/uibase/app/docstyle.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -17,6 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include + +#include + #include #include #include @@ -1169,6 +1173,61 @@ return true; } +static +std::unique_ptr lcl_SwFormatToFlatItemSet(SwFormat *const pFormat) +{ + // note: we don't add the odd items that GetItemSet() would add + // because they don't seem relevant for preview + std::vector sets; + sets.push_back(&pFormat->GetAttrSet()); + while (SfxItemSet const*const pParent = sets.back()->GetParent()) + { + sets.push_back(pParent); + } + // start by copying top-level parent set + std::unique_ptr pRet(new SfxItemSet(*sets.back())); + sets.pop_back(); + for (auto iter = sets.rbegin(); iter != sets.rend(); ++iter) + { // in reverse so child overrides parent + pRet->Put(**iter); + } + return pRet; +} + +std::unique_ptr SwDocStyleSheet::GetItemSetForPreview() +{ + if (SFX_STYLE_FAMILY_PAGE == nFamily || SFX_STYLE_FAMILY_PSEUDO == nFamily) + { + SAL_WARN("sw.ui", "GetItemSetForPreview not implemented for page or number style"); + return std::unique_ptr(); + } + if (!bPhysical) + { + // because not only this style, but also any number of its parents + // (or follow style) may not actually exist in the document at this + // time, return one "flattened" item set that contains all items from + // all parents. + std::unique_ptr pRet; + FillStyleSheet(FillPreview, &pRet); + assert(pRet); + return pRet; + } + else + { + switch (nFamily) + { + case SFX_STYLE_FAMILY_CHAR: + return lcl_SwFormatToFlatItemSet(pCharFormat); + case SFX_STYLE_FAMILY_PARA: + return lcl_SwFormatToFlatItemSet(pColl); + case SFX_STYLE_FAMILY_FRAME: + return lcl_SwFormatToFlatItemSet(pFrameFormat); + default: + std::abort(); + } + } +} + // extract ItemSet to Name and Family, Mask SfxItemSet& SwDocStyleSheet::GetItemSet() @@ -1709,7 +1768,8 @@ } // determine the format -bool SwDocStyleSheet::FillStyleSheet( FillStyleType eFType ) +bool SwDocStyleSheet::FillStyleSheet( + FillStyleType const eFType, std::unique_ptr *const o_ppFlatSet) { bool bRet = false; sal_uInt16 nPoolId = USHRT_MAX; @@ -1717,8 +1777,9 @@ bool bCreate = FillPhysical == eFType; bool bDeleteInfo = false; - bool bFillOnlyInfo = FillAllInfo == eFType; + bool bFillOnlyInfo = FillAllInfo == eFType || FillPreview == eFType; std::vector aDelArr; + bool const isModified(rDoc.getIDocumentState().IsModified()); switch(nFamily) { @@ -1727,6 +1788,9 @@ bPhysical = 0 != pCharFormat; if( bFillOnlyInfo && !bPhysical ) { + // create style (plus all needed parents) and clean it up + // later - without affecting the undo/redo stack + ::sw::UndoGuard const ug(rDoc.GetIDocumentUndoRedo()); bDeleteInfo = true; ::lcl_SaveStyles( static_cast< sal_uInt16 >(nFamily), aDelArr, rDoc ); pCharFormat = lcl_FindCharFormat(rDoc, aName, this, true ); @@ -1754,6 +1818,7 @@ bPhysical = 0 != pColl; if( bFillOnlyInfo && !bPhysical ) { + ::sw::UndoGuard const ug(rDoc.GetIDocumentUndoRedo()); bDeleteInfo = true; ::lcl_SaveStyles( static_cast< sal_uInt16 >(nFamily), aDelArr, rDoc ); pColl = lcl_FindParaFormat(rDoc, aName, this, true ); @@ -1775,8 +1840,9 @@ case SFX_STYLE_FAMILY_FRAME: pFrameFormat = lcl_FindFrameFormat(rDoc, aName, this, bCreate); bPhysical = 0 != pFrameFormat; - if( bFillOnlyInfo && bPhysical ) + if (bFillOnlyInfo && !bPhysical) { + ::sw::UndoGuard const ug(rDoc.GetIDocumentUndoRedo()); bDeleteInfo = true; ::lcl_SaveStyles( static_cast< sal_uInt16 >(nFamily), aDelArr, rDoc ); pFrameFormat = lcl_FindFrameFormat(rDoc, aName, this, true ); @@ -1796,6 +1862,7 @@ bPhysical = 0 != pDesc; if( bFillOnlyInfo && !pDesc ) { + ::sw::UndoGuard const ug(rDoc.GetIDocumentUndoRedo()); bDeleteInfo = true; ::lcl_SaveStyles( static_cast< sal_uInt16 >(nFamily), aDelArr, rDoc ); pDesc = lcl_FindPageDesc( rDoc, aName, this, true ); @@ -1824,6 +1891,7 @@ bPhysical = 0 != pNumRule; if( bFillOnlyInfo && !pNumRule ) { + ::sw::UndoGuard const ug(rDoc.GetIDocumentUndoRedo()); bDeleteInfo = true; ::lcl_SaveStyles( static_cast< sal_uInt16 >(nFamily), aDelArr, rDoc ); pNumRule = lcl_FindNumRule( rDoc, aName, this, true ); @@ -1885,12 +1953,25 @@ if( RES_CONDTXTFMTCOLL == pFormat->Which() ) _nMask |= SWSTYLEBIT_CONDCOLL; + + if (FillPreview == eFType) + { + assert(o_ppFlatSet); + *o_ppFlatSet = lcl_SwFormatToFlatItemSet(pFormat); + } } SetMask( _nMask ); } if( bDeleteInfo && bFillOnlyInfo ) + { + ::sw::UndoGuard const ug(rDoc.GetIDocumentUndoRedo()); ::lcl_DeleteInfoStyles( static_cast< sal_uInt16 >(nFamily), aDelArr, rDoc ); + if (!isModified) + { + rDoc.getIDocumentState().ResetModified(); + } + } return bRet; } diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/uibase/dbui/dbmgr.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/dbui/dbmgr.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/uibase/dbui/dbmgr.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/uibase/dbui/dbmgr.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1244,12 +1244,13 @@ pWorkView->StartPrint( aOptions, IsMergeSilent(), rMergeDescriptor.bPrintAsync ); SfxPrinter* pDocPrt = pWorkView->GetPrinter(false); JobSetup aJobSetup = pDocPrt ? pDocPrt->GetJobSetup() : SfxViewShell::GetJobSetup(); - Printer::PreparePrintJob( pWorkView->GetPrinterController(), aJobSetup ); + bCancel = !Printer::PreparePrintJob( pWorkView->GetPrinterController(), aJobSetup ); #if ENABLE_CUPS && !defined(MACOSX) - psp::PrinterInfoManager::get().startBatchPrint(); + if( !bCancel ) + psp::PrinterInfoManager::get().startBatchPrint(); #endif } - if( !Printer::ExecutePrintJob( pWorkView->GetPrinterController())) + if( !bCancel && !Printer::ExecutePrintJob( pWorkView->GetPrinterController())) bCancel = true; } else diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/uibase/inc/FrameControl.hxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/inc/FrameControl.hxx --- libreoffice-l10n-5.0.2~rc2/sw/source/uibase/inc/FrameControl.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/uibase/inc/FrameControl.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -56,7 +56,7 @@ const SwFrm* m_pFrm; protected: - virtual ~SwFrameMenuButtonBase() {} + virtual ~SwFrameMenuButtonBase() { disposeOnce(); } virtual void dispose() SAL_OVERRIDE; public: diff -Nru libreoffice-l10n-5.0.2~rc2/sw/source/uibase/utlui/navipi.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/utlui/navipi.cxx --- libreoffice-l10n-5.0.2~rc2/sw/source/uibase/utlui/navipi.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/sw/source/uibase/utlui/navipi.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -699,6 +699,8 @@ Rectangle aSecondRect = aContentToolBox->GetItemRect(FN_SELECT_HEADER); Size aItemWinSize( aFirstRect.Left() - aSecondRect.Left(), aFirstRect.Bottom() - aFirstRect.Top() ); + Size aOptimalSize(pEdit->get_preferred_size()); + aItemWinSize.Width() = std::max(aItemWinSize.Width(), aOptimalSize.Width()); pEdit->SetSizePixel(aItemWinSize); aContentToolBox->InsertSeparator(4); aContentToolBox->InsertWindow( FN_PAGENUMBER, pEdit, ToolBoxItemBits::NONE, 4); diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/chart2/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/chart2/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/chart2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/chart2/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-19 22:02+0000\n" +"PO-Revision-Date: 2015-10-15 22:34+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440021724.000000\n" +"X-POOTLE-MTIME: 1444948448.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -68,7 +68,7 @@ "title\n" "string.text" msgid "Data Table" -msgstr "แ‹จแ‹ณแ‰ณ แˆฐแŠ•แŒ แˆจแ‹ฅ" +msgstr "แ‹จ แ‹ณแ‰ณ แˆฐแŠ•แŒ แˆจแ‹ฅ" #: chartdatadialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/connectivity/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/am/connectivity/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/connectivity/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/connectivity/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-03 16:36+0000\n" +"PO-Revision-Date: 2015-10-15 22:38+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435941361.000000\n" +"X-POOTLE-MTIME: 1444948694.000000\n" #: conn_error_message.src msgctxt "" @@ -630,7 +630,7 @@ "STR_INVALID_TABLE_DESCRIPTOR_ERROR\n" "string.text" msgid "Could not create table: invalid object descriptor." -msgstr "แˆฐแŠ•แŒ แˆจแ‹ฅ แˆ˜แแŒ แˆญ แŠ แˆแ‰ฐแ‰ปแˆˆแˆ แก แ‹‹แŒ‹ แ‹จแˆŒแˆˆแ‹ แ‹จแŠฅแ‰ƒ แˆ˜แŒแˆˆแŒซ" +msgstr "แˆฐแŠ•แŒ แˆจแ‹ฅ แˆ˜แแŒ แˆญ แŠ แˆแ‰ฐแ‰ปแˆˆแˆ: แ‹‹แŒ‹ แ‹จแˆŒแˆˆแ‹ แ‹จแŠฅแ‰ƒ แˆ˜แŒแˆˆแŒซ" #: conn_shared_res.src msgctxt "" @@ -836,7 +836,7 @@ "STR_COULD_NOT_ALTER_TABLE\n" "string.text" msgid "The table could not be altered." -msgstr "The table could not be altered." +msgstr "แˆฐแŠ•แŒ แˆจแ‹กแŠ• แˆ˜แ‰€แ‹จแˆญ แŠ แ‹ญแ‰ปแˆแˆ" #: conn_shared_res.src msgctxt "" @@ -860,7 +860,7 @@ "STR_SORT_BY_COL_ONLY\n" "string.text" msgid "Can only sort by table columns." -msgstr "แˆ˜แˆˆแ‹จแ‰ต แ‹จแˆšแ‰ปแˆˆแ‹ แ‰ แˆฐแŠ•แŒ แˆจแ‹ฅ แŠ แˆแ‹ถแ‰ฝ แ‰ฅแ‰ป แŠแ‹" +msgstr "แˆ˜แˆˆแ‹จแ‰ต แ‹จแˆšแ‰ปแˆˆแ‹ แ‰  แˆฐแŠ•แŒ แˆจแ‹ฅ แŠ แˆแ‹ถแ‰ฝ แ‰ฅแ‰ป แŠแ‹" #: conn_shared_res.src msgctxt "" @@ -892,7 +892,7 @@ "STR_TABLE_READONLY\n" "string.text" msgid "The table can not be changed. It is read only." -msgstr "แˆฐแŠ•แŒ แˆจแ‹กแŠ• แˆ˜แ‰€แ‹จแˆญ แŠ แ‹ญแ‰ปแˆแˆ แก แˆˆแˆ›แŠ•แ‰ แ‰ฅ แ‰ฅแ‰ป แŠแ‹" +msgstr "แˆฐแŠ•แŒ แˆจแ‹กแŠ• แˆ˜แ‰€แ‹จแˆญ แŠ แ‹ญแ‰ปแˆแˆ: แˆˆแˆ›แŠ•แ‰ แ‰ฅ แ‰ฅแ‰ป แŠแ‹" #: conn_shared_res.src msgctxt "" @@ -916,7 +916,7 @@ "STR_QUERY_MORE_TABLES\n" "string.text" msgid "The query can not be executed. It contains more than one table." -msgstr "แŒฅแ‹ซแ‰„แ‹แŠ• แˆ˜แˆแŒธแˆ แŠ แ‹ญแ‰ปแˆแˆ แก แŠจแŠ แŠ•แ‹ต แ‰ แˆ‹แ‹ญ แŠญแแˆ แ‹ญแ‹Ÿแˆ" +msgstr "แŒฅแ‹ซแ‰„แ‹แŠ• แˆ˜แˆแŒธแˆ แŠ แ‹ญแ‰ปแˆแˆ: แŠจ แŠ แŠ•แ‹ต แ‰ แˆ‹แ‹ญ แŠญแแˆ แ‹ญแ‹Ÿแˆ" #: conn_shared_res.src msgctxt "" @@ -924,7 +924,7 @@ "STR_QUERY_NO_TABLE\n" "string.text" msgid "The query can not be executed. It contains no valid table." -msgstr "แŒฅแ‹ซแ‰„แ‹แŠ• แˆ˜แˆแŒธแˆ แŠ แ‹ญแ‰ปแˆแˆ แก แ‹‹แŒ‹ แ‹ซแˆˆแ‹ แŠญแแˆ แŠ แˆแ‹ซแ‹˜แˆ" +msgstr "แŒฅแ‹ซแ‰„แ‹แŠ• แˆ˜แˆแŒธแˆ แŠ แ‹ญแ‰ปแˆแˆ: แ‹‹แŒ‹ แ‹ซแˆˆแ‹ แŠญแแˆ แŠ แˆแ‹ซแ‹˜แˆ" #: conn_shared_res.src msgctxt "" @@ -1012,7 +1012,7 @@ "STR_NO_KDE_INST\n" "string.text" msgid "No suitable KDE installation was found." -msgstr "แˆˆแŠฌแ‹ฒแŠข แ‰ฐแˆตแˆ›แˆš แ‹จแˆ†แŠ แˆ˜แŒแŒ แˆšแ‹ซ แŠ แˆแ‰ฐแŒˆแŠ˜แˆ" +msgstr "แˆˆ แŠฌแ‹ฒแŠข แ‰ฐแˆตแˆ›แˆš แ‹จแˆ†แŠ แˆ˜แŒแŒ แˆšแ‹ซ แŠ แˆแ‰ฐแŒˆแŠ˜แˆ" #: conn_shared_res.src msgctxt "" @@ -1056,7 +1056,7 @@ "STR_NO_TABLE\n" "string.text" msgid "No such table!" -msgstr "แŠฅแŠ•แ‹ฒแˆ… แŠ แ‹ญแŠแ‰ต แˆฐแŠ•แŒ แˆจแ‹ฅ แ‹จแˆˆแˆ" +msgstr "แŠฅแŠ•แ‹ฒแˆ… แŠ แ‹ญแŠแ‰ต แˆฐแŠ•แŒ แˆจแ‹ฅ แ‹จแˆˆแˆ!" #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/cui/source/tabpages.po libreoffice-l10n-5.0.3~rc2/translations/source/am/cui/source/tabpages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/cui/source/tabpages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/cui/source/tabpages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-14 10:09+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-15 17:38+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439546989.000000\n" +"X-POOTLE-MTIME: 1444930680.000000\n" #: border.src msgctxt "" @@ -1039,7 +1039,7 @@ "RID_SVXSTR_NON_BREAK_SPACE\n" "string.text" msgid "Add non-breaking space before specific punctuation marks in French text" -msgstr "" +msgstr "แˆ˜แŒจแˆ˜แˆชแ‹ซ แˆแŠ•แˆ-แ‹ซแˆแ‰ฐแˆฐแ‰ แˆจ แŠญแแ‰ฐแ‰ต แŠจ แˆตแˆญแŠ แ‰ฐ แŠแŒฅแ‰ฅ แ‰ แŠแ‰ต แˆแˆแŠญแ‰ต แˆ›แ‹ตแˆจแŒŠแ‹ซ แˆˆ แˆแˆจแŠ•แˆณแ‹ญแŠ› แŒฝแˆแ" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-17 22:37+0000\n" +"PO-Revision-Date: 2015-10-15 17:41+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439851033.000000\n" +"X-POOTLE-MTIME: 1444930917.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -3973,7 +3973,7 @@ "title\n" "string.text" msgid "Customize" -msgstr "" +msgstr "แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ" #: customizedialog.ui msgctxt "" @@ -10592,7 +10592,7 @@ "label\n" "string.text" msgid "Collect usage data and send it to The Document Foundation" -msgstr "" +msgstr "แ‹จ แŠ แŒ แ‰ƒแ‰€แˆ แ‹ณแ‰ณ แˆ˜แˆตแ‰ฅแˆฐแ‰ขแ‹ซ แŠฅแŠ“ แˆˆ แˆฐแŠแ‹ต แŠ แ‹˜แŒ‹แŒ†แ‰น แˆ˜แˆ‹แŠชแ‹ซ" #: optgeneralpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/am/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-31 22:22+0000\n" +"PO-Revision-Date: 2015-10-15 23:55+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,17 +14,16 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441059739.000000\n" +"X-POOTLE-MTIME: 1444953330.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "แ‹ตแŠ•แŠณแŠ•" +msgstr "" #. ยฃ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -64,7 +63,6 @@ #. ยฌ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_SIGN\n" @@ -1055,13 +1053,12 @@ #. โˆ (U+0220D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "แ‰ตแŠ•แˆฝ แ‰ " +msgstr "แ‰ตแŠ•แˆฝ ni" #. โˆŽ (U+0220E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1488,23 +1485,21 @@ #. โ–ช (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SMALL_SQUARE\n" "LngText.text" msgid "small square2" -msgstr "แ‰ตแŠ•แˆฝ แŠฎแŠจแ‰ฅ2" +msgstr "แ‰ตแŠ•แˆฝ square2" #. โ–ซ (U+025AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SMALL_SQUARE\n" "LngText.text" msgid "small square" -msgstr "แ‰ตแŠ•แˆฝ แŠฎแŠจแ‰ฅ" +msgstr "แ‰ตแŠ•แˆฝ square" #. โ–ฌ (U+025AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1607,13 +1602,12 @@ #. โ—ป (U+025FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square" -msgstr "แˆ˜แŠซแŠจแˆˆแŠ› แŠฎแŠจแ‰ฅ" +msgstr "แˆ˜แŠซแŠจแˆˆแŠ› square" #. โ—ผ (U+025FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1622,7 +1616,7 @@ "BLACK_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square2" -msgstr "" +msgstr "แˆ˜แŠซแŠจแˆˆแŠ› square2" #. โ—ฝ (U+025FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1631,7 +1625,7 @@ "WHITE_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square" -msgstr "" +msgstr "แ‰ตแŠ•แˆฝ square" #. โ—พ (U+025FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1640,7 +1634,7 @@ "BLACK_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square2" -msgstr "" +msgstr "แ‰ แŒฃแˆ แ‰ตแŠ•แˆฝ square2" #. โ˜€ (U+02600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2949,13 +2943,12 @@ #. โ›ฒ (U+026F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FOUNTAIN\n" "LngText.text" msgid "fountain" -msgstr "แ‰ฐแˆซแˆซ" +msgstr "" #. โ›ณ (U+026F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/am/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/schart.po libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/schart.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/schart.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/schart.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 14:59+0000\n" +"PO-Revision-Date: 2015-09-05 22:27+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441119577.000000\n" +"X-POOTLE-MTIME: 1441492028.000000\n" #: main0000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-10 22:34+0000\n" +"PO-Revision-Date: 2015-10-15 15:37+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441924484.000000\n" +"X-POOTLE-MTIME: 1444923452.000000\n" #: 01010000.xhp msgctxt "" @@ -1035,7 +1035,7 @@ "15\n" "help.text" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "" +msgstr "แŠฅแŠ•แ‹ฒแ‰ณแ‹ญ แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ• แ‹จ แ‹ณแ‰ณแ‰คแ‹ แˆœแ‹ณ แ‹ญแˆแˆจแŒก: แŠฅแŠ“ แŠจแ‹› แ‹ญแŒซแŠ‘ แ‰€แˆตแ‰ต แ‹ˆแ‹ฐ แŒแˆซ แ‰ แ‹šแˆ… แˆณแŒฅแŠ• แ‹แˆตแŒฅ แˆœแ‹ณ แˆˆแˆ›แˆตแŒˆแ‰ฃแ‰ต แ‹ˆแ‹ฐ แ‹จ แŒฝแˆแ แˆแˆแŠญแ‰ต แˆณแŒฅแŠ•." #: 01010201.xhp msgctxt "" @@ -1044,7 +1044,7 @@ "16\n" "help.text" msgid "The name of the database field is bounded by brackets in the Label text box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line." -msgstr "" +msgstr "แ‹จ แ‹ณแ‰ณแ‰คแ‹ แˆœแ‹ณ แˆตแˆ แ‰  แ‰…แŠ•แ แ‹จแ‰ฐแŠจแ‰ แ‰  แŠแ‹ แ‰  แŒฝแˆแ แˆแˆแŠญแ‰ต text แˆณแŒฅแŠ• แ‹แˆตแŒฅ: แŠฅแˆญแˆตแ‹Ž แŠจแˆแˆˆแŒ‰ แˆ˜แˆˆแ‹จแ‰ต แ‹ญแ‰ฝแˆ‹แˆ‰ แ‹จ แ‹ณแ‰ณแ‰คแ‹ แˆœแ‹ณแ‹Žแ‰ฝ แ‰  แŠญแแ‰ฐแ‰ต: แ‹ญแŒซแŠ‘ แˆ›แˆตแŒˆแ‰ขแ‹ซแ‹แŠ• แˆˆ แˆ›แˆตแŒˆแ‰ฃแ‰ต แ‹จ แ‹ณแ‰ณแ‰คแ‹ แˆœแ‹ณ แ‰  แŠ แ‹ฒแˆต แˆ˜แˆฐแˆญ แ‹แˆตแŒฅ" #: 01010201.xhp msgctxt "" @@ -1062,7 +1062,7 @@ "18\n" "help.text" msgid "You can select a pre-defined size format for your label or a size format that you specify on the Format tab.." -msgstr "" +msgstr "แŠฅแˆญแˆตแ‹Ž แˆ˜แˆแˆจแŒฅ แ‹ญแ‰ฝแˆ‹แˆ‰ แ‰ แ‰…แ‹ตแˆšแ‹ซ-แ‹จแ‰ฐแŒˆแˆˆแŒฝ แˆ˜แŒ แŠ• แŠ แ‰€แˆซแˆจแ‰ฅ แˆˆ แŠฅแˆญแˆตแ‹Ž แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แŠฅแˆญแˆตแ‹Ž แ‰ แˆšแ‹ˆแˆตแŠ‘แ‰ต แˆ˜แŒ แŠ• แŠ แ‰€แˆซแˆจแ‰ฅ แ‰  แŠ แ‰€แˆซแˆจแ‰ฅ tab.." #: 01010201.xhp msgctxt "" @@ -1196,7 +1196,7 @@ "4\n" "help.text" msgid "Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "แˆ›แˆณแ‹ซ แŠฅแˆญแ‰€แ‰ต แŠจ แŒˆแŒน แŒแˆซ แŒ แˆญแ‹ แˆแˆแŠญแ‰ฑ แŠ แŒ แŒˆแ‰ฅ แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แ‹ตแˆจแˆต: แŠฅแˆญแˆตแ‹Ž แ‹จแˆšแ‹ˆแˆตแŠ‘ แŠจแˆ†แŠ แŠ แ‰€แˆซแˆจแ‰ฅ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ แ‹‹แŒ‹แ‹แŠ• แŠ แˆแŠ• แ‹ญแ‹ˆแˆตแŠ‘" #: 01010202.xhp msgctxt "" @@ -1214,7 +1214,7 @@ "6\n" "help.text" msgid "Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "แˆ›แˆณแ‹ซ แŠฅแˆญแ‰€แ‰ต แŠจ แˆแˆแŠญแ‰ฑ แ‹จ แˆ‹แ‹ญ แŒ แˆญแ‹ แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แ‹จ แˆ‹แ‹ญ แŒ แˆญแ‹ แ‹จ แˆแˆแŠญแ‰ฑ แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แ‰ แ‰€แŒฅแ‰ณ แŠจแ‰ณแ‰ฝ: แŠฅแˆญแˆตแ‹Ž แ‹จแˆšแ‹ˆแˆตแŠ‘ แŠจแˆ†แŠ แŠ แ‰€แˆซแˆจแ‰ฅ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ แ‹‹แŒ‹แ‹แŠ• แŠ แˆแŠ• แ‹ญแ‹ˆแˆตแŠ‘." #: 01010202.xhp msgctxt "" @@ -1232,7 +1232,7 @@ "8\n" "help.text" msgid "Displays the width for the label or the business card. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "แ‹จ แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แˆตแ‹แ‰ต แˆ›แˆณแ‹ซ: แŠฅแˆญแˆตแ‹Ž แˆ˜แŒแˆˆแŒฝ แŠจ แˆแˆˆแŒ‰ แŠ แ‰€แˆซแˆจแ‰ฅ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ แ‹‹แŒ‹แ‹แŠ• แŠฅแ‹šแˆ… แ‹ซแˆตแŒˆแ‰ก" #: 01010202.xhp msgctxt "" @@ -1250,7 +1250,7 @@ "10\n" "help.text" msgid "Displays the height for the label or business card. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "แ‹จ แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แŠฅแˆญแ‹แˆ˜แ‰ต แˆ›แˆณแ‹ซ: แŠฅแˆญแˆตแ‹Ž แˆ˜แŒแˆˆแŒฝ แŠจ แˆแˆˆแŒ‰ แŠ แ‰€แˆซแˆจแ‰ฅ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ แ‹‹แŒ‹แ‹แŠ• แŠฅแ‹šแˆ… แ‹ซแˆตแŒˆแ‰ก." #: 01010202.xhp msgctxt "" @@ -1268,7 +1268,7 @@ "12\n" "help.text" msgid "Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "แˆ›แˆณแ‹ซ แŠฅแˆญแ‰€แ‰ต แŠจ แŒˆแŒน แŒแˆซ แŒ แˆญแ‹ แŠฅแˆตแŠจ แŒแˆซ แŒ แˆญแ‹ แ‹จ แˆ˜แŒ€แˆ˜แˆชแ‹ซแ‹ แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แ‹ตแˆจแˆต: แŠฅแˆญแˆตแ‹Ž แ‹จแˆšแ‹ˆแˆตแŠ‘ แŠจแˆ†แŠ แŠ แ‰€แˆซแˆจแ‰ฅ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ แ‹‹แŒ‹แ‹แŠ• แŠ แˆแŠ• แ‹ญแ‹ˆแˆตแŠ‘" #: 01010202.xhp msgctxt "" @@ -1286,7 +1286,7 @@ "14\n" "help.text" msgid "Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here." -msgstr "" +msgstr "แˆ›แˆณแ‹ซ แŠฅแˆญแ‰€แ‰ต แŠจ แŒˆแŒน แˆ‹แ‹ญ แŒ แˆญแ‹ แŠฅแˆตแŠจ แˆ‹แ‹ญ แŒ แˆญแ‹ แ‹จ แˆ˜แŒ€แˆ˜แˆชแ‹ซแ‹ แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ต แ‹ตแˆจแˆต: แŠฅแˆญแˆตแ‹Ž แ‹จแˆšแ‹ˆแˆตแŠ‘ แŠจแˆ†แŠ แŠ แ‰€แˆซแˆจแ‰ฅ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ แ‹‹แŒ‹แ‹แŠ• แŠ แˆแŠ• แ‹ญแ‹ˆแˆตแŠ‘" #: 01010202.xhp msgctxt "" @@ -1304,7 +1304,7 @@ "16\n" "help.text" msgid "Enter the number of labels or business cards that you want to span the width of the page." -msgstr "" +msgstr "แ‹จ แˆแˆแŠญแ‰ถแ‰ฝ แ‰แŒฅแˆญ แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ถแ‰ฝ แ‰แŒฅแˆญ แ‹ซแˆตแŒˆแ‰ก: แ‰  แŠฅแˆญแˆตแ‹Ž แ‹จ แŠญแแ‰ฐแ‰ต แˆตแ‹แ‰ต แŒˆแŒฝ แˆ‹แ‹ญ แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ•" #: 01010202.xhp msgctxt "" @@ -1322,7 +1322,7 @@ "18\n" "help.text" msgid "Enter the number of labels or business cards that you want to span the height of the page." -msgstr "" +msgstr "แ‹จ แˆแˆแŠญแ‰ถแ‰ฝ แ‰แŒฅแˆญ แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ถแ‰ฝ แ‰แŒฅแˆญ แ‹ซแˆตแŒˆแ‰ก: แ‰  แŠฅแˆญแˆตแ‹Ž แ‹จ แŠญแแ‰ฐแ‰ต แŠฅแˆญแ‹แˆ˜แ‰ต แŒˆแŒฝ แˆ‹แ‹ญ แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ•" #: 01010202.xhp msgctxt "" @@ -1411,7 +1411,7 @@ "2\n" "help.text" msgid "Sets additional options for your labels or business cards, including text synchronization and printer settings." -msgstr "" +msgstr "แ‰ฐแŒจแˆ›แˆช แˆแˆญแŒซ แˆ›แˆฐแŠ“แŒƒ แˆˆ แŠฅแˆญแˆตแ‹Ž แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ถแ‰ฝ: แ‹จ แŒฝแˆแ แˆ›แˆตแˆ›แˆšแ‹ซ แŠฅแŠ“ แ‹จ แˆ›แ‰ฐแˆšแ‹ซ แˆ›แˆฐแŠ“แŒƒแ‹Žแ‰ฝ แ‹ซแŠซแ‰ตแ‰ณแˆ" #: 01010203.xhp msgctxt "" @@ -1465,7 +1465,7 @@ "8\n" "help.text" msgid "Enter the number of labels or business cards that you want to have in a row on your page." -msgstr "" +msgstr "แ‹จ แˆแˆแŠญแ‰ถแ‰ฝ แ‰แŒฅแˆญ แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ถแ‰ฝ แ‰แŒฅแˆญ แ‹ซแˆตแŒˆแ‰ก: แ‰  แŠฅแˆญแˆตแ‹Ž แ‹จ แˆจแ‹ตแ‰ แŒˆแŒฝ แˆ‹แ‹ญ แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ•" #: 01010203.xhp msgctxt "" @@ -1483,7 +1483,7 @@ "10\n" "help.text" msgid "Enter the number of rows of labels or business cards that you want to have on your page." -msgstr "" +msgstr "แ‹จ แˆจแ‹ตแŽแ‰ฝ แ‰แŒฅแˆญ แˆแˆแŠญแ‰ต แ‹ˆแ‹ญแŠ•แˆ แ‹จ แŠ•แŒแ‹ต แŠซแˆญแ‹ถแ‰ฝ แ‰แŒฅแˆญ แ‹ซแˆตแŒˆแ‰ก: แ‰  แŠฅแˆญแˆตแ‹Ž แŒˆแŒฝ แˆ‹แ‹ญ แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ•" #: 01010203.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/05.po libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/shared/05.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/shared/05.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-12-14 23:08+0000\n" -"Last-Translator: Samson \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-10-15 15:32+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418598535.000000\n" +"X-POOTLE-MTIME: 1444923137.000000\n" #: 00000001.xhp msgctxt "" @@ -256,7 +256,7 @@ "1\n" "help.text" msgid "The $[officename] Help system provides easy access to information and support. There are several ways to find what you are looking for in the Help environment: You can search for a specific keyword in the Index, carry out a full-text search under Find, or look through a hierarchical list of the Topics." -msgstr "" +msgstr "แ‹จ $[officename] แŠฅแˆญแ‹ณแ‰ณ แˆตแˆญแŠ แ‰ต แ‹จแˆšแ‹ซแ‰€แˆญแ‰ แ‹ แˆ˜แˆจแŒƒ แŠฅแŠ“ แ‹ตแŒ‹แ แ‰  แ‰€แˆ‹แˆ‰ แŠแ‹: แŠฅแˆญแˆตแ‹Ž แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ• แˆˆแˆ›แŒแŠ˜แ‰ต แ‰ แˆญแŠซแ‰ณ แˆ˜แŠ•แŒˆแ‹ถแ‰ฝ แŠ แˆ‰: แ‰  แŠฅแˆญแ‹ณแ‰ต แŠ แŠซแ‰ฃแ‰ข: แŠฅแˆญแˆตแ‹Ž แˆ˜แˆแˆˆแŒ แ‹ญแ‰ฝแˆ‹แˆ‰ แ‰แˆแ แ‰ƒแˆ แ‰  แˆ˜แŒ แ‰€แˆ แ‰  แˆ›แ‹แŒซ, แˆ˜แˆแŒธแˆ แ‹ญแ‰ฝแˆ‹แˆ‰ แˆ™แˆ‰-แŒฝแˆแ แˆ˜แˆแˆˆแŒŠแ‹ซ แ‰  แˆ˜แˆแˆˆแŒŠแ‹ซ, แ‹ˆแ‹ญแŠ•แˆ แ‰  แ‰…แ‹ฐแˆ แ‰ฐแŠจแ‰ตแˆ แ‹แˆญแ‹แˆญ แ‹แˆตแŒฅ แ‰  แŠ แˆญแŠฅแˆตแ‰ต." #: 00000110.xhp msgctxt "" @@ -531,7 +531,7 @@ "par_idN10906\n" "help.text" msgid "Enter the text that you want to search for or select a text entry in the list." -msgstr "" +msgstr "แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ• แŒฝแˆแ แ‹ซแˆตแŒˆแ‰ก แ‹ˆแ‹ญแŠ•แˆ แ‹ญแˆแˆจแŒก แ‹จ แŒฝแˆแ แˆ›แˆตแŒˆแ‰ขแ‹ซ แ‰ƒแˆ แŠจ แ‹แˆญแ‹แˆญ แ‹แˆตแŒฅ แˆˆแˆ›แŒแŠ˜แ‰ต" #: 00000110.xhp msgctxt "" @@ -555,7 +555,7 @@ "par_idN109C1\n" "help.text" msgid "Searches the entire Help page, starting at the current position of the cursor." -msgstr "" +msgstr "แŒ แ‰…แˆ‹แˆ‹ แ‹จ แŠฅแˆญแ‹ณแ‰ต แŒˆแŒฝ แ‹แˆตแŒฅ แˆ˜แˆแˆˆแŒŠแ‹ซ: แˆ˜แŒ แ‰†แˆšแ‹ซแ‹ แŠ แˆแŠ• แŠซแˆˆแ‰ แ‰ต แ‰ฆแ‰ณ แŒ€แˆแˆฎ" #: 00000110.xhp msgctxt "" @@ -563,7 +563,7 @@ "par_idN109D8\n" "help.text" msgid "Searches backwards from the current position of the cursor." -msgstr "" +msgstr "แ‹จ แŠ‹แˆŠแ‹ฎแˆฝ แˆ˜แˆแˆˆแŒŠแ‹ซ: แˆ˜แŒ แ‰†แˆšแ‹ซแ‹ แŠ แˆแŠ• แŠซแˆˆแ‰ แ‰ต แ‰ฆแ‰ณ แŒ€แˆแˆฎ" #: 00000110.xhp msgctxt "" @@ -571,7 +571,7 @@ "par_idN109F5\n" "help.text" msgid "Finds the next occurrence of the search term." -msgstr "" +msgstr "แ‰  แˆ˜แˆแˆˆแŒŠแ‹ซ แ‹ฐแŠ•แ‰ฅ แ‹แˆตแŒฅ แ‹จแˆšแ‰€แŒฅแˆˆแ‹แŠ• แˆแŠ”แ‰ณ แˆ˜แˆแˆˆแŒŠแ‹ซ" #: 00000110.xhp msgctxt "" @@ -598,7 +598,7 @@ "19\n" "help.text" msgid "The list box located at the very top is where you can select other %PRODUCTNAME Help modules. The Index and Find tab pages only contain the data for the selected %PRODUCTNAME module." -msgstr "" +msgstr "แ‹จ แ‹แˆญแ‹แˆญ แˆณแŒฅแŠ• แ‹จแˆšแŒˆแŠ˜แ‹ แŠจ แˆ‹แ‹ญ แ‰ แŠฉแˆ แŠแ‹: แŠฅแˆญแˆตแ‹Ž แˆ˜แˆแˆจแŒฅ แ‹ญแ‰ฝแˆ‹แˆ‰ แ‰  %PRODUCTNAME แŠฅแˆญแ‹ณแ‰ณ แŠญแแˆŽแ‰ฝ แ‹จ แˆ›แ‹แŒซ แŠฅแŠ“ แˆ˜แˆแˆˆแŒŠแ‹ซ tab แŒˆแŒพแ‰ฝ แ‰ฅแ‰ป แŠ“แ‰ธแ‹ แ‹จ แ‰ฐแˆ˜แˆจแŒ แ‹แŠ• แ‹ณแ‰ณ แ‹จแ‹ซแ‹™แ‰ต %PRODUCTNAME แŠญแแˆ" #: 00000110.xhp msgctxt "" @@ -616,7 +616,7 @@ "15\n" "help.text" msgid "Displays an index of the main topics of all modules." -msgstr "" +msgstr "แ‹จ แ‹‹แŠ“แ‹แŠ• แŠ แˆญแŠฅแˆตแ‰ถแ‰ฝ แ‹จ แˆแˆ‰แŠ•แˆ แŠญแแˆŽแ‰ฝ แˆ›แ‹แŒซแ‹Žแ‰ฝ แˆ›แˆณแ‹ซ" #: 00000110.xhp msgctxt "" @@ -869,7 +869,7 @@ "2\n" "help.text" msgid "Enter the search term here. The search is not case-sensitive." -msgstr "" +msgstr "แ‹จ แˆšแˆแˆแŒ‰แ‰ตแŠ• แ‰ƒแˆ แ‹ซแˆตแŒˆแ‰ก: แ‹จ แˆ˜แˆแˆˆแŒŠแ‹ซ แ‹ฐแŠ•แ‰ฅ case-sensitive แŠ แ‹ญแ‹ฐแˆˆแˆ" #: 00000140.xhp msgctxt "" @@ -878,7 +878,7 @@ "3\n" "help.text" msgid "Click to start a full-text search for the term you entered." -msgstr "" +msgstr "แ‹ญแŒซแŠ‘ แŠฅแˆญแˆตแ‹Ž แ‹ซแˆตแŒˆแ‰กแ‰ตแŠ• แ‹ฐแŠ•แ‰ฅ แ‰  แˆ™แˆ‰-แŒฝแˆแ แˆ˜แˆแˆˆแŒŠแ‹ซ แ‹˜แ‹ด แˆˆแˆ›แˆตแŒ€แˆแˆญ" #: 00000140.xhp msgctxt "" @@ -1037,7 +1037,7 @@ "3\n" "help.text" msgid "You can find the bookmarks on the Bookmarks tab page." -msgstr "" +msgstr "แŠฅแˆญแˆตแ‹Ž แˆ›แŒแŠ˜แ‰ต แ‹ญแ‰ฝแˆ‹แˆ‰ แˆแˆแŠญแ‰ต แˆ›แ‹ตแˆจแŒŠแ‹ซ แ‰  แˆแˆแŠญแ‰ต แˆ›แ‹ตแˆจแŒŠแ‹ซ tab แŒˆแŒฝ แ‹แˆตแŒฅ" #: 00000150.xhp msgctxt "" @@ -1064,7 +1064,7 @@ "6\n" "help.text" msgid "The following commands are on the context menu of a bookmark:" -msgstr "" +msgstr "แ‹จแˆšแŠจแ‰ฐแˆ‰แ‰ต แ‰ตแŠฅแ‹›แ‹žแ‰ฝ แ‰  แŠ แŒˆแ‰ฃแ‰ฅ แ‹แˆญแ‹แˆญ แˆแˆแŠญแ‰ต แ‹แˆตแŒฅ แŠ แˆ‰:" #: 00000150.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/helpcontent2/source/text/swriter/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-28 01:25+0000\n" +"PO-Revision-Date: 2015-09-25 16:12+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440725117.000000\n" +"X-POOTLE-MTIME: 1443197544.000000\n" #: anchor_object.xhp msgctxt "" @@ -6980,7 +6980,7 @@ "30\n" "help.text" msgid "Enter a statement in the Condition box. For example, using the variable you previously defined, enter Hide==1." -msgstr "" +msgstr "แˆ˜แŒแˆˆแŒซ แ‹ซแˆตแŒˆแ‰ก แ‰  แˆแŠ”แ‰ณ แˆณแŒฅแŠ• แ‹แˆตแŒฅ: แˆˆแˆแˆณแˆŒ: แŠฅแˆญแˆตแ‹Ž แ‰€แ‹ฐแˆ แ‰ฅแˆˆแ‹ แ‹จแ‰ฐแŒ แ‰€แˆ™แ‰ แ‰ตแŠ• แ‰ฐแˆˆแ‹‹แ‹‹แŒญ: แ‹ซแˆตแŒˆแ‰ก แˆ˜แ‹ฐแ‰ แ‰‚แ‹ซ==1." #: hidden_text.xhp msgctxt "" @@ -7043,7 +7043,7 @@ "36\n" "help.text" msgid "Enter a statement in the Condition box. For example, using the variable you previously defined, enter Hide==1." -msgstr "" +msgstr "แˆ˜แŒแˆˆแŒซ แ‹ซแˆตแŒˆแ‰ก แ‰  แˆแŠ”แ‰ณ แˆณแŒฅแŠ• แ‹แˆตแŒฅ: แˆˆแˆแˆณแˆŒ: แŠฅแˆญแˆตแ‹Ž แ‰€แ‹ฐแˆ แ‰ฅแˆˆแ‹ แ‹จแ‰ฐแŒ แ‰€แˆ™แ‰ แ‰ตแŠ• แ‰ฐแˆˆแ‹‹แ‹‹แŒญ: แ‹ซแˆตแŒˆแ‰ก แˆ˜แ‹ฐแ‰ แ‰‚แ‹ซ==1." #: hidden_text.xhp msgctxt "" @@ -7304,7 +7304,7 @@ "24\n" "help.text" msgid "In the Navigator list, click the plus sign next to the item that you want to insert as a hyperlink." -msgstr "" +msgstr "แ‰  แˆ˜แ‰ƒแŠ› แ‹แˆญแ‹แˆญ แ‹แˆตแŒฅ: แ‹ญแŒซแŠ‘ แ‹จ แˆ˜แ‹ฐแˆ˜แˆชแ‹ซ แˆแˆแŠญแ‰ต แŠจ แŠฅแ‰ƒแ‹ แŠ แŒ แŒˆแ‰ฅ แ‹ซแˆˆแ‹แŠ• แŠฅแˆญแˆตแ‹Ž แˆ›แˆตแŒˆแ‰ฃแ‰ต แ‹จแˆšแˆแˆแŒ‰แ‰ตแŠ• แŠฅแŠ•แ‹ฐ hyperlink." #: hyperlinks.xhp msgctxt "" @@ -7313,7 +7313,7 @@ "26\n" "help.text" msgid "Drag the item to where you want to insert the hyperlink in the document." -msgstr "" +msgstr "แŠฅแ‰ƒแ‹แŠ• แ‹ญแŒŽแ‰ตแ‰ฑ แŠฅแˆญแˆตแ‹Ž hyperlink แˆ›แˆตแŒˆแ‰ฃแ‰ต แ‹ˆแ‹ฐแˆšแˆแˆแŒ‰แ‰ แ‰ต แ‰ฆแ‰ณ แ‰  แˆฐแŠแ‹ฑ แ‹แˆตแŒฅ" #: hyperlinks.xhp msgctxt "" @@ -7322,7 +7322,7 @@ "27\n" "help.text" msgid "The name of the item is inserted in the document as an underlined hyperlink." -msgstr "" +msgstr "แ‹จ แŠฅแ‰ƒแ‹ แˆตแˆ แŒˆแ‰ฅแ‰ทแˆ แ‰  แˆฐแŠแ‹ฑ แ‹แˆตแŒฅ แŠฅแŠ•แ‹ฐ แŠจ แˆตแˆฉ แ‹จแ‰ฐแˆฐแˆ˜แˆจ hyperlink" #: hyphen_prevent.xhp msgctxt "" @@ -7338,7 +7338,7 @@ "bm_id3149695\n" "help.text" msgid "hyphenation;preventing for specific words words;wrapping/not wrapping in text switching off;hyphenation for specific words" -msgstr "" +msgstr "แŒญแˆจแ‰ต;แˆ˜แŠจแˆแŠจแ‹ซ แˆˆ แ‰ฐแ‹ˆแˆฐแŠ‘ แ‰ƒแˆ‹แ‰ถแ‰ฝ แ‰ƒแˆ‹แ‰ถแ‰ฝ;แˆ˜แŒ แ‰…แˆˆแ‹ซ/แ‰  แŒฝแˆแ แ‹แˆตแŒฅ แŠ แ‹ญแŒ แ‰€แˆแˆแˆ แˆ›แŒฅแŠแ‹ซ;แŒญแˆจแ‰ต แˆˆ แ‰ฐแ‹ˆแˆฐแŠ‘ แ‰ƒแˆ‹แ‰ถแ‰ฝ" #: hyphen_prevent.xhp msgctxt "" @@ -7347,7 +7347,7 @@ "20\n" "help.text" msgid "Preventing Hyphenation of Specific Words" -msgstr "" +msgstr "แŒญแˆจแ‰ต แˆ˜แŠจแˆแŠจแ‹ซ แˆˆ แ‰ฐแ‹ˆแˆฐแŠ‘ แ‰ƒแˆ‹แ‰ถแ‰ฝ" #: hyphen_prevent.xhp msgctxt "" @@ -7588,7 +7588,7 @@ "12\n" "help.text" msgid "Index entries are inserted as fields into your document. To view fields in your document, choose View and ensure that Field Shadings is selected." -msgstr "" +msgstr "แ‰  แŠฅแˆญแˆตแ‹Ž แˆฐแŠแ‹ต แ‹แˆตแŒฅ แ‹จ แˆ›แ‹แŒซ แˆ›แˆตแŒˆแ‰ขแ‹ซ แ‹จแˆšแŒˆแ‰ฃแ‹ แŠฅแŠ•แ‹ฐ แˆœแ‹ณแ‹Žแ‰ฝ แŠแ‹: แˆœแ‹ณแ‹Žแ‰ฝแŠ• แˆˆ แˆ˜แˆ˜แˆแŠจแ‰ต แ‰  แŠฅแˆญแˆตแ‹Ž แˆฐแŠแ‹ต แ‹แˆตแŒฅ: แ‹ญแˆแˆจแŒก แˆ˜แˆ˜แˆแŠจแ‰ป แŠฅแŠ“ แŠฅแˆญแŒแŒ แŠ› แ‹ญแˆแŠ‘ แ‹จ แˆœแ‹ณ แŒฅแˆ‹แ‹Žแ‰ฝ แˆ˜แˆ˜แˆจแŒฃแ‰ธแ‹แŠ•" #: indices_delete.xhp msgctxt "" @@ -7597,7 +7597,7 @@ "13\n" "help.text" msgid "Place the cursor immediately in front of the index entry in your document." -msgstr "" +msgstr "แˆ˜แŒ แ‰†แˆšแ‹ซแ‹แŠ• แ‹ˆแ‹ฒแ‹ซแ‹แŠ‘ แ‰  แŠฅแˆญแˆตแ‹Ž แˆฐแŠแ‹ต แˆ›แ‹แŒซ แˆ›แˆตแŒˆแ‰ขแ‹ซ แŠแ‰ต แˆˆแŠแ‰ต แ‹ซแ‹ฐแˆญแŒˆแ‹‹แˆ" #: indices_delete.xhp msgctxt "" @@ -8066,7 +8066,7 @@ "36\n" "help.text" msgid "If you want to use a concordance file, select Concordance file in the Options area, click the File button, and then locate an existing file or create a new concordance file." -msgstr "" +msgstr "แŠฅแˆญแˆตแ‹Ž แˆ˜แŒ แ‰€แˆ แŠจ แˆแˆˆแŒ‰ แ‹แ‹ญแˆ แ‰  แŠแ‹ฐแˆ แ‰…แ‹ฐแˆ แ‰ฐแŠจแ‰ฐแˆ: แ‹ญแˆแˆจแŒก แ‹แ‹ญแˆ แ‰  แŠแ‹ฐแˆ แ‰…แ‹ฐแˆ แ‰ฐแŠจแ‰ฐแˆ แ‰  แˆแˆญแŒซ แ‰ฆแ‰ณ: แ‹ญแŒซแŠ‘ แ‹จ แ‹แ‹ญแˆ แ‰แˆแ: แŠฅแŠ“ แŠจแ‹› แˆแˆแŒˆแ‹ แ‹ซแŒแŠ™ แ‹จ แŠแ‰ แˆจแ‹แŠ• แ‹แ‹ญแˆ แ‹ˆแ‹ญแŠ•แˆ แ‹ญแแŒ แˆฉ แŠ แ‹ฒแˆต แ‹แ‹ญแˆ แ‰  แŠแ‹ฐแˆ แ‰…แ‹ฐแˆ แ‰ฐแŠจแ‰ฐแˆ" #: indices_index.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-5.0.3~rc2/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:06+0200\n" -"PO-Revision-Date: 2013-05-24 23:43+0000\n" -"Last-Translator: Samson \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-10-15 22:28+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369439011.0\n" +"X-POOTLE-MTIME: 1444948109.000000\n" #: Options.xhp msgctxt "" @@ -246,7 +246,7 @@ "par_id0603200910394216\n" "help.text" msgid "DE: Scaling Factor" -msgstr "DE: Scaling Factor" +msgstr "DE: แˆ˜แˆ˜แŒ แŠ› แˆแŠญแŠ•แ‹ซแ‰ต" #: Options.xhp msgctxt "" @@ -254,7 +254,7 @@ "par_id060320091039424\n" "help.text" msgid "During crossover, the scaling factor decides about the โ€œspeedโ€ of movement." -msgstr "แ‰ แˆšแ‹ซแ‰‹แˆญแŒฅ แŒŠแ‹œ แ‹จแˆ˜แˆ˜แŒ แŠ› แŠ แŠซแˆ แ‹ญแ‹ˆแˆตแŠ“แˆ โ€œแแŒฅแŠแ‰ตแŠ•โ€ แˆˆแŠฅแŠ•แ‰…แˆตแ‰ƒแˆดแ‹" +msgstr "แ‰ แˆšแ‹ซแ‰‹แˆญแŒฅ แŒŠแ‹œ แ‹จแˆ˜แˆ˜แŒ แŠ› แŠ แŠซแˆ แˆˆ แŠฅแŠ•แ‰…แˆตแ‰ƒแˆดแ‹ โ€œแแŒฅแŠแ‰ตแŠ•โ€ แ‹ญแ‹ˆแˆตแŠ“แˆ" #: Options.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/nlpsolver/src/locale.po libreoffice-l10n-5.0.3~rc2/translations/source/am/nlpsolver/src/locale.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/nlpsolver/src/locale.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/nlpsolver/src/locale.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:06+0200\n" -"PO-Revision-Date: 2012-11-18 14:49+0000\n" -"Last-Translator: Andras \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-15 22:27+0000\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1353250167.0\n" +"X-POOTLE-MTIME: 1444948041.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -118,7 +118,7 @@ "NLPSolverCommon.Properties.DEFactor\n" "property.text" msgid "DE: Scaling Factor (0-1.2)" -msgstr "DE: Scaling Factor (0-1.2)" +msgstr "DE: แˆ˜แˆ˜แŒ แŠ› แˆแŠญแŠ•แ‹ซแ‰ต (0-1.2)" #: NLPSolverCommon_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-09-06 23:50+0000\n" +"PO-Revision-Date: 2015-10-15 22:29+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441583431.000000\n" +"X-POOTLE-MTIME: 1444948154.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -672,7 +672,7 @@ "Label\n" "value.text" msgid "Scaling Factor" -msgstr "แ‹จแˆ˜แˆ˜แŒ แŠ› แˆแŠญแŠ•แ‹ซแ‰ต" +msgstr "แ‹จ แˆ˜แˆ˜แŒ แŠ› แˆแŠญแŠ•แ‹ซแ‰ต" #: CalcCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/sc/uiconfig/scalc/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-09-06 23:51+0000\n" +"PO-Revision-Date: 2015-10-15 22:26+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441583496.000000\n" +"X-POOTLE-MTIME: 1444947994.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -7541,7 +7541,7 @@ "label\n" "string.text" msgid "Scaling _mode:" -msgstr "แˆ˜แˆ˜แŒ แŠ› _แ‹˜แ‹ด" +msgstr "แˆ˜แˆ˜แŒ แŠ› _แ‹˜แ‹ด:" #: sheetprintpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/sd/uiconfig/sdraw/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/sd/uiconfig/sdraw/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/sd/uiconfig/sdraw/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-07-03 16:45+0000\n" +"PO-Revision-Date: 2015-10-16 21:30+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435941916.000000\n" +"X-POOTLE-MTIME: 1445031045.000000\n" #: breakdialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Processing metafile:" -msgstr "" +msgstr "metafile แ‰  แˆ‚แ‹ฐแ‰ต แˆ‹แ‹ญ:" #: breakdialog.ui msgctxt "" @@ -113,7 +113,7 @@ "label\n" "string.text" msgid "Customize" -msgstr "" +msgstr "แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ" #: copydlg.ui msgctxt "" @@ -446,7 +446,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "" +msgstr "Asian Typography" #: drawparadialog.ui msgctxt "" @@ -590,7 +590,7 @@ "label\n" "string.text" msgid "Customize" -msgstr "" +msgstr "แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ" #: drawprtldialog.ui msgctxt "" @@ -608,7 +608,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "" +msgstr "Asian Typography" #: drawprtldialog.ui msgctxt "" @@ -716,7 +716,7 @@ "title\n" "string.text" msgid "Name HTML Design" -msgstr "" +msgstr "แ‹จ HTML แŠ•แ‹ตแ แˆตแˆ" #: paranumberingtab.ui msgctxt "" @@ -1013,4 +1013,4 @@ "label\n" "string.text" msgid "Vectorized image:" -msgstr "" +msgstr "Vectorized แˆแˆตแˆ:" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-06 23:52+0000\n" +"PO-Revision-Date: 2015-10-16 21:32+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441583532.000000\n" +"X-POOTLE-MTIME: 1445031125.000000\n" #: assistentdialog.ui msgctxt "" @@ -167,7 +167,7 @@ "label\n" "string.text" msgid "W_idescreen" -msgstr "" +msgstr "แ‰  _แˆฐแŠ แˆ˜แˆ˜แˆแŠจแ‰ป" #: assistentdialog.ui msgctxt "" @@ -2867,7 +2867,7 @@ "label\n" "string.text" msgid "Monitor Resolution" -msgstr "" +msgstr "แ‹จ แˆ˜แˆ˜แˆแŠจแ‰ปแ‹ แˆชแ‹žแˆŠแˆฝแŠ•" #: publishingdialog.ui msgctxt "" @@ -2939,7 +2939,7 @@ "label\n" "string.text" msgid "Link to a copy of the _original presentation" -msgstr "" +msgstr "แˆˆ _แ‹‹แŠ“แ‹ แˆ›แ‰…แˆจแ‰ขแ‹ซ แŠฎแ’ แŠ แŒˆแŠ“แŠ" #: publishingdialog.ui msgctxt "" @@ -2975,7 +2975,7 @@ "label\n" "string.text" msgid "_Apply color scheme from document" -msgstr "" +msgstr "แŠจ แˆฐแŠแ‹ฑ แ‹จ แ‰€แˆˆแˆ แŒˆแŒฝแ‰ณ _แˆ˜แˆแŒธแˆšแ‹ซ" #: publishingdialog.ui msgctxt "" @@ -2993,7 +2993,7 @@ "label\n" "string.text" msgid "_Use custom color scheme" -msgstr "" +msgstr "_แ‹ญแŒ แ‰€แˆ™ แ‹จ แ‰€แˆˆแˆ แŒˆแŒฝแ‰ณ แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ" #: publishingdialog.ui msgctxt "" @@ -3020,7 +3020,7 @@ "label\n" "string.text" msgid "Hyper_link" -msgstr "" +msgstr "Hyper_link" #: publishingdialog.ui msgctxt "" @@ -3119,7 +3119,7 @@ "label\n" "string.text" msgid "_All control points in Bรฉzier editor" -msgstr "" +msgstr "_แˆแˆ‰แˆ แˆ˜แ‰†แŒฃแŒ แˆชแ‹ซแ‹Žแ‰ฝ แŠแŒฅแ‰ฆแ‰ฝ แ‹ˆแ‹ฐ Bรฉzier editor" #: sdviewpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/starmath/uiconfig/smath/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/starmath/uiconfig/smath/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/starmath/uiconfig/smath/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-16 19:37+0000\n" +"PO-Revision-Date: 2015-10-15 22:26+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439753832.000000\n" +"X-POOTLE-MTIME: 1444947961.000000\n" #: alignmentdialog.ui msgctxt "" @@ -496,14 +496,13 @@ msgstr "แ‰  แŒˆแŒน แˆแŠญ" #: printeroptions.ui -#, fuzzy msgctxt "" "printeroptions.ui\n" "scaling\n" "label\n" "string.text" msgid "Scaling:" -msgstr "แˆ˜แˆ˜แŒ แŠ›" +msgstr "แˆ˜แˆ˜แŒ แŠ›:" #: printeroptions.ui msgctxt "" @@ -597,14 +596,13 @@ msgstr "แ‰ _แŒˆแŒน แˆแŠญ" #: smathsettings.ui -#, fuzzy msgctxt "" "smathsettings.ui\n" "sizezoomed\n" "label\n" "string.text" msgid "_Scaling:" -msgstr "_แˆ˜แˆ˜แŒ แŠ›" +msgstr "_แˆ˜แˆ˜แŒ แŠ›:" #: smathsettings.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/svx/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/am/svx/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/svx/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" "PO-Revision-Date: 2015-09-02 01:34+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/svx/source/items.po libreoffice-l10n-5.0.3~rc2/translations/source/am/svx/source/items.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/svx/source/items.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/svx/source/items.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" "PO-Revision-Date: 2015-09-02 01:36+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-18 00:58+0000\n" +"PO-Revision-Date: 2015-09-20 17:06+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439859509.000000\n" +"X-POOTLE-MTIME: 1442768810.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -329,7 +329,7 @@ "label\n" "string.text" msgid "Edit Model" -msgstr "แ‹˜แ‹ด แˆ›แˆจแˆšแ‹ซ" +msgstr "แŠ“แˆ™แŠ“ แˆ›แˆจแˆšแ‹ซ" #: addnamespacedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-16 19:37+0000\n" +"PO-Revision-Date: 2015-10-15 22:51+0000\n" "Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439753873.000000\n" +"X-POOTLE-MTIME: 1444949512.000000\n" #: abstractdialog.ui msgctxt "" @@ -9552,7 +9552,7 @@ "label\n" "string.text" msgid "Store it when changing the document" -msgstr "" +msgstr "แˆฐแŠแ‹ฑ แ‰ แˆšแ‰€แ‹จแˆญ แŒŠแ‹œ แˆ›แˆตแ‰€แˆ˜แŒซ" #: optcomparison.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/vcl/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/am/vcl/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/vcl/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-09-02 01:29+0000\n" +"PO-Revision-Date: 2015-10-16 21:28+0000\n" "Last-Translator: Samson B \n" "Language-Team: LANGUAGE \n" "Language: am\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441157394.000000\n" +"X-POOTLE-MTIME: 1445030888.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -1142,13 +1142,12 @@ msgstr "<แˆ˜แ‰ฐแ‹>" #: print.src -#, fuzzy msgctxt "" "print.src\n" "SV_PRINT_CUSTOM_TXT\n" "string.text" msgid "Custom" -msgstr "Custom" +msgstr "แˆ›แˆตแ‰ฐแŠซแŠจแ‹ซ" #: stdtext.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/am/vcl/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/am/vcl/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/am/vcl/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/am/vcl/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-14 11:56+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 21:28+0000\n" +"Last-Translator: Samson B \n" "Language-Team: none\n" "Language: am\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439553387.000000\n" +"X-POOTLE-MTIME: 1445030896.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -737,7 +737,6 @@ msgstr "แ‹จ แˆ›แ‰ฐแˆšแ‹ซ _แ‰‹แŠ•แ‰‹ แŠ แ‹ญแŠแ‰ต:" #: printerdevicepage.ui -#, fuzzy msgctxt "" "printerdevicepage.ui\n" "colorspace\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/as/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/as/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/as/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/as/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bg/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/bg/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bg/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bg/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441268133.000000\n" +"X-POOTLE-MTIME: 1441268134.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bg/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/bg/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bg/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bg/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bn-IN/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/bn-IN/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bn-IN/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bn-IN/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bn-IN/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/bn-IN/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bn-IN/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bn-IN/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bo/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/bo/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bo/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bo/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/bo/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bo/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bo/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/br/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/br/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/br/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/br/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1001,7 +1001,7 @@ "SC_OPCODE_CEIL_PRECISE\n" "string.text" msgid "CEILING.PRECISE" -msgstr "SEL.SPIS" +msgstr "LEIN.SPIS" #: core_resource.src msgctxt "" @@ -1010,7 +1010,7 @@ "SC_OPCODE_CEIL_ISO\n" "string.text" msgid "ISO.CEILING" -msgstr "ISO.SEL" +msgstr "ISO.LEIN" #: core_resource.src msgctxt "" @@ -1037,7 +1037,7 @@ "SC_OPCODE_FLOOR_MATH\n" "string.text" msgid "FLOOR.MATH" -msgstr "LEUR.JEDZH" +msgstr "LEUR.JEDONIEZH" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/br/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-09-10 09:30+0000\n" +"PO-Revision-Date: 2015-10-20 17:40+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441877442.000000\n" +"X-POOTLE-MTIME: 1445362855.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -4307,7 +4307,7 @@ "Label\n" "value.text" msgid "Format Floor..." -msgstr "Mentrezhaรฑ al leurenn..." +msgstr "Mentrezhaรฑ al leur..." #: ChartCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/br/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/br/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/br/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/br/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-08 13:02+0000\n" +"PO-Revision-Date: 2015-10-20 17:41+0000\n" "Last-Translator: Alan \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431090151.000000\n" +"X-POOTLE-MTIME: 1445362872.000000\n" #: commands.src msgctxt "" @@ -1302,7 +1302,7 @@ "RID_LRFLOORX_HELP\n" "string.text" msgid "Floor" -msgstr "Leurenn" +msgstr "Leur" #: commands.src msgctxt "" @@ -1382,7 +1382,7 @@ "RID_SLRFLOORX_HELP\n" "string.text" msgid "Floor (Scalable)" -msgstr "Leurenn (sturiadel)" +msgstr "Leur (sturiadel)" #: commands.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/brx/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/brx/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/brx/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/brx/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/brx/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/brx/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/brx/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/brx/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/brx/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/brx/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/brx/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/brx/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/bs/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/bs/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/bs/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/bs/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ca/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ca/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ca/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ca/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ca-valencia/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ca-valencia/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ca-valencia/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 12:18+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-14 19:59+0000\n" +"Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439554697.000000\n" +"X-POOTLE-MTIME: 1444852787.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,123 +7983,111 @@ #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "1:30" +msgstr "1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "2:30" +msgstr "2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "3:30" +msgstr "3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "4:30" +msgstr "4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "5:30" +msgstr "5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "6:30" +msgstr "6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "7:30" +msgstr "7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "8:30" +msgstr "8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "9:30" +msgstr "9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "10:30" +msgstr "10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "11:30" +msgstr "11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "12:30" +msgstr "12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/helpcontent2/source/text/sbasic/shared.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-08 17:34+0000\n" +"PO-Revision-Date: 2015-10-14 19:50+0000\n" "Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436376863.000000\n" +"X-POOTLE-MTIME: 1444852221.000000\n" #: 00000002.xhp msgctxt "" @@ -9128,7 +9128,6 @@ msgstr "Print #iNumber, \"Another line of text\"" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "tit\n" @@ -9145,7 +9144,6 @@ msgstr "Open (pล™รญkaz)" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "hd_id3150791\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/librelogo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/helpcontent2/source/text/swriter/librelogo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-08 19:35+0000\n" +"PO-Revision-Date: 2015-10-14 19:50+0000\n" "Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436384126.000000\n" +"X-POOTLE-MTIME: 1444852249.000000\n" #: LibreLogo.xhp msgctxt "" @@ -1017,7 +1017,6 @@ msgstr "OBDร‰LNรK" #: LibreLogo.xhp -#, fuzzy msgctxt "" "LibreLogo.xhp\n" "par_1330\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 12:40+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-15 21:54+0000\n" +"Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439556053.000000\n" +"X-POOTLE-MTIME: 1444946050.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,7 +3302,6 @@ msgstr "Smazat ~zalomenรญ strรกnky" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" @@ -6000,7 +5999,7 @@ "Label\n" "value.text" msgid "Photo Album" -msgstr "Foto album" +msgstr "Fotoalbum" #: DrawImpressCommands.xcu msgctxt "" @@ -15149,7 +15148,6 @@ msgstr "Odrรกลพky a ฤรญslovรกnรญ..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" @@ -20874,7 +20872,6 @@ msgstr "Spravovat zmฤ›ny" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.DeckList.DesignDeck\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-10 13:27+0000\n" +"PO-Revision-Date: 2015-10-14 20:02+0000\n" "Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436534840.000000\n" +"X-POOTLE-MTIME: 1444852923.000000\n" #: Addons.xcu msgctxt "" @@ -89,7 +89,6 @@ msgstr "SMAลฝOBRAZOVKU" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" @@ -99,7 +98,6 @@ msgstr "Pล™รญkazovรฝ ล™รกdek pro Logo (pro vykonรกnรญ pล™รญkazu stisknฤ›te Enter, pro nรกpovฤ›du F1)" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/sc/source/ui/src.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 12:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-15 21:23+0000\n" +"Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439556767.000000\n" +"X-POOTLE-MTIME: 1444944193.000000\n" #: condformatdlg.src msgctxt "" @@ -689,7 +689,7 @@ "3 Flags\n" "stringlist.text" msgid "3 Flags" -msgstr "3 emotikony" +msgstr "3 vlajky" #: condformatdlg.src msgctxt "" @@ -4920,7 +4920,6 @@ msgstr "Nรกzev" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 13:08+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-14 19:53+0000\n" +"Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439557727.000000\n" +"X-POOTLE-MTIME: 1444852386.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Podle rozvrลพenรญ" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-29 19:51+0000\n" +"PO-Revision-Date: 2015-10-15 21:55+0000\n" "Last-Translator: Stanislav Horรกฤek \n" "Language-Team: none\n" "Language: cs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438199489.000000\n" +"X-POOTLE-MTIME: 1444946127.000000\n" #: assistentdialog.ui msgctxt "" @@ -1301,7 +1301,7 @@ "label\n" "string.text" msgid "Number" -msgstr "ฤŒรญslo" +msgstr "Poฤet" #: dockinganimation.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/svx/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/svx/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/svx/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-05-23 09:53+0000\n" -"Last-Translator: Stanislav \n" +"PO-Revision-Date: 2015-10-14 20:03+0000\n" +"Last-Translator: Stanislav Horรกฤek \n" "Language-Team: LANGUAGE \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432374810.000000\n" +"X-POOTLE-MTIME: 1444853018.000000\n" #: bmpmask.src msgctxt "" @@ -434,7 +434,7 @@ "RID_SVXSTR_LANGUAGE_ALL\n" "string.text" msgid "[All]" -msgstr "[vลกe]" +msgstr "[Vลกe]" #: passwd.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cs/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/cs/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cs/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cs/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-10 14:22+0000\n" +"PO-Revision-Date: 2015-10-14 20:00+0000\n" "Last-Translator: Stanislav Horรกฤek \n" "Language-Team: none\n" "Language: cs\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436538171.000000\n" +"X-POOTLE-MTIME: 1444852823.000000\n" #: abstractdialog.ui msgctxt "" @@ -10597,7 +10597,6 @@ msgstr "S_loupec:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/cy/uui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/cy/uui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/cy/uui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/cy/uui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-07 09:13+0000\n" +"PO-Revision-Date: 2015-09-24 14:38+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: LANGUAGE \n" "Language: cy\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436260397.000000\n" +"X-POOTLE-MTIME: 1443105486.000000\n" #: authfallback.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "Macros may contain viruses. Disabling macros for a document is always safe. If you disable macros you may lose functionality provided by the document macros." -msgstr "Gall facros gynnwys firysau. Mae diffodd macros ar gyfer dogfen yn beth ddiogel. Os fyddwch yn diffodd macro gallwch golli swyddogaethau sy'n cael eu darparu ganddynt." +msgstr "Gall facros gynnwys firysau. Mae analluogi macros ar gyfer dogfen bob tro'n fwy diogel. Os fyddwch yn diffodd macro gallwch golli'r swyddogaethau sy'n cael eu darparu ganddynt." #: macrowarnmedium.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/da/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/da/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/da/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/da/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/da/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/da/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/da/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/da/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 13:16+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-13 19:41+0000\n" +"Last-Translator: Leif Lodahl \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439558203.000000\n" +"X-POOTLE-MTIME: 1442173289.000000\n" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/cui/source/options.po libreoffice-l10n-5.0.3~rc2/translations/source/de/cui/source/options.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/cui/source/options.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/cui/source/options.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-15 11:57+0000\n" +"PO-Revision-Date: 2015-09-22 15:29+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442318269.000000\n" +"X-POOTLE-MTIME: 1442935765.000000\n" #: connpooloptions.src msgctxt "" @@ -572,7 +572,7 @@ "RID_SVXSTR_KEY_FAVORITES_DIR\n" "string.text" msgid "Folder Bookmarks" -msgstr "Ordner-Bookmarks" +msgstr "Ordner-Lesezeichen" #: optpath.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/de/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-28 09:47+0000\n" +"PO-Revision-Date: 2015-10-04 14:33+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440755264.000000\n" +"X-POOTLE-MTIME: 1443969205.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -9919,7 +9919,7 @@ "label\n" "string.text" msgid "Autoclose procedures" -msgstr "Verfahren zum automatischen SchlieรŸen" +msgstr "Prozeduren automatisch schlieรŸen" #: optbasicidepage.ui msgctxt "" @@ -9946,7 +9946,7 @@ "label\n" "string.text" msgid "Autocorrection" -msgstr "Autokorrektur" +msgstr "AutoKorrektur" #: optbasicidepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/de/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-09-02 15:31+0000\n" -"Last-Translator: Christian Lohmaier \n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-01 17:33+0000\n" -"Last-Translator: Christian Lohmaier \n" +"PO-Revision-Date: 2015-08-27 09:36+0000\n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441128822.000000\n" +"X-POOTLE-MTIME: 1440668172.000000\n" #: 00000001.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-06 06:32+0000\n" +"PO-Revision-Date: 2015-09-22 15:42+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441521153.000000\n" +"X-POOTLE-MTIME: 1442936525.000000\n" #: 01010000.xhp msgctxt "" @@ -18195,7 +18195,7 @@ "38\n" "help.text" msgid "You can also assign or edit a named HTML anchor, or Bookmark, that refers to a specific place in a document." -msgstr "Sie kรถnnen auch benannte HTML-Anker eingeben, die als Textmarken oder Lesezeichen auf eine bestimmte Stelle im Dokument verweisen." +msgstr "Sie kรถnnen auch benannte HTML-Anker eingeben, die als Lesezeichen auf eine bestimmte Stelle im Dokument verweisen." #: 05020400.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-06 05:23+0000\n" +"PO-Revision-Date: 2015-10-09 08:14+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441516982.000000\n" +"X-POOTLE-MTIME: 1444378440.000000\n" #: aaa_start.xhp msgctxt "" @@ -9207,7 +9207,7 @@ "23\n" "help.text" msgid "To jump to a specific line in a text document, first enter a bookmark at that position (Insert - Bookmark)." -msgstr "Wenn an eine bestimmte Stelle im selben Dokument gesprungen werden soll, fรผgen Sie an dieser Stelle eine Textmarke ein (Einfรผgen - Textmarke). Wรผnschen Sie eine Verzweigung zu einer Tabellenzelle, dann geben Sie der Zelle einen Namen (Einfรผgen - Namen - Festlegen)." +msgstr "Wenn an eine bestimmte Stelle im selben Dokument gesprungen werden soll, fรผgen Sie an dieser Stelle ein Lesezeichen ein (Einfรผgen - Lesezeichen). Wรผnschen Sie eine Verzweigung zu einer Tabellenzelle, dann geben Sie der Zelle einen Namen (Einfรผgen - Namen - Festlegen)." #: hyperlink_insert.xhp msgctxt "" @@ -9224,7 +9224,7 @@ "24\n" "help.text" msgid "Hyperlinks can also be inserted by drag-and-drop from the Navigator. Hyperlinks can refer to references, headings, graphics, tables, objects, directories or bookmarks." -msgstr "Hyperlinks kรถnnen Sie auch durch Ziehen&Ablegen aus dem Navigator einfรผgen. Die Hyperlinks kรถnnen auf Referenzen verweisen, auf รœberschriften, Grafiken, Tabellen, Objekte, Verzeichnisse oder Textmarken." +msgstr "Hyperlinks kรถnnen Sie auch durch Ziehen&Ablegen aus dem Navigator einfรผgen. Die Hyperlinks kรถnnen auf Referenzen verweisen, auf รœberschriften, Grafiken, Tabellen, Objekte, Verzeichnisse oder Lesezeichen." #: hyperlink_insert.xhp msgctxt "" @@ -9719,7 +9719,7 @@ "26\n" "help.text" msgid "To embed graphics that were first inserted as links, go to Edit - Links and click the Break Link button." -msgstr "Um Grafiken einzubetten, die vorher als Link eingefรผgt wurden, gehen Sie รผber ร„ndern - Links und klicken dann auf die Schaltflรคche Lรถsen." +msgstr "Um Grafiken einzubetten, die vorher als Verknรผpfung eingefรผgt wurden, wรคhlen Sie im Menรผ Bearbeiten - Verknรผpfungen... und klicken dann auf die Schaltflรคche Lรถsen." #: insert_bitmap.xhp msgctxt "" @@ -13906,7 +13906,7 @@ "13\n" "help.text" msgid "Hyperlinks and bookmarks" -msgstr "Hyperlinks und Textmarken" +msgstr "Hyperlinks und Lesezeichen" #: ms_import_export_limitations.xhp msgctxt "" @@ -14653,7 +14653,7 @@ "13\n" "help.text" msgid "On the Navigation toolbar, you first select the category, then click on one of the buttons, Previous Object or Next Object. The names of the buttons refer to the category, for example, the button \"Next Object\" is named \"Next Page\" or \"Next Bookmark\" according to the category." -msgstr "In der AbreiรŸleiste Navigation wรคhlen Sie zuerst die Kategorie, dann klicken Sie dort auf eine der Schaltflรคchen rechts, Voriges Objekt oder Nรคchstes Objekt. Die Namen der Schaltflรคchen richten sich nach der Kategorie, z. B. heiรŸt die Schaltflรคche zum Weiterblรคttern je nach Kategorie \"Nรคchste Seite\" oder \"Nรคchste Textmarke\"." +msgstr "In der AbreiรŸleiste Navigation wรคhlen Sie zuerst die Kategorie, dann klicken Sie dort auf eine der Schaltflรคchen rechts, Voriges Objekt oder Nรคchstes Objekt. Die Namen der Schaltflรคchen richten sich nach der Kategorie, z.B. heiรŸt die Schaltflรคche zum Weiterblรคttern je nach Kategorie \"Nรคchste Seite\" oder \"Nรคchstes Lesezeichen\"." #: navpane_on.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-24 16:29+0000\n" +"PO-Revision-Date: 2015-09-22 15:49+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435163370.000000\n" +"X-POOTLE-MTIME: 1442936992.000000\n" #: 00000004.xhp msgctxt "" @@ -895,7 +895,7 @@ "12\n" "help.text" msgid "Choose Insert - Bookmark" -msgstr "Menรผ Einfรผgen - Textmarke..." +msgstr "Wรคhlen Sie im Menรผ Einfรผgen - Lesezeichen..." #: 00000404.xhp msgctxt "" @@ -921,7 +921,7 @@ "14\n" "help.text" msgid "Bookmark" -msgstr "Textmarke einfรผgen" +msgstr "Lesezeichen einfรผgen" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-06 06:39+0000\n" +"PO-Revision-Date: 2015-09-22 15:52+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441521552.000000\n" +"X-POOTLE-MTIME: 1442937122.000000\n" #: 01120000.xhp msgctxt "" @@ -1516,7 +1516,7 @@ "4\n" "help.text" msgid "The entries largely correspond to those in the Navigator selection box. You can also select other jump destinations. An example are the reminders, which you can set with the Set Reminder icon in the Navigator. You can select an object from among the following options on the Navigation toolbar: table, text frame, graphics, OLE object, page, headings, reminder, drawing object, control field, section, bookmark, selection, footnote, note, index entry, table formula, wrong table formula." -msgstr "Die Eintrรคge entsprechen weitgehend denen in der Auswahlbox des Navigators. Zusรคtzlich kรถnnen Sie auch andere Sprungziele auswรคhlen, z. B. Merker, die Sie mit dem Symbol Merker setzen im Navigator setzen kรถnnen. Als Objekt kรถnnen Sie in der AbreiรŸleiste Navigation unter folgenden Optionen wรคhlen: Tabelle, Textrahmen, Grafik, OLE-Objekt, Seite, รœberschrift, Merker, Zeichenobjekt, Kontrollfeld, Bereich, Textmarke, Markierung, FuรŸnote, Notiz, Verzeichniseintrag oder (fehlerhafte) Tabellenformel." +msgstr "Die Eintrรคge entsprechen weitgehend denen in der Auswahlbox des Navigators. Zusรคtzlich kรถnnen Sie auch andere Sprungziele auswรคhlen, z.B. Merker, die Sie mit dem Symbol Merker setzen im Navigator setzen kรถnnen. Als Objekt kรถnnen Sie in der AbreiรŸleiste Navigation unter folgenden Optionen wรคhlen: Tabelle, Textrahmen, Grafik, OLE-Objekt, Seite, รœberschrift, Merker, Zeichenobjekt, Kontrollfeld, Bereich, Lesezeichen, Markierung, FuรŸnote, Notiz, Verzeichniseintrag oder (fehlerhafte) Tabellenformel." #: 02110100.xhp msgctxt "" @@ -4762,7 +4762,7 @@ "tit\n" "help.text" msgid "Insert Bookmark" -msgstr "Textmarke einfรผgen" +msgstr "Lesezeichen einfรผgen" #: 04040000.xhp msgctxt "" @@ -4779,7 +4779,7 @@ "1\n" "help.text" msgid "Insert Bookmark" -msgstr "Textmarke einfรผgen" +msgstr "Lesezeichen einfรผgen" #: 04040000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-07 12:32+0000\n" -"Last-Translator: Christian Lohmaier \n" +"PO-Revision-Date: 2015-09-21 15:14+0000\n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438950742.000000\n" +"X-POOTLE-MTIME: 1442848489.000000\n" #: LibreLogo.xhp msgctxt "" @@ -142,7 +142,7 @@ "hd_344\n" "help.text" msgid "Program editor/Syntax highlighting/Translating" -msgstr "Prtogrammeditor/Syntaxvervorhebung/รœbersetzen" +msgstr "Programmeditor/Syntaxvervorhebung/รœbersetzen" #: LibreLogo.xhp msgctxt "" @@ -350,7 +350,7 @@ "par_590\n" "help.text" msgid "PRINT โ€œtextโ€[2] ; print โ€œxโ€
PRINT โ€œtextโ€[1:3] ; print โ€œexโ€
" -msgstr "AUSGABE โ€žTextโ€[2] ; gibt โ€žxโ€ aus
AUSGABE โ€žTextโ€[1:3] ; gibt โ€žexโ€ aus
" +msgstr "AUSGABE โ€žTextโ€[2] ; gibt โ€žxโ€ zurรผck
AUSGABE โ€žTextโ€[1:3] ; gibt โ€žexโ€ zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -446,7 +446,7 @@ "par_710\n" "help.text" msgid "PRINT โ€œHello, World!โ€
print โ€œHello, World, again!โ€
" -msgstr "AUSGABE โ€žHallo, Welt!โ€
ausgabe โ€žHallo, Welt, noch einmal!โ€
" +msgstr "AUSGABE โ€žHallo, Welt!โ€
gibt โ€žHallo, Welt, noch einmal!โ€ zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1070,7 +1070,7 @@ "par_1370\n" "help.text" msgid "LABEL โ€œtextโ€ ; print text in the turtle position
LABEL 'text' ; see above
LABEL \"text ; see above (only for single words)
" -msgstr "SCHRIFT โ€žTextโ€œ ; Gibt \"Text\" an der Position des Turtles aus
SCHRIFT \"Text\" ; Wie oberhalb
SCHRIFT โ€šTextโ€˜ ; Wie oberhalb
SCHRIFT 'Text' ; Wie oberhalb
SCHRIFT \"Text ; Wie oberhalb (nur fรผr einzelne Worte)
" +msgstr "SCHREIBE โ€žTextโ€œ ; Gibt \"Text\" an der Position des Turtles zurรผck
SCHREIBE \"Text\" ; Wie oberhalb
SCHREIBE โ€šTextโ€˜ ; Wie oberhalb
SCHREIBE 'Text' ; Wie oberhalb
SCHREIBE \"Text ; Wie oberhalb (nur fรผr einzelne Worte)
" #: LibreLogo.xhp msgctxt "" @@ -1582,7 +1582,7 @@ "par_1960\n" "help.text" msgid "Return value of the function." -msgstr "Gibt den Wert einer Funktion aus." +msgstr "Gibt den Wert einer Funktion zurรผck." #: LibreLogo.xhp msgctxt "" @@ -1590,7 +1590,7 @@ "par_1970\n" "help.text" msgid "TO randomletter
OUTPUT RANDOM โ€œqwertzuiopasdfghjklyxcvbnmโ€
END

PRINT randomletter + randomletter + randomletter ; print 3-letter random character sequence
" -msgstr "ZU Zufallsbuchstabe
RรœCKGABE ZUFร„LLIG โ€žqwertzuiopasdfghjklyxcvbnmโ€œ
ENDE

AUSGABE Zufallsbuchstabe + Zufallsbuchstabe + Zufallsbuchstabe ; Gibt eine Zeichenfolge aus 3 zufรคlligen Buchstaben aus
" +msgstr "ZU Zufallsbuchstabe
RรœCKGABE ZUFร„LLIG โ€žqwertzuiopasdfghjklyxcvbnmโ€œ
ENDE

AUSGABE Zufallsbuchstabe + Zufallsbuchstabe + Zufallsbuchstabe ; Gibt eine Zeichenfolge aus 3 zufรคlligen Buchstaben zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1614,7 +1614,7 @@ "par_2000\n" "help.text" msgid "TO example number
IF number < 0 [ STOP ]
PRINT SQRT number ; print square root
]

example 100
example -1 ; without output and error
example 25
" -msgstr "ZU Beispiel Zahl
WENN Zahl < 0 [ STOPP ]
AUSGABE WURZEL Zahl ; Gibt die Quadratwurzel aus
]

Beispiel 100
Beispiel -1 ; Ohne Ausgabe und ohne Fehlermeldung
Beispiel 25
" +msgstr "ZU Beispiel Zahl
WENN Zahl < 0 [ STOPP ]
AUSGABE WURZEL Zahl ; Gibt die Quadratwurzel zurรผck
]

Beispiel 100
Beispiel -1 ; Ohne Ausgabe und ohne Fehlermeldung
Beispiel 25
" #: LibreLogo.xhp msgctxt "" @@ -1670,7 +1670,7 @@ "par_2070\n" "help.text" msgid "WHILE TRUE [ POSITION ANY ] ; endless loop
PRINT TRUE ; print true
" -msgstr "SOLANGE WAHR [ POSITION BELIEBIG ] ; Endlosschleife
AUSGABE WAHR ; Gibt WAHR aus
" +msgstr "SOLANGE WAHR [ POSITION BELIEBIG ] ; Endlosschleife
AUSGABE WAHR ; Gibt WAHR zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1694,7 +1694,7 @@ "par_2100\n" "help.text" msgid "WHILE NOT FALSE [ POSITION ANY ] ; endless loop
PRINT FALSE ; print false
" -msgstr "SOLANGE NICHT FALSCH [ POSITION BELIEBIG ] ; Endlosschleife
AUSGABE FALSCH ; Gibt FALSCH aus
" +msgstr "SOLANGE NICHT FALSCH [ POSITION BELIEBIG ] ; Endlosschleife
AUSGABE FALSCH ; Gibt FALSCH zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1710,7 +1710,7 @@ "par_2120\n" "help.text" msgid "PRINT PAGESIZE ; print list of the page sizes in points, eg. [595.30, 841.89]
" -msgstr "AUSGABE SEITE ; Gibt eine Liste mit den SeitenmaรŸen in Points aus, z.B. [595.30, 841.89]
" +msgstr "AUSGABE SEITE ; Gibt eine Liste mit den SeitenmaรŸen in Points zurรผck, z.B. [595.30, 841.89]
" #: LibreLogo.xhp msgctxt "" @@ -1726,7 +1726,7 @@ "par_2140\n" "help.text" msgid "PRINT PI ; print 3.14159265359
" -msgstr "AUSGABE PI ; Gibt 3,14159265359 aus
" +msgstr "AUSGABE PI ; Gibt 3,14159265359 zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1750,7 +1750,7 @@ "par_2170\n" "help.text" msgid "PRINT โ€œtextโ€ ; print โ€œtextโ€ in a dialog box
PRINT 5 + 10 ; print 15
" -msgstr "AUSGABE โ€žTextโ€œ ; Gibt \"Text\" in einer Dialogbox aus
AUSGABE 5 + 10 ; Gibt 15 aus
" +msgstr "AUSGABE โ€žTextโ€œ ; Gibt \"Text\" in einer Dialogbox zurรผck
AUSGABE 5 + 10 ; Gibt 15 zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1766,7 +1766,7 @@ "par_2190\n" "help.text" msgid "PRINT INPUT โ€œInput value?โ€ ; ask and print a string by a query dialog box
PRINT FLOAT (INPUT โ€œFirst number?โ€) + FLOAT (INPUT โ€œSecond number?โ€) ; simple calculator
" -msgstr "AUSGABE EINGABE โ€žEingabewert?โ€œ ; Gibt den Text aus und fragt nach einer Eingabe in einer Dialogbox
AUSGABE DEZIMAL (EINGABE โ€žErste Zahl?โ€œ) + DEZIMAL (EINGABE โ€žZweite Zahlโ€œ) ; Einfacher Rechner
" +msgstr "AUSGABE EINGABE โ€žEingabewert?โ€œ ; Gibt den Text zurรผck und fragt nach einer Eingabe in einer Dialogbox
AUSGABE DEZIMAL (EINGABE โ€žErste Zahl?โ€œ) + DEZIMAL (EINGABE โ€žZweite Zahlโ€œ) ; Einfacher Rechner
" #: LibreLogo.xhp msgctxt "" @@ -1830,7 +1830,7 @@ "par_2270\n" "help.text" msgid "PRINT RANDOM 100 ; random float number (0 <= x < 100)
PRINT RANDOM โ€œtextโ€ ; random letter of the โ€œtextโ€
PRINT RANDOM [1, 2] ; random list element (1 or 2)
" -msgstr "AUSGABE ZUFร„LLIG 100 ; Zufallszahl (0 <= x <= 100)
AUSGABE ZUFร„LLIG โ€žTextโ€œ ; Gibt zufรคllig einen Buchstaben aus der Zeichenfolge \"Text\" aus
AUSGABE ZUFร„LLIG [1, 2] ; Zufรคlliges Element aus der Liste (1 oder 2)" +msgstr "AUSGABE ZUFร„LLIG 100 ; Zufallszahl (0 <= x <= 100)
AUSGABE ZUFร„LLIG โ€žTextโ€œ ; Gibt zufรคllig einen Buchstaben aus der Zeichenfolge \"Text\" zurรผck
AUSGABE ZUFร„LLIG [1, 2] ; Zufรคlliges Element aus der Liste (1 oder 2)" #: LibreLogo.xhp msgctxt "" @@ -1846,7 +1846,7 @@ "par_2290\n" "help.text" msgid "PRINT INT 3.8 ; print 3 (integer part of 3.8)
PRINT INT RANDOM 100 ; random integer number (0 <= x < 100)
PRINT INT โ€œ7โ€ ; convert the string parameter to integer
" -msgstr "AUSGABE GANZ 3,8 ; Gibt 3 aus (ganzzahliger Anteil von 3,8)
AUSGABE GANZ ZUFร„LLIG 100 ; Ganzzahlige Zufallszahl (0 <= x <= 100)
AUSGABE GANZ โ€ž7โ€œ ; ร„ndert eine Ziffernfolge in eine ganze Zahl um
" +msgstr "AUSGABE GANZ 3,8 ; Gibt 3 zurรผck (ganzzahliger Anteil von 3,8)
AUSGABE GANZ ZUFร„LLIG 100 ; Ganzzahlige Zufallszahl (0 <= x <= 100)
AUSGABE GANZ โ€ž7โ€œ ; ร„ndert eine Ziffernfolge in eine ganze Zahl um
" #: LibreLogo.xhp msgctxt "" @@ -1862,7 +1862,7 @@ "par_2310\n" "help.text" msgid "; convert the string parameter to float number
PRINT 2 * FLOAT โ€œ5.5โ€ ; print 11.0
" -msgstr "; Wandelt eine Ziffernfolge in eine Dezimalzahl um
AUSGABE 2 * DEZIMAL โ€ž5,5โ€œ ; Gibt 11,0 aus
" +msgstr "; Wandelt eine Ziffernfolge in eine Dezimalzahl um
AUSGABE 2 * DEZIMAL โ€ž5,5โ€œ ; Gibt 11,0 zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1878,7 +1878,7 @@ "par_2330\n" "help.text" msgid "; convert the number parameter to string
PRINT โ€œResult: โ€ + STR 5 ; print โ€œResult: 5โ€
PRINT 10 * STR 5 ; print 5555555555
" -msgstr "; Wandelt eine Zahl in eine Zeichenfolge um
AUSGABE โ€žErgebnis: โ€œ + ZEICHEN 5 ; Gibt \"Ergebnis: 5\" aus
AUSGABE 10 * ZEICHEN 5 ; Gibt 5555555555 aus
" +msgstr "; Wandelt eine Zahl in eine Zeichenfolge um
AUSGABE โ€žErgebnis: โ€œ + ZEICHEN 5 ; Gibt \"Ergebnis: 5\" zurรผck
AUSGABE 10 * ZEICHEN 5 ; Gibt 5555555555 zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -1894,7 +1894,7 @@ "par_2350\n" "help.text" msgid "PRINT SQRT 100 ; print 10, square root of 100
" -msgstr "AUSGABE WURZEL 100 ; Gibt 10 aus, die Quadratwurzel aus 100
" +msgstr "AUSGABE WURZEL 100 ; Gibt 10 zurรผck, die Quadratwurzel aus 100
" #: LibreLogo.xhp msgctxt "" @@ -1910,7 +1910,7 @@ "par_2370\n" "help.text" msgid "PRINT SIN 90 * PI/180 ; print 1.0 (sinus of 90ยฐ in radians)
" -msgstr "AUSGABE SIN 90 * PI/180 ; Gibt 1,0 aus (Sinus von 90ยฐ im BogenmaรŸ)
" +msgstr "AUSGABE SIN 90 * PI/180 ; Gibt 1,0 zurรผck (Sinus von 90ยฐ im BogenmaรŸ)
" #: LibreLogo.xhp msgctxt "" @@ -1926,7 +1926,7 @@ "par_2390\n" "help.text" msgid "PRINT COS 0 * PI/180 ; print 1.0 (cosinus of 0ยฐ in radians)
" -msgstr "AUSGABE COS 0 * PI/180 ; Gibt 1,0 aus (Kosinus von 0ยฐ im BogenmaรŸ)
" +msgstr "AUSGABE COS 0 * PI/180 ; Gibt 1,0 zurรผck (Kosinus von 0ยฐ im BogenmaรŸ)
" #: LibreLogo.xhp msgctxt "" @@ -1958,7 +1958,7 @@ "par_2410\n" "help.text" msgid "PRINT ROUND 3.8 ; print 4 (rounding 3.8)
PRINT ROUND RANDOM 100 ; random integer number (0 <= x <= 100)
" -msgstr "AUSGABE RUNDE 3,8 ; Gibt 4 aus (den gerundeten Wert von 3,8)
AUSGABE RUNDE ZUFร„LLIG 100 ; Zufallszahl (0 <= x <= 100)
" +msgstr "AUSGABE RUNDE 3,8 ; Gibt 4 zurรผck (den gerundeten Wert von 3,8)
AUSGABE RUNDE ZUFร„LLIG 100 ; Zufallszahl (0 <= x <= 100)
" #: LibreLogo.xhp msgctxt "" @@ -1974,7 +1974,7 @@ "par_2430\n" "help.text" msgid "PRINT ABS -10 ; print 10, absolute value of -10
" -msgstr "AUSGABE BETRAG -10 ; Gibt 10 aus, den Betrag des Wertes -10
" +msgstr "AUSGABE BETRAG -10 ; Gibt 10 zurรผck, den Betrag des Wertes -10
" #: LibreLogo.xhp msgctxt "" @@ -1990,7 +1990,7 @@ "par_2450\n" "help.text" msgid "PRINT COUNT โ€œtextโ€ ; print 4, character count of โ€œtextโ€
PRINT COUNT [1, 2, 3] ; print 3, size of the list
" -msgstr "AUSGABE Zร„HLE โ€žTextโ€œ ; Gibt 4 aus, die Anzahl der Buchstaben in \"Text\"
AUSGABE Zร„HLE [1, 2, 3] ; Gibt 3 aus, die Anzahl der Elemente der Liste
" +msgstr "AUSGABE Zร„HLE โ€žTextโ€œ ; Gibt 4 zurรผck, die Anzahl der Buchstaben in \"Text\"
AUSGABE Zร„HLE [1, 2, 3] ; Gibt 3 zurรผck, die Anzahl der Elemente der Liste
" #: LibreLogo.xhp msgctxt "" @@ -2006,7 +2006,7 @@ "par_2470\n" "help.text" msgid "; Convert list to Python set
PRINT SET [4, 5, 6, 6] ; print {4, 5, 6}
PRINT SET [4, 5, 6, 6] | SET [4, 1, 9] ; print {1, 4, 5, 6, 9}, union
PRINT SET [4, 5, 6, 6] & SET [4, 1, 9] ; print {4}, intersection
PRINT SET ([4, 5, 6, 6]) - SET [4, 1, 9] ; print {5, 6}, difference
PRINT SET [4, 5, 6, 6] ^ SET [4, 1, 9] ; print {1, 5, 6, 9}, symmetric difference
" -msgstr "; Wandelt eine Liste in eine Python-Menge (eine Liste einmaliger Elemente) um
AUSGABE MENGE [4, 5, 6, 6] ; Gibt {4, 5, 6} aus
AUSGABE MENGE [4, 5, 6, 6] | MENGE [4, 1, 9] ; Gibt {1, 4, 5, 6, 9} aus, die vereinigte Menge beider Listen
AUSGABE MENGE [4, 5, 6, 6] & MENGE [4, 1, 9] ; Gibt {4} aus, die Schnittmenge beider Listen
AUSGABE MENGE ([4, 5, 6, 6]) - MENGE [4, 1, 9] ; Gibt {5, 6} aus, die Differenz beider Listen
AUSGABE MENGE [4, 5, 6, 6] ^ MENGE [4, 1, 9] ; Gibt {1, 5, 6, 9} aus, die symmetrische Differenz beider Listen
" +msgstr "; Wandelt eine Liste in eine Python-Menge (eine Liste einmaliger Elemente) um
AUSGABE MENGE [4, 5, 6, 6] ; Gibt {4, 5, 6} zurรผck
AUSGABE MENGE [4, 5, 6, 6] | MENGE [4, 1, 9] ; Gibt {1, 4, 5, 6, 9} zurรผck, die vereinigte Menge beider Listen
AUSGABE MENGE [4, 5, 6, 6] & MENGE [4, 1, 9] ; Gibt {4} zurรผck, die Schnittmenge beider Listen
AUSGABE MENGE ([4, 5, 6, 6]) - MENGE [4, 1, 9] ; Gibt {5, 6} zurรผck, die Differenz beider Listen
AUSGABE MENGE [4, 5, 6, 6] ^ MENGE [4, 1, 9] ; Gibt {1, 5, 6, 9} zurรผck, die symmetrische Differenz beider Listen
" #: LibreLogo.xhp msgctxt "" @@ -2014,7 +2014,7 @@ "hd_2480\n" "help.text" msgid "RANGE" -msgstr "REIHE" +msgstr "FOLGE" #: LibreLogo.xhp msgctxt "" @@ -2022,7 +2022,7 @@ "par_2490\n" "help.text" msgid "; Python-like list generation
PRINT RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
PRINT RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]
PRINT RANGE 3 10 3 ; print [3, 6, 9]

FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]
FORWARD i
LEFT 90
]
" -msgstr "; Python-artige Listengeneration (eine Reihe von Zahlen)
AUSGABE REIHE 10 ; Gibt [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] aus, die Reihe der Zahlen von 0 bis 9
AUSGABE REIHE 3 10 ; Gibt [3, 4, 5, 6, 7, 8, 9] aus, die Reihe der Zahlen von 3 bis 9
AUSGABE REIHE 3 10 3 ; Gibt [3, 6, 9] aus, die Reihe der Zahlen von 3 bis 9 in 3er Intervallen

FรœR i IN REIHE 10 50 10 [ ; Schleife mit den Zahlen [10, 20, 30, 40]
VOR i
LINKS 90
]
" +msgstr "; Python-artige Listengeneration (eine Folge von Zahlen)
AUSGABE FOLGE 10 ; Gibt [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] zurรผck, die Folge mit den Zahlen von 0 bis 9
AUSGABE FOLGE 3 10 ; Gibt [3, 4, 5, 6, 7, 8, 9] zurรผck, die Folge mit den Zahlen von 3 bis 9
AUSGABE FOLGE 3 10 3 ; Gibt [3, 6, 9] zurรผck, die Folge mit den Zahlen von 3 bis 9 in 3er Intervallen

FรœR i IN FOLGE 10 50 10 [ ; Schleife mit den Zahlen [10, 20, 30, 40]
VOR i
LINKS 90
]
" #: LibreLogo.xhp msgctxt "" @@ -2038,7 +2038,7 @@ "par_2510\n" "help.text" msgid "; remove the repeating elements of a list using set and list conversion
PRINT LIST (SET [1, 3, 5, 5, 2, 1]) ; print [1, 3, 5, 2]
" -msgstr "; Entfernt doppelte Elemente aus einer Liste
AUSGABE LISTE (MENGE [1, 3, 5, 5, 2, 1]) ; Gibt [1, 3, 5, 2] aus
" +msgstr "; Entfernt doppelte Elemente aus einer Liste
AUSGABE LISTE (MENGE [1, 3, 5, 5, 2, 1]) ; Gibt [1, 3, 5, 2] zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -2086,7 +2086,7 @@ "par_2570\n" "help.text" msgid "PRINT SORTED [5, 1, 3, 4] ; print [1, 3, 4, 5]
" -msgstr "AUSGABE SORTIERT [5, 1, 3, 4]; Gibt [1, 3, 4, 5] aus
" +msgstr "AUSGABE SORTIERT [5, 1, 3, 4]; Gibt [1, 3, 4, 5] zurรผck
" #: LibreLogo.xhp msgctxt "" @@ -2110,7 +2110,7 @@ "par_2600\n" "help.text" msgid "PRINT SUB (โ€œtโ€, โ€œTโ€, โ€œtextโ€) ; print โ€œTextโ€, replacing โ€œtโ€ with โ€œTโ€
PRINT SUB (โ€œ(.)โ€, โ€œ\\\\1\\\\1โ€, โ€œtextโ€) ; print โ€œtteexxttโ€, doubling every characters
" -msgstr "AUSGABE ERSETZT (โ€œtโ€, โ€œTโ€, โ€œtextโ€) ; Gibt โ€œTextโ€ aus, wobei โ€œtโ€ durch โ€œTโ€ ersetzt wurde
AUSGABE ERSETZT (โ€œ(.)โ€, โ€œ\\\\1\\\\1โ€, โ€œtextโ€) ; Gibt โ€œtteexxttโ€ aus, wobei jeder Buchstabe verdoppelt wurde
" +msgstr "AUSGABE ERSETZT (โ€œtโ€, โ€œTโ€, โ€œtextโ€) ; Gibt โ€œTextโ€ zurรผck, wobei โ€œtโ€ durch โ€œTโ€ ersetzt wurde
AUSGABE ERSETZT (โ€œ(.)โ€, โ€œ\\\\1\\\\1โ€, โ€œtextโ€) ; Gibt โ€œtteexxttโ€ zurรผck, wobei jeder Buchstabe verdoppelt wurde
" #: LibreLogo.xhp msgctxt "" @@ -2158,7 +2158,7 @@ "par_2660\n" "help.text" msgid "PRINT FINDALL(โ€œ\\w+โ€, โ€œDogs, cats.โ€) ; print [โ€œDogsโ€, โ€œcatsโ€], the list of the words.
" -msgstr "AUSGABE FINDEALLE (โ€œ\\w+โ€, โ€œHunde, Katzen.โ€) ; Gibt [โ€œHundeโ€, โ€œKatzenโ€] aus, die Liste aller Worte.
" +msgstr "AUSGABE FINDEALLE (โ€œ\\w+โ€, โ€œHunde, Katzen.โ€) ; Gibt [โ€œHundeโ€, โ€œKatzenโ€] zurรผck, die Liste aller Worte.
" #: LibreLogo.xhp msgctxt "" @@ -2174,7 +2174,7 @@ "par_2680\n" "help.text" msgid "PRINT MIN [1, 2, 3] ; print 1, the lowest element of the list
" -msgstr "AUSGABE MIN [1, 2, 3] ; Gibt 1 aus, das kleinste Element der Liste
" +msgstr "AUSGABE MIN [1, 2, 3] ; Gibt 1 zurรผck, das kleinste Element der Liste
" #: LibreLogo.xhp msgctxt "" @@ -2190,7 +2190,7 @@ "par_2700\n" "help.text" msgid "PRINT MAX [1, 2, 3] ; print 3, the greatest element of the list
" -msgstr "AUSGABE MAX [1, 2, 3] ; Gibt 3 aus, das grรถรŸte Element der Liste
" +msgstr "AUSGABE MAX [1, 2, 3] ; Gibt 3 zurรผck, das grรถรŸte Element der Liste
" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter.po libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/helpcontent2/source/text/swriter.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/helpcontent2/source/text/swriter.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-19 20:48+0000\n" +"PO-Revision-Date: 2015-09-22 15:48+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434746901.000000\n" +"X-POOTLE-MTIME: 1442936895.000000\n" #: main0000.xhp msgctxt "" @@ -431,7 +431,7 @@ "6\n" "help.text" msgid "Bookmark" -msgstr "Textmarke..." +msgstr "Lesezeichen..." #: main0104.xhp msgctxt "" @@ -2047,7 +2047,7 @@ "12\n" "help.text" msgid "You can also create various indexes and tables in text documents. You can define the structure and appearance of the indexes and tables according to your individual needs. Live hyperlinks and bookmarks let you jump directly to the corresponding items in the text." -msgstr "Ebenso kรถnnen Sie in Textdokumenten verschiedene Verzeichnisse erzeugen. Struktur und Erscheinungsbild der Verzeichnisse lassen sich an Ihre individuellen Bedรผrfnisse anpassen. รœber Live-Hyperlinks und Textmarken kรถnnen Sie direkt zu den betreffenden Textstellen springen." +msgstr "Ebenso kรถnnen Sie in Textdokumenten verschiedene Verzeichnisse erzeugen. Struktur und Erscheinungsbild der Verzeichnisse lassen sich an Ihre individuellen Bedรผrfnisse anpassen. รœber Live-Hyperlinks und Lesezeichen kรถnnen Sie direkt zu den betreffenden Textstellen springen." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/librelogo/source/pythonpath.po libreoffice-l10n-5.0.3~rc2/translations/source/de/librelogo/source/pythonpath.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/librelogo/source/pythonpath.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/librelogo/source/pythonpath.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-07-23 15:41+0000\n" -"Last-Translator: Christian \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-18 20:51+0000\n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406130077.000000\n" +"X-POOTLE-MTIME: 1442609503.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -230,7 +230,7 @@ "CLOSE\n" "property.text" msgid "close" -msgstr "schliessen" +msgstr "schliessen|schlieรŸen" #: LibreLogo_en_US.properties msgctxt "" @@ -286,7 +286,7 @@ "FONTHEIGHT\n" "property.text" msgid "fontsize|textsize|textheight" -msgstr "schriftgrรถsse|textgrรถsse|schg|tg" +msgstr "schriftgrรถsse|textgrรถsse|schgr|tgr" #: LibreLogo_en_US.properties msgctxt "" @@ -294,7 +294,7 @@ "FONTWEIGHT\n" "property.text" msgid "fontweight" -msgstr "schriftgewicht|schg" +msgstr "schriftgewicht|schgw" #: LibreLogo_en_US.properties msgctxt "" @@ -414,7 +414,7 @@ "TO\n" "property.text" msgid "to" -msgstr "zu" +msgstr "zu|als" #: LibreLogo_en_US.properties msgctxt "" @@ -694,7 +694,7 @@ "RANGE\n" "property.text" msgid "range" -msgstr "reihe" +msgstr "folge" #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-09-06 06:30+0000\n" +"PO-Revision-Date: 2015-09-22 15:41+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441521031.000000\n" +"X-POOTLE-MTIME: 1442936461.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -21787,7 +21787,7 @@ "Label\n" "value.text" msgid "Bookmar~k..." -msgstr "~Textmarke..." +msgstr "~Lesezeichen..." #: WriterCommands.xcu msgctxt "" @@ -23947,7 +23947,7 @@ "Label\n" "value.text" msgid "To Next Bookmark" -msgstr "Zur nรคchsten Textmarke" +msgstr "Zum nรคchsten Lesezeichen" #: WriterCommands.xcu msgctxt "" @@ -23965,7 +23965,7 @@ "Label\n" "value.text" msgid "To Previous Bookmark" -msgstr "Zur vorherigen Textmarke" +msgstr "Zum vorherigen Lesezeichen" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/de/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-09-02 15:03+0000\n" -"Last-Translator: Christian Lohmaier \n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/svl/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/de/svl/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/svl/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/svl/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2013-11-29 06:52+0000\n" -"Last-Translator: Thomas \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-22 15:32+0000\n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.0\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1385707924.0\n" +"X-POOTLE-MTIME: 1442935971.000000\n" #: mediatyp.src msgctxt "" @@ -214,7 +214,7 @@ "STR_SVT_MIMETYPE_TEXT_URL\n" "string.text" msgid "Bookmark" -msgstr "Bookmark" +msgstr "Lesezeichen" #: mediatyp.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/svtools/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/de/svtools/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/svtools/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-29 13:24+0000\n" +"PO-Revision-Date: 2015-09-22 15:33+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435584277.000000\n" +"X-POOTLE-MTIME: 1442936011.000000\n" #: imagemgr.src msgctxt "" @@ -30,7 +30,7 @@ "STR_DESCRIPTION_BOOKMARKFILE\n" "string.text" msgid "Bookmark file" -msgstr "Bookmarkdatei" +msgstr "Lesezeichen-Datei" #: imagemgr.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/svx/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/de/svx/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/svx/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/svx/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-07-26 05:58+0000\n" +"PO-Revision-Date: 2015-09-22 15: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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437890296.000000\n" +"X-POOTLE-MTIME: 1442936052.000000\n" #: errtxt.src msgctxt "" @@ -837,7 +837,7 @@ "ERRCODE_SFX_INVALIDBMKPATH\n" "string.text" msgid "The bookmark folder is invalid." -msgstr "Der Bookmarkordner ist ungรผltig" +msgstr "Der Lesezeichen-Ordner ist ungรผltig." #: errtxt.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/de/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-26 06:22+0000\n" +"PO-Revision-Date: 2015-10-09 08:08+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437891755.000000\n" +"X-POOTLE-MTIME: 1444378110.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -3357,7 +3357,7 @@ "title\n" "string.text" msgid "Confirm Linked Graphic" -msgstr "Verlinkte Grafik bestรคtigen" +msgstr "Verknรผpfte Grafiken bestรคtigen" #: linkwarndialog.ui msgctxt "" @@ -3366,7 +3366,7 @@ "text\n" "string.text" msgid "The file %FILENAME will not be stored along with your document, but only referenced as a link." -msgstr "Die Datei %FILENAME wird nicht zusammen mit Ihrem Dokument gespeichert, sondern nur verlinkt." +msgstr "Die Datei %FILENAME wird nicht zusammen mit Ihrem Dokument gespeichert, sondern nur verknรผpft." #: linkwarndialog.ui msgctxt "" @@ -3384,7 +3384,7 @@ "label\n" "string.text" msgid "_Keep Link" -msgstr "Link _behalten" +msgstr "Verknรผpfung _beibehalten" #: linkwarndialog.ui msgctxt "" @@ -3402,7 +3402,7 @@ "label\n" "string.text" msgid "_Ask when linking a graphic" -msgstr "Beim Verlinken einer Grafik _fragen" +msgstr "Beim Verknรผpfen einer Grafik _fragen" #: namespacedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/sw/source/core/undo.po libreoffice-l10n-5.0.3~rc2/translations/source/de/sw/source/core/undo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/sw/source/core/undo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/sw/source/core/undo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-07-26 06:28+0000\n" +"PO-Revision-Date: 2015-09-22 15: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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437892113.000000\n" +"X-POOTLE-MTIME: 1442936163.000000\n" #: undo.src msgctxt "" @@ -118,7 +118,7 @@ "STR_DELBOOKMARK\n" "string.text" msgid "Delete bookmark: $1" -msgstr "Textmarke lรถschen: $1" +msgstr "Lesezeichen lรถschen: $1" #: undo.src msgctxt "" @@ -126,7 +126,7 @@ "STR_INSBOOKMARK\n" "string.text" msgid "Insert bookmark: $1" -msgstr "Textmarke einfรผgen: $1" +msgstr "Lesezeichen einfรผgen: $1" #: undo.src msgctxt "" @@ -1102,7 +1102,7 @@ "STR_UNDO_BOOKMARK_RENAME\n" "string.text" msgid "Rename bookmark: $1 $2 $3" -msgstr "Textmarke umbenennen: $1 $2 $3" +msgstr "Lesezeichen umbenennen: $1 $2 $3" #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/de/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1802,7 +1802,7 @@ "STR_CONTENT_TYPE_BOOKMARK\n" "string.text" msgid "Bookmarks" -msgstr "Textmarken" +msgstr "Lesezeichen" #: utlui.src msgctxt "" @@ -1962,7 +1962,7 @@ "STR_CONTENT_TYPE_SINGLE_BOOKMARK\n" "string.text" msgid "Bookmark" -msgstr "Textmarke" +msgstr "Lesezeichen" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-04 12:33+0000\n" +"PO-Revision-Date: 2015-09-22 15:38+0000\n" "Last-Translator: Christian Kรผhl \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441370002.000000\n" +"X-POOTLE-MTIME: 1442936333.000000\n" #: abstractdialog.ui msgctxt "" @@ -6048,7 +6048,7 @@ "title\n" "string.text" msgid "Insert Bookmark" -msgstr "Textmarke einfรผgen" +msgstr "Lesezeichen einfรผgen" #: insertbookmark.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/vcl/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/de/vcl/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/vcl/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-27 20:17+0000\n" -"Last-Translator: Christian \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-09 08:04+0000\n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1417119449.000000\n" +"X-POOTLE-MTIME: 1444377875.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -314,7 +314,7 @@ "STR_FPICKER_INSERT_AS_LINK\n" "string.text" msgid "Insert as ~Link" -msgstr "Einfรผgen als ~Link" +msgstr "Als ~Verknรผpfung einfรผgen" #: fpicker.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/de/wizards/source/template.po libreoffice-l10n-5.0.3~rc2/translations/source/de/wizards/source/template.po --- libreoffice-l10n-5.0.2~rc2/translations/source/de/wizards/source/template.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/de/wizards/source/template.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-06-05 08:08+0000\n" -"Last-Translator: Thomas \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-22 15:40+0000\n" +"Last-Translator: Christian Kรผhl \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1370419704.0\n" +"X-POOTLE-MTIME: 1442936404.000000\n" #: template.src msgctxt "" @@ -254,7 +254,7 @@ "CorrespondenceNoTextmark\n" "string.text" msgid "The bookmark 'Recipient' is missing." -msgstr "Die Textmarke 'Recipient' fehlt." +msgstr "Das Lesezeichen 'Recipient' fehlt." #: template.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/dgo/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/dgo/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/dgo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/dgo/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/dgo/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/dgo/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/dgo/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/dgo/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/dgo/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/dgo/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/dgo/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/dgo/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/dz/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/dz/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/dz/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/dz/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/el/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 12:27+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-05 05:02+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: LANGUAGE \n" "Language: el\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439555258.000000\n" +"X-POOTLE-MTIME: 1444021324.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,123 +7983,111 @@ #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 1:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 2:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 3:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 4:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 5:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 6:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 7:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 8:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 9:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 10:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 11:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 12:30" +msgstr "ฮ— ฯŽฯฮฑ ฮตฮฏฮฝฮฑฮน 12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.0.3~rc2/translations/source/el/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/helpcontent2/source/text/sbasic/shared.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-01 05:53+0000\n" +"PO-Revision-Date: 2015-10-05 04:59+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: LANGUAGE \n" "Language: el\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438408404.000000\n" +"X-POOTLE-MTIME: 1444021154.000000\n" #: 00000002.xhp msgctxt "" @@ -9128,13 +9128,12 @@ msgstr "Print #iNumber, \"ฮœฮนฮฑ ฮฌฮปฮปฮท ฮณฯฮฑฮผฮผฮฎ ฮบฮตฮนฮผฮญฮฝฮฟฯ…\"" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "tit\n" "help.text" msgid "Open Statement [Runtime]" -msgstr "ฮ ฯฯŒฯ„ฮฑฯƒฮท Open [ฮงฯฯŒฮฝฮฟฯ… ฮตฮบฯ„ฮญฮปฮตฯƒฮทฯ‚]" +msgstr "ฮ‘ฮฝฮฟฮนฮบฯ„ฮฎ ฮดฮฎฮปฯ‰ฯƒฮท [ฮงฯฯŒฮฝฮฟฯ‚ฮ•ฮบฯ„ฮญฮปฮตฯƒฮทฯ‚]" #: 03020103.xhp msgctxt "" @@ -9145,14 +9144,13 @@ msgstr "ฮ ฯฯŒฯ„ฮฑฯƒฮท Open" #: 03020103.xhp -#, fuzzy msgctxt "" "03020103.xhp\n" "hd_id3150791\n" "1\n" "help.text" msgid "Open Statement [Runtime]" -msgstr "ฮ ฯฯŒฯ„ฮฑฯƒฮท Open [ฮงฯฯŒฮฝฮฟฯ… ฮตฮบฯ„ฮญฮปฮตฯƒฮทฯ‚]" +msgstr "ฮ ฯฯŒฯ„ฮฑฯƒฮท Open [ฮงฯฯŒฮฝฮฟฯ‚ฮ•ฮบฯ„ฮญฮปฮตฯƒฮทฯ‚]" #: 03020103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.0.3~rc2/translations/source/el/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/helpcontent2/source/text/swriter/librelogo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/helpcontent2/source/text/swriter/librelogo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-09 08:02+0000\n" +"PO-Revision-Date: 2015-10-05 04:55+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: www.gnome.gr\n" "Language: el\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1436428959.000000\n" +"X-POOTLE-MTIME: 1444020925.000000\n" #: LibreLogo.xhp msgctxt "" @@ -1018,13 +1018,12 @@ msgstr "ฮŸฮกฮ˜ฮŸฮ“ฮฉฮฮ™ฮŸ" #: LibreLogo.xhp -#, fuzzy msgctxt "" "LibreLogo.xhp\n" "par_1330\n" "help.text" msgid "RECTANGLE [50, 100] ; draw a rectangle shape (50ร—100pt)
RECTANGLE [50, 100, 10] ; draw a rectangle with rounded corners
" -msgstr "RECTANGLE [50, 100] ; ฯƒฯ‡ฮตฮดฮฏฮฑฯƒฮท ฮฟฯฮธฮฟฮณฯŽฮฝฮนฮฟฯ… ฯƒฯ‡ฮฎฮผฮฑฯ„ฮฟฯ‚ (50ร—100pt)
RECTANGLE [50, 100, 50] ; ฯƒฯ‡ฮตฮดฮฏฮฑฯƒฮท ฮฟฯฮธฮฟฮณฯ‰ฮฝฮฏฮฟฯ… ฮผฮต ฯƒฯ„ฯฮฟฮณฮณฯ…ฮปฮตฮผฮญฮฝฮตฯ‚ ฮณฯ‰ฮฝฮฏฮตฯ‚
" +msgstr "RECTANGLE [50, 100] ; ฯƒฯ‡ฮตฮดฮฏฮฑฯƒฮท ฮฟฯฮธฮฟฮณฯŽฮฝฮนฮฟฯ… ฯƒฯ‡ฮฎฮผฮฑฯ„ฮฟฯ‚ (50ร—100pt)
RECTANGLE [50, 100, 10] ; ฯƒฯ‡ฮตฮดฮฏฮฑฯƒฮท ฮฟฯฮธฮฟฮณฯ‰ฮฝฮฏฮฟฯ… ฮผฮต ฯƒฯ„ฯฮฟฮณฮณฯ…ฮปฮตฮผฮญฮฝฮตฯ‚ ฮณฯ‰ฮฝฮฏฮตฯ‚
" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 12:47+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-05 05:02+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1439556458.000000\n" +"X-POOTLE-MTIME: 1444021373.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3303,14 +3303,13 @@ msgstr "ฮ”ฮนฮฑฮณฯฮฑฯ†ฮฎ ฮฑ~ฮปฮปฮฑฮณฮฎฯ‚ ฯƒฮตฮปฮฏฮดฮฑฯ‚" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" msgid "F~ill" -msgstr "ฮ“ฮญฮผฮนฯƒฮผฮฑ" +msgstr "~ฮ“ฮญฮผฮนฯƒฮผฮฑ" #: CalcCommands.xcu msgctxt "" @@ -15150,7 +15149,6 @@ msgstr "~ฮšฮฟฯ…ฮบฮบฮฏฮดฮตฯ‚ ฮบฮฑฮน ฮฑฯฮฏฮธฮผฮทฯƒฮท..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-08 14:12+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-05 05:02+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1431094336.000000\n" +"X-POOTLE-MTIME: 1444021357.000000\n" #: Addons.xcu msgctxt "" @@ -90,7 +90,6 @@ msgstr "ฮšฮ‘ฮ˜ฮ‘ฮกฮ™ฮฃฮœฮŸฮฃฮŸฮ˜ฮŸฮฮ—ฮฃ" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" @@ -100,7 +99,6 @@ msgstr "ฮ“ฯฮฑฮผฮผฮฎ ฮตฮฝฯ„ฮฟฮปฯŽฮฝ Logo (ฯ€ฮฑฯ„ฮฎฯƒฯ„ฮต ฯ„ฮฟ ฯ€ฮปฮฎฮบฯ„ฯฮฟ ฮ•ฮนฯƒฮฑฮณฯ‰ฮณฮฎ ฮณฮนฮฑ ฮตฮบฯ„ฮญฮปฮตฯƒฮท ฮตฮฝฯ„ฮฟฮปฮฎฯ‚ ฮฎ F1 ฮณฮนฮฑ ฮฒฮฟฮฎฮธฮตฮนฮฑ)" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/el/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/sc/source/ui/src.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 12:58+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-06 06:06+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1439557139.000000\n" +"X-POOTLE-MTIME: 1444111569.000000\n" #: condformatdlg.src msgctxt "" @@ -4921,7 +4921,6 @@ msgstr "ฮŒฮฝฮฟฮผฮฑ" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/el/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 13:13+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-05 04:58+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: LANGUAGE \n" "Language: el\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439557990.000000\n" +"X-POOTLE-MTIME: 1444021098.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "ฮฃฯฮผฯ†ฯ‰ฮฝฮฑ ฮผฮต ฯ„ฮท ฮดฮนฮฌฯ„ฮฑฮพฮท" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/el/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/el/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/el/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/el/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-05 16:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-06 06:07+0000\n" +"Last-Translator: Dimitris Spingos \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1436112626.000000\n" +"X-POOTLE-MTIME: 1444111652.000000\n" #: abstractdialog.ui msgctxt "" @@ -10598,7 +10598,6 @@ msgstr "ฮฃฯ„ฮฎ_ฮปฮท:" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eo/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/eo/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eo/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eo/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-09-01 23:22+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-01 20:53+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441149744.000000\n" +"X-POOTLE-MTIME: 1443732828.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,123 +7983,111 @@ #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "1:30" +msgstr "1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "2:30" +msgstr "2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "3:30" +msgstr "3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "4:30" +msgstr "4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "5:30" +msgstr "5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "6:30" +msgstr "6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "7:30" +msgstr "7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "8:30" +msgstr "8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "9:30" +msgstr "9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "10:30" +msgstr "10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "11:30" +msgstr "11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "12:30" +msgstr "12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eo/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/eo/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eo/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 13:55+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-01 20:47+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439560533.000000\n" +"X-POOTLE-MTIME: 1443732437.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,7 +3302,6 @@ msgstr "Forigi manan paฤosalton" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" @@ -15149,7 +15148,6 @@ msgstr "Buloj kaj numerado..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eo/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/eo/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eo/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eo/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibreOffice 3.5.x\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 14:09+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-01 20:49+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439561372.000000\n" +"X-POOTLE-MTIME: 1443732546.000000\n" #: condformatdlg.src msgctxt "" @@ -4920,7 +4920,6 @@ msgstr "Nomo" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eo/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/eo/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eo/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eo/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 14:24+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-01 20:49+0000\n" +"Last-Translator: Donald Rogers \n" "Language-Team: LANGUAGE \n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439562260.000000\n" +"X-POOTLE-MTIME: 1443732590.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Laลญ la aranฤo" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/avmedia/source/viewer.po libreoffice-l10n-5.0.3~rc2/translations/source/es/avmedia/source/viewer.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/avmedia/source/viewer.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/avmedia/source/viewer.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-19 15:22+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-21 11:58+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416410539.000000\n" +"X-POOTLE-MTIME: 1445428696.000000\n" #: mediawindow.src msgctxt "" @@ -30,7 +30,7 @@ "AVMEDIA_STR_OPENMEDIA_DLG\n" "string.text" msgid "Open Audio and Video Dialog" -msgstr "Abrir cuadro de diรกlogo ยซAudio y vรญdeoยป" +msgstr "Abrir un archivo de audio o vรญdeo" #: mediawindow.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/es/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1505,7 +1505,7 @@ "SC_OPCODE_BINOM_DIST_MS\n" "string.text" msgid "BINOM.DIST" -msgstr "DISTR.BINOM2" +msgstr "DISTR.BINOM.N" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-14 14:25+0000\n" +"PO-Revision-Date: 2015-10-10 04:57+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442240700.000000\n" +"X-POOTLE-MTIME: 1444453024.000000\n" #: 00000002.xhp msgctxt "" @@ -36656,7 +36656,7 @@ "7\n" "help.text" msgid "' updates the \"Table of Contents\" in a text doc" -msgstr "' actualiza la ยซtabla de contenidosยป en un documento de texto" +msgstr "' actualiza el ยซsumarioยป en un documento de texto" #: 03132200.xhp msgctxt "" @@ -36674,7 +36674,7 @@ "11\n" "help.text" msgid "' use the default name for Table of Contents and a 1" -msgstr "REM usa el nombre predeterminado para un รndice y el nรบmero 1" +msgstr "' usar el nombre predeterminado para un Sumario y el nรบmero 1" #: 03132300.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-14 14:41+0000\n" +"PO-Revision-Date: 2015-10-22 18:15+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442241719.000000\n" +"X-POOTLE-MTIME: 1445537759.000000\n" #: 01120000.xhp msgctxt "" @@ -40665,23 +40665,21 @@ msgstr "=DISTR.BINOM(A1;12;0.5;1) muestra las probabilidades acumuladas para la misma serie. Por ejemplo, si A1 = 4, la probabilidad acumulada de la serie es 0, 1, 2, 3 o 4 veces encabezado (lรณgica OR no exclusiva)." #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "bm_id2943228\n" "help.text" msgid "BINOM.DIST function" -msgstr "DISTR.BINOM" +msgstr "funciรณn DISTR.BINOM.N" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "hd_id2943228\n" "76\n" "help.text" msgid "BINOM.DIST" -msgstr "DISTR.BINOM" +msgstr "DISTR.BINOM.N" #: 04060181.xhp msgctxt "" @@ -40702,14 +40700,13 @@ msgstr "Sintaxis" #: 04060181.xhp -#, fuzzy msgctxt "" "04060181.xhp\n" "par_id2956009\n" "79\n" "help.text" msgid "BINOM.DIST(X; Trials; SP; C)" -msgstr "DISTR.BINOM(X; Ensayos; SP; C)" +msgstr "DISTR.BINOM.N(X; Ensayos; SP; C)" #: 04060181.xhp msgctxt "" @@ -64726,7 +64723,7 @@ "141\n" "help.text" msgid "Type determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0." -msgstr "Tipo determina el tipo de calculo. Por Tipo=1, los dรญas de la semana son contados desde el domingo (este es el predeterminado incluso cuando el parรกmetro es de tipo desconocido). Por Tipo=2, los dรญas de la semana son contados iniciando desde Lunes=1. Por Tipo=3, los dรญas de la semana son contados iniciando desde el Lunes=0." +msgstr "Tipo determina el tipo de cรกlculo. En el Tipo=1, los dรญas de la semana se cuentan a partir del domingo (esta es la opciรณn predeterminada incluso cuando falte el parรกmetro Tipo). En el Tipo=2, los dรญas de la semana se cuentan a partir del lunes=1. En el Tipo=3, los dรญas de la semana se cuentan a partir del lunes=0." #: func_weekday.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-13 16:35+0000\n" +"PO-Revision-Date: 2015-10-10 05: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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442162134.000000\n" +"X-POOTLE-MTIME: 1444456521.000000\n" #: 01010000.xhp msgctxt "" @@ -532,7 +532,7 @@ "2\n" "help.text" msgid "Use a Master Document to organize complex projects, such as a book. A Master Document can contain the individual files for each chapter of a book, as well as a table of contents, and an index." -msgstr "Utilice un documento maestro para organizar proyectos completos, por ejemplo libros. Un documento maestro puede contener todos los archivos de los capรญtulos que conforman un libro, asรญ como el รญndice de contenido y el รญndice." +msgstr "Utilice un patrรณn de documento para organizar proyectos completos, por ejemplo libros. Un patrรณn de documento puede contener todos los archivos de los capรญtulos que conforman un libro, asรญ como el sumario y el รญndice." #: 01010001.xhp msgctxt "" @@ -9399,7 +9399,7 @@ "37\n" "help.text" msgid "Inserts an index or a table of contents into the master document." -msgstr "Inserta un รญndice o un รญndice de contenido en el documento maestro." +msgstr "Inserta un รญndice o un sumario en el documento maestro." #: 02110000.xhp msgctxt "" @@ -43703,7 +43703,7 @@ "par_id3479415\n" "help.text" msgid "Selects to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document." -msgstr "Seleccione exportar marcadores de documentos de Writer como Marcadores en PDF. Los Marcadores son creados para todos los parrafos del esquema (Herramientas - Numeraciรณn de Esquema) y para todas las entradas de las tablas de contenido a las que asignรณ vรญnculos en el documento de origen." +msgstr "Active esta opciรณn para exportar los marcadores de Writer como marcadores de PDF. Se crearรกn marcadores para cada pรกrrafo de un esquema (Herramientas โ–ธ Numeraciรณn de esquema) y para cada entrada de un sumario que tenga un enlace asignado en el documento de origen." #: ref_pdf_export.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-04 00:41+0000\n" +"PO-Revision-Date: 2015-09-26 00: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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438648917.000000\n" +"X-POOTLE-MTIME: 1443228158.000000\n" #: 01110000.xhp msgctxt "" @@ -17082,7 +17082,7 @@ "5\n" "help.text" msgid "Double-click this field to open the Slide Design dialog in which you can select the style for the current slide. You can select a different paper format or background. " -msgstr "Haga doble clic en este campo para abrir el cuadro de diรกlogo Diseรฑo de diapositiva en el que puede seleccionar el estilo de la diapositiva actual. Se selecciona un formato de papel o un fondo distintos. " +msgstr "Pulse dos veces en este campo para abrir el cuadro de diรกlogo Diseรฑo de diapositiva, donde puede seleccionar el estilo de la diapositiva actual. Es posible seleccionar un formato de papel distinto, u otro fondo." #: 20020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-12 16:17+0000\n" +"PO-Revision-Date: 2015-10-10 06:15+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442074657.000000\n" +"X-POOTLE-MTIME: 1444457731.000000\n" #: 01000000.xhp msgctxt "" @@ -5439,7 +5439,7 @@ "6\n" "help.text" msgid "Creates standard HTML pages with frames. The exported page will be placed in the main frame, and the frame to the left will display a table of contents in the form of hyperlinks." -msgstr "Crea pรกginas HTML estรกndar con marcos. La pรกgina exportada se sitรบa en el marco principal y en el marco de la izquierda se muestra un รญndice con hipervรญnculos." +msgstr "Crea pรกginas HTML estรกndares con marcos. La pรกgina exportada se sitรบa en el marco principal y en el marco de la izquierda se muestra un sumario con hiperenlaces." #: 01110200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-14 04:26+0000\n" +"PO-Revision-Date: 2015-09-28 14:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442204804.000000\n" +"X-POOTLE-MTIME: 1443452020.000000\n" #: aaa_start.xhp msgctxt "" @@ -19165,7 +19165,7 @@ "tit\n" "help.text" msgid "Versions and Build Numbers" -msgstr "Versiones y nรบmeros de build" +msgstr "Nรบmeros de versiรณn y compilaciรณn" #: version_number.xhp msgctxt "" @@ -19173,7 +19173,7 @@ "bm_id3144436\n" "help.text" msgid "versions; $[officename]build numbers of $[officename]copyright for $[officename]" -msgstr "versiones;$[officename]nรบmeros de build de $[officename]copyright de $[officename]" +msgstr "versions; $[officename]nรบmeros de compilaciรณn de $[officename]copyright de $[officename]" #: version_number.xhp msgctxt "" @@ -19182,7 +19182,7 @@ "4\n" "help.text" msgid "Versions and Build Numbers" -msgstr "Versiones y nรบmeros de build" +msgstr "Nรบmeros de versiรณn y compilaciรณn" #: version_number.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-05-20 18:28+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-09-26 01:11+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432146492.000000\n" +"X-POOTLE-MTIME: 1443229865.000000\n" #: 00000004.xhp msgctxt "" @@ -405,7 +405,7 @@ "34\n" "help.text" msgid "Choose View - Master" -msgstr "Elija Ver โ–ธ Fondo" +msgstr "Vaya a Ver โ–ธ Patrรณn" #: 00000403.xhp msgctxt "" @@ -413,7 +413,7 @@ "par_idN10AF7\n" "help.text" msgid "Choose View - Master - Slide Master " -msgstr "Elija Ver โ–ธ Fondo โ–ธ Patrรณn de diapositivas" +msgstr "Vaya a Ver โ–ธ Patrรณn โ–ธ Patrรณn de diapositivas" #: 00000403.xhp msgctxt "" @@ -421,7 +421,7 @@ "par_idN10B19\n" "help.text" msgid "Choose View - Master - Notes Master" -msgstr "Elija Ver โ–ธ Fondo โ–ธ Patrรณn de notas" +msgstr "Vaya a Ver โ–ธ Patrรณn โ–ธ Patrรณn de notas" #: 00000403.xhp msgctxt "" @@ -429,7 +429,7 @@ "par_idN10B07\n" "help.text" msgid "Choose View - Master - Master Elements" -msgstr "Elija Ver โ–ธ Fondo โ–ธ Elementos maestros" +msgstr "Vaya a Ver โ–ธ Patrรณn โ–ธ Elementos del patrรณn" #: 00000403.xhp msgctxt "" @@ -471,7 +471,7 @@ "56\n" "help.text" msgid "Choose View - Master - Slide Master" -msgstr "Elija Ver โ–ธ Fondo โ–ธ Patrรณn de diapositivas" +msgstr "Vaya a Ver โ–ธ Patrรณn โ–ธ Patrรณn de diapositivas" #: 00000403.xhp msgctxt "" @@ -844,7 +844,7 @@ "12\n" "help.text" msgid "Choose Format - Slide Design" -msgstr "Elija Formato โ–ธ Diseรฑo de diapositiva" +msgstr "Vaya a Formato โ–ธ Diseรฑo de diapositiva" #: 00000406.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-21 01:03+0000\n" +"PO-Revision-Date: 2015-09-26 01:57+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440119030.000000\n" +"X-POOTLE-MTIME: 1443232667.000000\n" #: 01170000.xhp msgctxt "" @@ -1532,7 +1532,7 @@ "5\n" "help.text" msgid "Slide Layout" -msgstr "Diseรฑo de diapositiva" +msgstr "Disposiciรณn de diapositiva" #: 03070000.xhp msgctxt "" @@ -1975,7 +1975,7 @@ "tit\n" "help.text" msgid "Master Elements" -msgstr "Elementos maestros" +msgstr "Elementos del patrรณn" #: 03151000.xhp msgctxt "" @@ -1991,7 +1991,7 @@ "par_idN1056D\n" "help.text" msgid "Master Elements" -msgstr "Elementos maestros" +msgstr "Elementos del patrรณn" #: 03151000.xhp msgctxt "" @@ -3585,7 +3585,7 @@ "2\n" "help.text" msgid "Inserts the page number into the current slide or page. If you want to add a page number to every slide, choose View - Master - Slide Master and insert the page number field. To change the number format, choose Format - Page and then select a format from the list in the Layout Settings area." -msgstr "Inserta el nรบmero de pรกgina en la diapositiva o pรกgina actual. Si desea agregar un nรบmero de pรกgina a cada diapositiva, elija Ver - Fondo - Patrรณn de diapositivas e inserte el campo de nรบmero de pรกgina. Para cambiar el formato del nรบmero, elija Formato - Pรกgina y seleccione un formato en la lista del รกrea Configuraciรณn del diseรฑo." +msgstr "Inserta el nรบmero de pรกgina en la diapositiva o pรกgina actual. Para aรฑadir un nรบmero de pรกgina a cada diapositiva, vaya a Ver โ–ธ Patrรณn โ–ธ Patrรณn de diapositivas e inserte el campo de nรบmero de pรกgina. Para cambiar el formato numรฉrico, vaya a Formato โ–ธ Pรกgina y seleccione uno en la lista del รกrea Configuraciรณn de disposiciรณn." #: 04990600.xhp msgctxt "" @@ -4267,7 +4267,7 @@ "tit\n" "help.text" msgid "Slide Layout" -msgstr "Diseรฑo de diapositiva" +msgstr "Disposiciรณn de diapositiva" #: 05130000.xhp msgctxt "" @@ -4284,7 +4284,7 @@ "1\n" "help.text" msgid "Slide Layout" -msgstr "Diseรฑo de diapositiva" +msgstr "Disposiciรณn de diapositiva" #: 05130000.xhp msgctxt "" @@ -4293,7 +4293,7 @@ "2\n" "help.text" msgid "Opens the Slide Layout panel on the Task pane." -msgstr "Abre el panel Diseรฑo de diapositiva en el Panel de tareas." +msgstr "Abre el cuadro Disposiciรณn de diapositiva en el panel Tareas." #: 05130000.xhp msgctxt "" @@ -9190,7 +9190,7 @@ "par_idN10762\n" "help.text" msgid "Applies the master page or the slide design to the selected slides." -msgstr "Aplica la pรกgina maestra o el diseรฑo de diapositiva a todas las diapositivas seleccionadas." +msgstr "Aplica el patrรณn o el diseรฑo de diapositiva a todas las diapositivas seleccionadas." #: taskpanel.xhp msgctxt "" @@ -9206,7 +9206,7 @@ "par_idN107B4\n" "help.text" msgid "Opens the Layouts tab page, where you apply a slide design to the selected slide or slides." -msgstr "Abre la pestaรฑa Diseรฑos, en la que se aplica un diseรฑo de diapositiva a las diapositivas que haya seleccionado." +msgstr "Abre la pestaรฑa Disposiciones, en la que se aplica un diseรฑo de diapositiva a las diapositivas que haya seleccionado." #: taskpanel.xhp msgctxt "" @@ -9214,7 +9214,7 @@ "par_idN107CB\n" "help.text" msgid "Click to apply a slide design to all selected slides. Right-click for a submenu." -msgstr "Haga clic para aplicar un diseรฑo de diapositiva a todas las diapositivas seleccionadas. Haga clic con el botรณn derecho para abrir el menรบ contextual." +msgstr "Pulse para aplicar un diseรฑo de diapositiva a todas las diapositivas seleccionadas. Pulse con el botรณn secundario para abrir un menรบ contextual." #: taskpanel.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:11+0200\n" -"PO-Revision-Date: 2015-08-21 01:50+0000\n" +"PO-Revision-Date: 2015-09-26 02:04+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440121854.000000\n" +"X-POOTLE-MTIME: 1443233070.000000\n" #: 3d_create.xhp msgctxt "" @@ -977,7 +977,7 @@ "36\n" "help.text" msgid "If you want to change the background fill for all of the slides, choose View - Master - Slide Master. To change the background fill of a single slide, choose View - Normal." -msgstr "Si desea cambiar el relleno del fondo de todas las diapositivas, seleccione Ver - Fondo - Patrรณn de diapositivas. Para cambiar el relleno del fondo de una sola diapositiva, elija Ver - Normal." +msgstr "Si desea cambiar el relleno del fondo de todas las diapositivas, seleccione Ver โ–ธ Patrรณn โ–ธ Patrรณn de diapositivas. Para cambiar el relleno del fondo de una sola diapositiva, vaya a Ver โ–ธ Normal." #: background.xhp msgctxt "" @@ -1320,7 +1320,7 @@ "par_id5641651\n" "help.text" msgid "To edit a notes master, choose View - Master - Notes Master. Click the Close Master View icon on the Master View toolbar, or choose View - Normal, to leave the notes master." -msgstr "Para editar las notas maestras, escoja Ver - Fondo - Patrรณn de Notas. Haga clic en el icono Cerrar vista del documento maestro en la barra de herramientas de la vista del documento maestro, o escoja Ver - Normal, para salir del documento maestro." +msgstr "Para editar el patrรณn de notas, vaya a Ver โ–ธ Patrรณn โ–ธ Patrรณn de notas. Para salir del patrรณn, pulse en el botรณn ยซCerrar vista de patrรณnยป en la barra de herramientas Vista de patrรณn, o bien, vaya a Ver โ–ธ Normal." #: footer.xhp msgctxt "" @@ -1466,7 +1466,7 @@ "14\n" "help.text" msgid "Choose View - Master - Slide Master." -msgstr "Seleccione Ver - Fondo - Patrรณn de diapositivas." +msgstr "Vaya a Ver โ–ธ Patrรณn โ–ธ Patrรณn de diapositivas." #: footer.xhp msgctxt "" @@ -1511,7 +1511,7 @@ "18\n" "help.text" msgid "You can hide the header or footer on the current slide by choosing Format - Slide Layout, and clearing the Objects on background check box." -msgstr "Puede ocultar el encabezado o pie de pรกgina de la diapositiva actual seleccionando Formato - Diseรฑo de diapositiva y desactivando la casilla de verificaciรณn Objetos en el fondo." +msgstr "Puede ocultar el encabezado o el pie de la diapositiva actual si selecciona Formato โ–ธ Disposiciรณn de diapositiva y desactiva la casilla Objetos en el fondo." #: footer.xhp msgctxt "" @@ -2875,7 +2875,7 @@ "2\n" "help.text" msgid "You can lock a layer to protect its contents, or hide a layer and its contents from view or from printing. When you add a new layer to a page, the layer is added to all of the pages in your document. However, when you add an object to a layer, it is only added to the current page. If you want the object to appear on all of the pages, add the object to the master page (View - Master)." -msgstr "Se puede proteger una capa para impedir la ediciรณn del contenido e incluso se puede ocultar una capa y su contenido en pantalla o al imprimir. Cuando se agrega una nueva capa a una pรกgina, la capa se agrega a todas las pรกginas del documento. Sin embargo, si agrega un objeto a una capa, รฉste se agrega รบnicamente a la pรกgina actual. Si desea que el objeto aparezca en todas las pรกginas, agrรฉguelo a la pรกgina principal (Ver - Maestro)." +msgstr "Se puede bloquear una capa para impedir la ediciรณn del contenido, o bien, se puede ocultar una capa y que su contenido no aparezca en pantalla ni al imprimir. Cuando se aรฑade una capa nueva a una pรกgina, esta aparecerรก en todas las pรกginas del documento. Sin embargo, si aรฑade un objeto a una capa, este aparece รบnicamente en la pรกgina actual. Para que el objeto aparezca en todas las pรกginas, aรฑรกdalo al patrรณn (Ver โ–ธ Patrรณn)." #: line_arrow_styles.xhp msgctxt "" @@ -3618,7 +3618,7 @@ "13\n" "help.text" msgid "Applying a Slide Design to a Slide Master" -msgstr "Aplica un diseรฑo de diapositiva a un documento maestro" +msgstr "Aplicar un diseรฑo de diapositiva a un patrรณn" #: masterpage.xhp msgctxt "" @@ -3663,7 +3663,7 @@ "21\n" "help.text" msgid "Under Categories, select a slide design category." -msgstr "En รreas, seleccione una categorรญa de diseรฑo de diapositivas." +msgstr "En Categorรญas, seleccione una categorรญa de diseรฑo de diapositivas." #: masterpage.xhp msgctxt "" @@ -5438,7 +5438,7 @@ "15\n" "help.text" msgid "Format - Slide Layout" -msgstr "Formato- Diseรฑo de diapositiva" +msgstr "Formato โ–ธ Disposiciรณn de diapositiva" #: table_insert.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/simpress.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/simpress.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-07-05 08:37+0000\n" +"PO-Revision-Date: 2015-09-26 00:43+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436085445.000000\n" +"X-POOTLE-MTIME: 1443228214.000000\n" #: main0000.xhp msgctxt "" @@ -594,7 +594,7 @@ "12\n" "help.text" msgid "Slide Layout" -msgstr "Diseรฑo de diapositiva" +msgstr "Disposiciรณn de diapositiva" #: main0106.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-06-28 00:05+0000\n" +"PO-Revision-Date: 2015-10-15 16:35+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435449904.000000\n" +"X-POOTLE-MTIME: 1444926929.000000\n" #: 02080000.xhp msgctxt "" @@ -2261,7 +2261,7 @@ "45\n" "help.text" msgid "By typing oper in the Commands window, you can insert user-defined operators in $[officename] Math, a feature useful for incorporating special characters into a formula. An example is oper %theta x. Using the oper command, you can also insert characters not in the default $[officename] character set. oper can also be used in connection with limits; for example, oper %union from {i=1} to n x_{i}. In this example, the union symbol is indicated by the name union. However, this is not one of the predefined symbols. To define it, choose Tools - Catalog. select Special as the symbol set in the dialog that appears, then click the Edit button. In the next dialog, select Special as the symbol set again. Enter a meaningful name in the Symbol text box, for example, \"union\" and then click the union symbol in the set of symbols. Click Add and then OK. Click Close to close the Symbols dialog. You are now finished and can type the union symbol in the Commands window, by entering oper %union." -msgstr "Escribiendo oper en la ventana Comandos, pueden insertarse operadores definidos por el usuario en $[officename] Math, una funciรณn รบtil para incorporar caracteres especiales en una fรณrmula. Un ejemplo es oper %theta x. Mediante el comando oper tambiรฉn pueden insertarse caracteres que no se encuentren en el juego de caracteres predeterminados de $[officename]. Tambiรฉn es posible usar oper en conexiรณn con los lรญmites; por ejemplo, oper %union from {i=1} to n x_{i}. En este ejemplo, se indica el sรญmbolo de uniรณn mediante el nombre union. No obstante, รฉste no es uno de los sรญmbolos predefinidos. define Para definirlo, seleccione Herramientas - Catรกlogo; seleccione Especial como conjunto de sรญmbolos en el diรกlogo que aparece y a continuaciรณn pulse el botรณn Editar. En el diรกlogo siguiente, seleccione de nuevo Especial como el conjunto de sรญmbolos. Escriba un nombre fรกcilmente identificable en el cuadro de texto Sรญmbolo, por ejemplo \"uniรณn\", y a continuaciรณn pulse sobre el sรญmbolo de uniรณn en el conjunto de sรญmbolos. Haga clic en Agregar y a continuaciรณn Aceptar. Haga clic en Cerrar para cerrar el diรกlogo Sรญmbolos. Ahora ha terminado y puede escribir el sรญmbolo de uniรณn en la ventana Comandos, escribiendo para ello oper %union." +msgstr "Al escribir oper en la ventana ร“rdenes, pueden insertarse operadores definidos por el usuario en $[officename] Math, una funciรณn รบtil para incorporar caracteres especiales en una fรณrmula. Un ejemplo es oper %theta x. Mediante la orden oper tambiรฉn pueden insertarse caracteres que no se encuentren en el conjunto de caracteres predeterminado de $[officename]. Tambiรฉn es posible combinar oper con los lรญmites; por ejemplo, oper %union from {i=1} to n x_{i}. En este ejemplo, se indica el sรญmbolo de uniรณn mediante el nombre union. No obstante, este no es uno de los sรญmbolos predefinidos. Para definirlo, vaya a Herramientasย โ–ธ Catรกlogo; elija Especial como conjunto de sรญmbolos en la ventana que aparece y, a continuaciรณn, pulse en el botรณn Editar. En la ventana siguiente, seleccione de nuevo Especial como el conjunto de sรญmbolos. Escriba un nombre fรกcilmente identificable en el cuadro de texto Sรญmbolo, por ejemplo ยซunionยป, y luego pulse sobre el sรญmbolo de uniรณn en el conjunto de sรญmbolos. Pulse en Aรฑadir y luego en Aceptar. Pulse en Cerrar para cerrar la ventana Sรญmbolos. Ahora podrรก insertar el sรญmbolo de uniรณn al escribir en la ventana ร“rdenes oper %union." #: 03090300.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-04-28 04:46+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-10-10 04:57+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430196363.000000\n" +"X-POOTLE-MTIME: 1444453068.000000\n" #: 00000004.xhp msgctxt "" @@ -1028,7 +1028,7 @@ "73\n" "help.text" msgid "Choose Insert - Indexes and Tables - Indexes and Tables - Index/Table tab (when Table of Contents is the selected type) " -msgstr "ElijaInsertar โ–ธ รndices y tablas โ–ธ รndices y tablas โ–ธ pestaรฑa รndice o tabla (cuando el tipo seleccionado sea ยซรndice de contenidoยป)" +msgstr "ElijaInsertar โ–ธ รndices y tablas โ–ธ รndices y tablas โ–ธ pestaรฑa รndice o tabla (cuando el tipo seleccionado sea ยซSumarioยป)" #: 00000404.xhp msgctxt "" @@ -1109,7 +1109,7 @@ "82\n" "help.text" msgid "Choose Insert - Indexes and Tables - Indexes and Tables - Entries tab (when Table of Contents is the selected type) " -msgstr "Elija Insertar โ–ธ รndices y tablas โ–ธ รndices y tablas โ–ธ pestaรฑa Entradas (cuando el tipo seleccionado sea ยซรndice de contenidoยป)" +msgstr "Elija Insertar โ–ธ รndices y tablas โ–ธ รndices y tablas โ–ธ pestaรฑa Entradas (cuando el tipo seleccionado sea ยซSumarioยป)" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-16 23:16+0000\n" +"PO-Revision-Date: 2015-10-11 18:28+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439766994.000000\n" +"X-POOTLE-MTIME: 1444588096.000000\n" #: 01120000.xhp msgctxt "" @@ -3338,7 +3338,7 @@ "14\n" "help.text" msgid "Changes the outline level of a table of contents entry." -msgstr "Cambia el nivel de contorno de una entrada de la tabla de contenido." +msgstr "Cambia el nivel de esquema de una entrada del sumario." #: 02160000.xhp msgctxt "" @@ -10569,7 +10569,7 @@ "2\n" "help.text" msgid "Marks the selected text as index or table of contents entry." -msgstr "Marca el texto seleccionado como una entrada del รญndice o de รญndice de contenido." +msgstr "Marca el texto seleccionado como una entrada del รญndice o del sumario." #: 04120100.xhp msgctxt "" @@ -10722,7 +10722,7 @@ "14\n" "help.text" msgid "Entries using the paragraph format \"Heading X\" (X = 1-10) can be automatically added to the table of contents. The level of the entry in the index corresponds to the outline level of the heading style." -msgstr "Las entradas que usan el formato de pรกrrafo ยซEncabezado Xยป (X = 1-10) pueden aรฑadirse automรกticamente a la tabla de contenidos. El nivel de la entrada en el รญndice corresponde al nivel de esquema del estilo del encabezado." +msgstr "Las entradas que usan el formato de pรกrrafo ยซEncabezado Xยป (X = 1-10) pueden aรฑadirse automรกticamente al sumario. El nivel de la entrada en el รญndice se corresponde con el nivel de esquema del estilo del encabezado." #: 04120100.xhp msgctxt "" @@ -10731,7 +10731,7 @@ "16\n" "help.text" msgid "This option is available only for table of contents and user-defined index entries." -msgstr "Esta opciรณn sรณlo estรก disponible en los รญndices de contenido y en las entradas de รญndice definidas por el usuario." +msgstr "Esta opciรณn solo estรก disponible en los sumarios y en las entradas de รญndice definidas por el usuario." #: 04120100.xhp msgctxt "" @@ -10892,7 +10892,7 @@ "2\n" "help.text" msgid "Inserts an index or a table of contents at the current cursor position. To edit an index or table of contents, place the cursor in the index or table of contents, and then choose Insert - Indexes and Tables - Indexes and Tables." -msgstr "Inserta un รญndice o un รญndice de contenido en la posiciรณn del cursor. Para editar un รญndice o un รญndice de contenido, sitรบe el cursor sobre ellos y, a continuaciรณn, elija Insertar- รndices - รndices." +msgstr "Inserta un รญndice o un sumario en la posiciรณn actual del cursor. Para editar un รญndice o un sumario, sitรบe el cursor en dicho รญndice o sumario y, a continuaciรณn, vaya a Insertar โ–ธ รndices y tablas โ–ธ รndices y tablas." #: 04120200.xhp msgctxt "" @@ -10919,7 +10919,7 @@ "5\n" "help.text" msgid "Use this tab to specify the column layout for the index or table of contents. By default, the index title is one-column wide and extends out from left page margin." -msgstr "Use esta pestaรฑa para especificar el diseรฑo de columnas del รญndice. De forma predeterminada, el tรญtulo del รญndice es de una columna de ancho y se amplรญa desde el margen izquierdo de la pรกgina." +msgstr "Use esta pestaรฑa para especificar la disposiciรณn de columnas del sumario. De forma predeterminada, el tรญtulo del sumario ocupa la anchura de una columna y se extiende desde el margen izquierdo de la pรกgina." #: 04120200.xhp msgctxt "" @@ -11097,7 +11097,7 @@ "4\n" "help.text" msgid "Table of Contents" -msgstr "รndice de contenido" +msgstr "Sumario" #: 04120210.xhp msgctxt "" @@ -11195,7 +11195,7 @@ "2\n" "help.text" msgid "The following options are available when you select Table of Contents as the index type. " -msgstr "Las opciones siguientes estรกn disponibles si selecciona รndice de contenido como tipo de รญndice. " +msgstr "Las opciones siguientes estรกn disponibles si selecciona Sumario como tipo de รญndice." #: 04120211.xhp msgctxt "" @@ -12265,7 +12265,7 @@ "4\n" "help.text" msgid "Table of Contents" -msgstr "รndice de contenido" +msgstr "Sumario" #: 04120220.xhp msgctxt "" @@ -12327,7 +12327,7 @@ "tit\n" "help.text" msgid "Entries (table of contents)" -msgstr "Entradas (รญndice de contenido)" +msgstr "Entradas (sumario)" #: 04120221.xhp msgctxt "" @@ -12336,7 +12336,7 @@ "1\n" "help.text" msgid "Entries (table of contents)" -msgstr "Entradas (รndice de contenido)" +msgstr "Entradas (sumario)" #: 04120221.xhp msgctxt "" @@ -12345,7 +12345,7 @@ "2\n" "help.text" msgid "Specify the format of the entries in the table of contents." -msgstr "Especificar el formato de los elementos del รญndice de contenido. " +msgstr "Especifique el formato de los elementos del sumario." #: 04120221.xhp msgctxt "" @@ -12507,7 +12507,7 @@ "20\n" "help.text" msgid "Creates a hyperlink for the part of the entry that you enclose by the opening (LS) and the closing (LE) hyperlink tags. On the Structure line, click in the empty box in front of the part that you want to create a hyperlink for, and then click this button. Click in the empty box after the part that you want to hyperlink, and then click this button again. All hyperlinks must be unique. Available only for a table of contents." -msgstr "Crea un hiperenlace para la parte de la entrada que el usuario delimite entre las etiquetas de apertura (LS) y cierre (LE) del hiperenlace. En la lรญnea Estructura, pulse en el cuadro vacรญo que se ubique despuรฉs de la ubicaciรณn donde se desee crear el hiperenlace y, a continuaciรณn, pulse en este botรณn. Repita este proceso para cada hiperenlace. Todos los hiperenlaces deben ser รบnicos. Disponible รบnicamente para las tablas de contenido." +msgstr "Crea un hiperenlace para la parte de la entrada que el usuario delimite entre las etiquetas de apertura (LS) y cierre (LE) del hiperenlace. En la lรญnea Estructura, pulse en el cuadro vacรญo que se ubique despuรฉs de la ubicaciรณn donde se desee crear el hiperenlace y, a continuaciรณn, pulse en este botรณn. Repita este proceso para cada hiperenlace. Todos los hiperenlaces deben ser รบnicos. Disponible รบnicamente para los sumarios." #: 04120221.xhp msgctxt "" @@ -25665,7 +25665,7 @@ "3\n" "help.text" msgid "You can also right-click in an index or table of contents, and then choose Update Index/Table. The following commands are also available in the context menu:" -msgstr "Tambiรฉn puede pulsar con el botรณn derecho sobre un รญndice o un รญndice de contenido y a continuaciรณn elegir Actualizar รญndice. Las รณrdenes siguientes tambiรฉn estรกn disponibles en el menรบ contextual:" +msgstr "Tambiรฉn puede pulsar con el botรณn secundario del ratรณn sobre un รญndice o un sumario y, a continuaciรณn, elegir Actualizar รญndice o sumario. Las รณrdenes siguientes tambiรฉn estรกn disponibles en el menรบ contextual:" #: 06160000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-05-03 14:43+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-10-11 18:28+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430664184.000000\n" +"X-POOTLE-MTIME: 1444588117.000000\n" #: 02110000.xhp msgctxt "" @@ -3352,7 +3352,7 @@ "par_idN10814\n" "help.text" msgid "Inserts an index or a table of contents at the current cursor position." -msgstr "Inserta un รญndice o un รญndice de contenido en la posiciรณn del cursor." +msgstr "Inserta un รญndice o un sumario en la posiciรณn actual del cursor." #: 18010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-12 16:20+0000\n" +"PO-Revision-Date: 2015-10-11 18:30+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442074800.000000\n" +"X-POOTLE-MTIME: 1444588209.000000\n" #: anchor_object.xhp msgctxt "" @@ -5884,7 +5884,7 @@ "12\n" "help.text" msgid "You can create a table of contents and index in the master document for all of the subdocuments." -msgstr "Puede crear un รญndice de contenidos y un รญndice en el documento maestro para todos los subdocumentos." +msgstr "Puede crear un sumario y un รญndice en el patrรณn del documento para todos los subdocumentos." #: globaldoc.xhp msgctxt "" @@ -6150,7 +6150,7 @@ "40\n" "help.text" msgid "To add an index, such as a table of contents, right-click in the Navigator list, and then choose Insert - Index." -msgstr "Para agregar un รญndice, por ejemplo un รญndice de contenido, con el botรณn derecho haga clic en la lista del Navegador y seleccione Insertar - รndice." +msgstr "Para aรฑadir un รญndice, por ejemplo un sumario, con el botรณn secundario del ratรณn pulse en la lista del Navegador y seleccione Insertar โ–ธ รndice." #: globaldoc_howtos.xhp msgctxt "" @@ -7667,7 +7667,7 @@ "57\n" "help.text" msgid "Place the cursor in the index or table of contents." -msgstr "Sitรบe el cursor en el รญndice." +msgstr "Sitรบe el cursor en el รญndice o el sumario." #: indices_edit.xhp msgctxt "" @@ -7702,7 +7702,7 @@ "tit\n" "help.text" msgid "Defining Index or Table of Contents Entries" -msgstr "Definir las entradas de un รญndice o un รญndice de contenido" +msgstr "Definir las entradas de un รญndice o un sumario" #: indices_enter.xhp msgctxt "" @@ -7719,7 +7719,7 @@ "4\n" "help.text" msgid "Defining Index or Table of Contents Entries" -msgstr "Definir entradas de รญndices" +msgstr "Definir entradas de รญndices o sumarios" #: indices_enter.xhp msgctxt "" @@ -7782,7 +7782,7 @@ "12\n" "help.text" msgid "To Define Table of Contents Entries" -msgstr "Para definir entradas de รญndice de materias" +msgstr "Para definir entradas en un sumario" #: indices_enter.xhp msgctxt "" @@ -7800,7 +7800,7 @@ "13\n" "help.text" msgid "To Use a Custom Paragraph Style as a Table of Contents Entry" -msgstr "Para utilizar un estilo de pรกrrafo como entrada de รญndice de materias" +msgstr "Para utilizar un estilo de pรกrrafo personalizado como entrada de sumario" #: indices_enter.xhp msgctxt "" @@ -7844,7 +7844,7 @@ "tit\n" "help.text" msgid "Formatting an Index or a Table of Contents" -msgstr "Dar formato a un รญndice o un รญndice de contenido" +msgstr "Dar formato a un รญndice o un sumario" #: indices_form.xhp msgctxt "" @@ -7861,7 +7861,7 @@ "38\n" "help.text" msgid "Formatting an Index or a Table of Contents" -msgstr "Formateado de un รญndice" +msgstr "Formato de un รญndice o sumario" #: indices_form.xhp msgctxt "" @@ -7942,7 +7942,7 @@ "40\n" "help.text" msgid "To Assign Hyperlinks to Entries in a Table of Contents" -msgstr "Para asignar hipervรญnculos a entradas en un รญndice de materias" +msgstr "Para asignar hiperenlaces a entradas en un sumario" #: indices_form.xhp msgctxt "" @@ -8411,7 +8411,7 @@ "tit\n" "help.text" msgid "Creating a Table of Contents" -msgstr "Crear un รญndice de contenido" +msgstr "Crear un sumario" #: indices_toc.xhp msgctxt "" @@ -8428,7 +8428,7 @@ "16\n" "help.text" msgid "Creating a Table of Contents" -msgstr "Crear un รญndice de contenidos" +msgstr "Crear un sumario" #: indices_toc.xhp msgctxt "" @@ -8445,7 +8445,7 @@ "hd_id5876949\n" "help.text" msgid "To Insert a Table of Contents" -msgstr "Para insertar un รญndice de materias" +msgstr "Para insertar un sumario" #: indices_toc.xhp msgctxt "" @@ -8472,7 +8472,7 @@ "46\n" "help.text" msgid "Select \"Table of Contents\" in the Type box." -msgstr "Seleccione \"รndice de contenido\" en el cuadro Tipo." +msgstr "Seleccione ยซSumarioยป en el cuadro Tipo." #: indices_toc.xhp msgctxt "" @@ -8508,7 +8508,7 @@ "21\n" "help.text" msgid "To Update a Table of Contents" -msgstr "Para actualizar un รญndice de materias" +msgstr "Para actualizar un sumario" #: indices_toc.xhp msgctxt "" @@ -9609,7 +9609,7 @@ "7\n" "help.text" msgid "Table of Contents, Index" -msgstr "รndice de contenido, รญndice alfabรฉtico" +msgstr "Sumario, รญndice alfabรฉtico" #: main.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-04 02:00+0000\n" +"PO-Revision-Date: 2015-09-28 00: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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438653644.000000\n" +"X-POOTLE-MTIME: 1443399057.000000\n" #: ActionTe.ulf msgctxt "" @@ -1366,7 +1366,7 @@ "OOO_CONTROL_64\n" "LngText.text" msgid "Custom Setup allows you to selectively install program features." -msgstr "La instalaciรณn personalizada le permite instalar componentes del programa selectivamente." +msgstr "La instalaciรณn personalizada permite instalar componentes del programa selectivamente." #: Control.ulf msgctxt "" @@ -1382,7 +1382,7 @@ "OOO_CONTROL_66\n" "LngText.text" msgid "Will not be installed." -msgstr "No se instalarรกn." +msgstr "No se instalarรก." #: Control.ulf msgctxt "" @@ -1398,7 +1398,7 @@ "OOO_CONTROL_68\n" "LngText.text" msgid "This install state means the feature..." -msgstr "Este estado de instalaciรณn indica que el componente..." +msgstr "Este estado de instalaciรณn indica que el componenteโ€ฆ" #: Control.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-09-05 05:27+0000\n" +"PO-Revision-Date: 2015-09-26 01:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441430824.000000\n" +"X-POOTLE-MTIME: 1443229376.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7034,7 +7034,7 @@ "Label\n" "value.text" msgid "~Master" -msgstr "~Principal" +msgstr "~Patrรณn" #: DrawImpressCommands.xcu msgctxt "" @@ -7124,7 +7124,7 @@ "Label\n" "value.text" msgid "Slide Layout" -msgstr "Diseรฑo de diapositiva" +msgstr "Disposiciรณn de diapositiva" #: DrawImpressCommands.xcu msgctxt "" @@ -8069,7 +8069,7 @@ "Label\n" "value.text" msgid "~Master" -msgstr "~Principal" +msgstr "~Patrรณn" #: DrawImpressCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/scaddins/source/datefunc.po libreoffice-l10n-5.0.3~rc2/translations/source/es/scaddins/source/datefunc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/scaddins/source/datefunc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/scaddins/source/datefunc.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2012-08-17 07:44+0200\n" -"Last-Translator: Adolfo \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-10-15 16:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444926786.000000\n" #: datefunc.src msgctxt "" @@ -76,7 +77,7 @@ "7\n" "string.text" msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks." -msgstr "Tipo de calculaciรณn: Tipo=0 significa el nรบmero de semanas y Tipo=1 el nรบmero de semanas del calendario." +msgstr "Tipo de cรกlculo: 0 para calcular el intervalo de tiempo y 1 para calcular semanas del calendario." #: datefunc.src msgctxt "" @@ -139,7 +140,7 @@ "7\n" "string.text" msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar months." -msgstr "Tipo de cรกlculo: Tipo=0 para el nรบmero de meses, Tipo=1 para el mes del calendario." +msgstr "Tipo de cรกlculo: 0 para calcular el intervalo de tiempo y 1 para calcular meses del calendario." #: datefunc.src msgctxt "" @@ -202,7 +203,7 @@ "7\n" "string.text" msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar years." -msgstr "Tipo de cรกlculo: Tipo=0 significa el nรบmero de semanas y Tipo=1 el nรบmero de semanas del calendario." +msgstr "Tipo de cรกlculo: 0 para calcular el intervalo de tiempo y 1 para calcular aรฑos del calendario." #: datefunc.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/scp2/source/accessories.po libreoffice-l10n-5.0.3~rc2/translations/source/es/scp2/source/accessories.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/scp2/source/accessories.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/scp2/source/accessories.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-01 00:29+0000\n" +"PO-Revision-Date: 2015-09-27 23:48+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438388946.000000\n" +"X-POOTLE-MTIME: 1443397684.000000\n" #: module_accessories.ulf msgctxt "" @@ -2758,7 +2758,7 @@ "STR_NAME_MODULE_LANGPACK_FI\n" "LngText.text" msgid "Finnish" -msgstr "Finlandรฉs" +msgstr "Finรฉs" #: module_templates_accessories.ulf msgctxt "" @@ -2766,7 +2766,7 @@ "STR_DESC_MODULE_LANGPACK_FI\n" "LngText.text" msgid "Installs Finnish support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "Instala los archivos para el finlandรฉs en %PRODUCTNAME %PRODUCTVERSION" +msgstr "Instala los archivos para el finรฉs en %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/scp2/source/ooo.po libreoffice-l10n-5.0.3~rc2/translations/source/es/scp2/source/ooo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/scp2/source/ooo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/scp2/source/ooo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-01 00:29+0000\n" +"PO-Revision-Date: 2015-09-27 23:48+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438388988.000000\n" +"X-POOTLE-MTIME: 1443397700.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -798,7 +798,7 @@ "STR_NAME_MODULE_HELPPACK_FI\n" "LngText.text" msgid "Finnish" -msgstr "Finlandรฉs" +msgstr "Finรฉs" #: module_helppack.ulf msgctxt "" @@ -2590,7 +2590,7 @@ "STR_NAME_MODULE_LANGPACK_FI\n" "LngText.text" msgid "Finnish" -msgstr "Finlandรฉs" +msgstr "Finรฉs" #: module_langpack.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/sd/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/es/sd/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/sd/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-12 16:30+0000\n" +"PO-Revision-Date: 2015-10-10 05:03+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442075411.000000\n" +"X-POOTLE-MTIME: 1444453426.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -113,7 +113,7 @@ "SID_PRESENTATION_LAYOUT\n" "menuitem.text" msgid "~Slide Design..." -msgstr "Di~seรฑo de diapositivasโ€ฆ" +msgstr "~Diseรฑo de diapositivaโ€ฆ" #: menuids3_tmpl.src msgctxt "" @@ -3104,7 +3104,7 @@ "STR_UNDO_SUMMARY_PAGE\n" "string.text" msgid "Table of Contents Slide" -msgstr "Pรกgina รญndice" +msgstr "Diapositiva del sumario" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/es/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/sd/source/ui/view.po 2015-10-24 15:21:48.000000000 +0000 @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441308137.000000\n" +"X-POOTLE-MTIME: 1441308139.000000\n" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-26 22:20+0000\n" +"PO-Revision-Date: 2015-09-26 01:00+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435357224.000000\n" +"X-POOTLE-MTIME: 1443229218.000000\n" #: assistentdialog.ui msgctxt "" @@ -1607,7 +1607,7 @@ "title\n" "string.text" msgid "Master Elements" -msgstr "Elementos de diap. maestra" +msgstr "Elementos del patrรณn" #: masterlayoutdlg.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/svtools/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/es/svtools/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/svtools/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-12 10:17+0000\n" +"PO-Revision-Date: 2015-09-27 23:48+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442053077.000000\n" +"X-POOTLE-MTIME: 1443397708.000000\n" #: imagemgr.src msgctxt "" @@ -1149,7 +1149,7 @@ "LANGUAGE_FINNISH\n" "pairedlist.text" msgid "Finnish" -msgstr "Finlandรฉs" +msgstr "Finรฉs" #: langtab.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/sw/source/uibase/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/es/sw/source/uibase/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/sw/source/uibase/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/sw/source/uibase/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-05-27 14:55+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-10-10 05:03+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432738551.000000\n" +"X-POOTLE-MTIME: 1444453432.000000\n" #: attrdesc.src msgctxt "" @@ -860,7 +860,7 @@ "STR_TOC\n" "string.text" msgid "Table of Contents" -msgstr "รndice de contenido" +msgstr "Sumario" #: initui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-07 01:43+0000\n" +"PO-Revision-Date: 2015-10-10 05:04+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438911793.000000\n" +"X-POOTLE-MTIME: 1444453445.000000\n" #: abstractdialog.ui msgctxt "" @@ -15350,7 +15350,7 @@ "0\n" "stringlist.text" msgid "Table of Contents" -msgstr "รndice de contenido" +msgstr "Sumario" #: tocindexpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/swext/mediawiki/help.po libreoffice-l10n-5.0.3~rc2/translations/source/es/swext/mediawiki/help.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/swext/mediawiki/help.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/swext/mediawiki/help.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-14 04:31+0000\n" +"PO-Revision-Date: 2015-09-30 06:20+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442205079.000000\n" +"X-POOTLE-MTIME: 1443594052.000000\n" #: help.tree msgctxt "" @@ -254,7 +254,7 @@ "par_id2564165\n" "help.text" msgid "MediaWiki server: Select the Wiki." -msgstr "Servidor MediaWiki: Selecciona el Wiki." +msgstr "Servidor con MediaWiki: Seleccione el wiki." #: wiki.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-l10n-5.0.3~rc2/translations/source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-05-19 03:59+0000\n" -"Last-Translator: Adolfo \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-30 06:20+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1368935978.0\n" +"X-POOTLE-MTIME: 1443594058.000000\n" #: WikiExtension.xcu msgctxt "" @@ -275,7 +275,7 @@ "Dlg_EditSetting_WikiLine\n" "value.text" msgid "MediaWiki Server" -msgstr "Servidor MediaWiki" +msgstr "Servidor con MediaWiki" #: WikiExtension.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/es/wizards/source/formwizard.po libreoffice-l10n-5.0.3~rc2/translations/source/es/wizards/source/formwizard.po --- libreoffice-l10n-5.0.2~rc2/translations/source/es/wizards/source/formwizard.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/es/wizards/source/formwizard.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-06 16:28+0000\n" -"Last-Translator: Adolfo \n" +"PO-Revision-Date: 2015-10-10 05:05+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1433608126.000000\n" +"X-POOTLE-MTIME: 1444453505.000000\n" #: dbwizres.src msgctxt "" @@ -4007,11 +4007,11 @@ "\n" "You will be able to keep the documents you have published on the web up-to-date and add or remove documents at any time." msgstr "" -"Este Asistente para Web le ayuda a publicar documentos en Internet.\n" +"Este asistente para Web le ayuda a publicar documentos en Internet.\n" "\n" -"Convierte documentos para que se puedan ver en un explorador Web. Ademรกs, genera una pรกgina de รญndice de contenido con vรญnculos que permiten acceder fรกcilmente a los documentos. El Asistente para Web tambiรฉn permite personalizar el diseรฑo de la pรกgina Web.\n" +"Convierte documentos para que se puedan ver en un explorador Web. Ademรกs, genera una pรกgina de sumario con enlaces que permiten acceder fรกcilmente a los documentos. El asistente para Web tambiรฉn permite personalizar el diseรฑo de la pรกgina Web.\n" "\n" -"Podrรก mantener actualizados los documentos que haya publicado en la Web, asรญ como agregar o quitar documentos en cualquier momento." +"Podrรก mantener actualizados los documentos que haya publicado en la Web, asรญ como aรฑadir o quitar documentos en cualquier momento." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eu/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/eu/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eu/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eu/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/eu/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/eu/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/eu/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/eu/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fa/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/fa/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fa/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fa/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fa/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/fa/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fa/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fa/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fi/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/fi/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fi/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fi/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 14:13+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-04 14:53+0000\n" +"Last-Translator: Harri Pitkรคnen \n" "Language-Team: LANGUAGE \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439561632.000000\n" +"X-POOTLE-MTIME: 1443970406.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,123 +7983,111 @@ #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "1:30" +msgstr "1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "2:30" +msgstr "2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "3:30" +msgstr "3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "4:30" +msgstr "4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "5:30" +msgstr "5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "6:30" +msgstr "6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "7:30" +msgstr "7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "8:30" +msgstr "8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "9:30" +msgstr "9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "10:30" +msgstr "10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "11:30" +msgstr "11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "12:30" +msgstr "12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.0.3~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-19 17:16+0000\n" +"PO-Revision-Date: 2015-10-04 14:58+0000\n" "Last-Translator: Harri Pitkรคnen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440004616.000000\n" +"X-POOTLE-MTIME: 1443970692.000000\n" #: 01010000.xhp msgctxt "" @@ -16323,7 +16323,7 @@ "85\n" "help.text" msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In %PRODUCTNAME, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part.For instance: ###.##E+00" -msgstr "" +msgstr "Tieteellinen merkintรคtapa tekee mahdolliseksi hyvin suurten lukujen ja hyvin pienten desimaalilukujen esittรคmisen tiiviillรค tavalla. Esimerkiksi, tieteellisellรค merkintรคtavalla 650000 kirjoitetaan 6,5 x 10^5 ja 0,000065 kirjoitetaan 6,5 x 10^-5. %PRODUCTNAME-ohjelmistossa nรคmรค vastaavat luvut kirjoitetaan 6,5E+5 ja 6,5E-5. Kun laaditaan tieteellistรค merkintรคtapaa kรคyttรคvรค lukumuotoilu, kirjoitetaan ensin # tai 0 ja sitten jokin seuraavista koodeista E-, E+, e- tai e+. Jos E:n tai e:n perรครคn ei laiteta etumerkkiรค, sitรค ei myรถskรครคn nรคytetรค positiivisen eksponentin arvon yhteydessรค. Insinรถรถritieteiden merkintรคtapa saadaan syรถttรคmรคllรค kolme numeropaikkaa (0 tai #) kokonaislukuosaan. Esimerkiksi: ###,##E+00" #: 05020301.xhp msgctxt "" @@ -16909,7 +16909,7 @@ "par_id1002200811563430\n" "help.text" msgid "N" -msgstr "" +msgstr "N" #: 05020301.xhp msgctxt "" @@ -19740,14 +19740,13 @@ msgstr "Desimaali" #: 05030300.xhp -#, fuzzy msgctxt "" "05030300.xhp\n" "par_id3144422\n" "18\n" "help.text" msgid "Aligns the decimal separator of a number to the center of the tab stop and text to the left of the tab." -msgstr "Kohdistetaan luvun desimaalipilkku sarkainkohtaan ja teksti vasemmalle sarkainkohdasta." +msgstr "Kohdistetaan luvun desimaalierotin sarkainkohtaan ja teksti vasemmalle sarkainkohdasta." #: 05030300.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fi/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.0.3~rc2/translations/source/fi/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fi/helpcontent2/source/text/swriter/librelogo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fi/helpcontent2/source/text/swriter/librelogo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-07-02 05:24+0000\n" +"PO-Revision-Date: 2015-10-04 15:09+0000\n" "Last-Translator: Harri Pitkรคnen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435814691.000000\n" +"X-POOTLE-MTIME: 1443971387.000000\n" #: LibreLogo.xhp msgctxt "" @@ -758,7 +758,7 @@ "par_1100\n" "help.text" msgid "FILL ; close and fill the actual line shape or points
CLOSE ; close the actual line shape or join the actual points
" -msgstr "" +msgstr "Tร„YTร„ ; suljetaan ja tรคytetรครคn kรคsiteltรคvรค viivakuvio tai pisteet
SULJE ; suljetaan kรคsiteltรคvรค viivakuvio tai yhdistetรครคn kรคsiteltรคvรคt pisteet
" #: LibreLogo.xhp msgctxt "" @@ -766,7 +766,7 @@ "par_1102\n" "help.text" msgid "Example: filling a regular triangle:" -msgstr "" +msgstr "Esimerkki: tasasivuisen kolmion tรคyttรถ:" #: LibreLogo.xhp msgctxt "" @@ -774,7 +774,7 @@ "par_1104\n" "help.text" msgid "FORWARD 50 LEFT 120 FORWARD 50 FILL
" -msgstr "" +msgstr "ETEEN 50 VASEMMALLE 120 ETEEN 50 Tร„YTร„
" #: LibreLogo.xhp msgctxt "" @@ -782,7 +782,7 @@ "par_1106\n" "help.text" msgid "Example: drawing a regular triangle:" -msgstr "" +msgstr "Esimerkki: tasasivuisen kolmion piirtรคminen:" #: LibreLogo.xhp msgctxt "" @@ -790,7 +790,7 @@ "par_1108\n" "help.text" msgid "FORWARD 50 LEFT 120 FORWARD 50 CLOSE
" -msgstr "" +msgstr "ETEEN 50 VASEMMALLE 120 ETEEN 50 SULJE
" #: LibreLogo.xhp msgctxt "" @@ -913,13 +913,12 @@ msgstr "Tร„YTTร–Vร„RI (tv)" #: LibreLogo.xhp -#, fuzzy msgctxt "" "LibreLogo.xhp\n" "par_1220\n" "help.text" msgid "FILLCOLOR โ€œblueโ€ ; fill with blue color, see also PENCOLOR
FILLCOLOR โ€œinvisibleโ€ CIRCLE 10 ; unfilled circle
FILLCOLOR [โ€œblueโ€, โ€œredโ€] ; gradient between red and blue
FILLCOLOR [[255, 255, 255], [255, 128, 0]] ; between white and orange
FILLCOLOR [โ€œblueโ€, โ€œredโ€, 1, 0, 0] ; set axial gradient (with the required rotation and border settings), possible values: 0-5 = linear, axial, radial, elliptical, square and rectangle gradients
FILLCOLOR [โ€œredโ€, โ€œblueโ€, 0, 90, 20] ; linear with 20% border, rotated with 90 degrees from the actual heading of the turtle
FILLCOLOR [โ€œredโ€, โ€œblueโ€, 0, 90, 20, 0, 0, 200, 50] ; from 200% to 50% intensity
FILLCOLOR [ANY, ANY, 2, 0, 0, 50, 50] ; radial gradient with random colors and 50-50% horizontal and vertical positions of the center
" -msgstr "Tร„YTTร–Vร„RI โ€œsininenโ€ ; tรคytรค sinisellรค vรคrillรค, katso myรถs KYNร„NVร„RI
Tร„YTTร–Vร„RI โ€œnรคkymรคtรถnโ€ YMPYRร„ 10 ; ympyrรค ilman tรคyttรถvรคriรค
Tร„YTTร–Vร„RI [โ€œsininenโ€, โ€œpunainenโ€] ; liukuvรคrjรคys punaisen ja sinisen vรคlillรค
Tร„YTTร–Vร„RI [[255, 255, 255], [255, 128, 0]] ; valkoisen ja oranssin vรคlillรค
Tร„YTTร–Vร„RI [โ€œsininenโ€, โ€œpunainenโ€, 1, 0, 0] ; asettaa aksiaalinen liukuvรคrin (kierto- ja reunusasetuksilla), mahdolliset arvot: 0-5 = lineaarinen, aksiaalinen, sรคteittรคinen, elliptinen, neliรถ ja suorakulmio liukuvรคrjรคyksen suuntana
Tร„YTTร–Vร„RI [โ€œpunainenโ€, โ€œsininenโ€, 0, 90, 20] ; lineaarinen 20% reunuksella, kierrettynรค 90 astetta konnan kulkusuuntaan nรคhden
Tร„YTTร–Vร„RI [โ€œpunainenโ€, \"sininenโ€, 0, 90, 20, 0, 0, 200, 50] ; intensiteetti 200% - 50%
Tร„YTTร–Vร„RI [JOKIN, JOKIN, 2, 0, 0, 50, 50] ; sรคteittรคinen liukuvรคri satunnaisilla vรคreillรค ja 50-50% keskipisteen vaaka- ja pystysuuntaisella sijainnilla
" +msgstr "Tร„YTTร–Vร„RI โ€sininenโ€ ; tรคytรค sinisellรค vรคrillรค, katso myรถs KYNร„NVร„RI
Tร„YTTร–Vร„RI โ€nรคkymรคtรถnโ€ YMPYRร„ 10 ; ympyrรค ilman tรคyttรถvรคriรค
Tร„YTTร–Vร„RI [โ€sininenโ€, โ€punainenโ€] ; liukuvรคrjรคys punaisen ja sinisen vรคlillรค
Tร„YTTร–Vร„RI [[255, 255, 255], [255, 128, 0]] ; valkoisen ja oranssin vรคlillรค
Tร„YTTร–Vร„RI [โ€sininenโ€, โ€punainenโ€, 1, 0, 0] ; asettaa aksiaalinen liukuvรคrin (kierto- ja reunusasetuksilla), mahdolliset arvot: 0-5 = lineaarinen, aksiaalinen, sรคteittรคinen, elliptinen, neliรถ ja suorakulmio liukuvรคrjรคyksen suuntana
Tร„YTTร–Vร„RI [โ€punainenโ€, โ€sininenโ€, 0, 90, 20] ; lineaarinen 20% reunuksella, kierrettynรค 90 astetta konnan kulkusuuntaan nรคhden
Tร„YTTร–Vร„RI [โ€punainenโ€, โ€sininenโ€, 0, 90, 20, 0, 0, 200, 50] ; intensiteetti 200% - 50%
Tร„YTTร–Vร„RI [JOKIN, JOKIN, 2, 0, 0, 50, 50] ; sรคteittรคinen liukuvรคri satunnaisilla vรคreillรค ja 50-50% keskipisteen vaaka- ja pystysuuntaisella sijainnilla
" #: LibreLogo.xhp msgctxt "" @@ -1018,7 +1017,6 @@ msgstr "SUORAKULMIO" #: LibreLogo.xhp -#, fuzzy msgctxt "" "LibreLogo.xhp\n" "par_1330\n" @@ -1048,7 +1046,7 @@ "par_1354\n" "help.text" msgid "CLOSE can join the last points, FILL can fill the shape defined by points. For example, itโ€™s easy to draw a โ€œflatโ€ star starting from its center:" -msgstr "" +msgstr "SULJE yhdistรครค viimeisimmรคt pisteet, Tร„YTร„ tรคyttรครค pisteiden mรครคrittรคmรคn kuvion. Esimerkiksi โ€litteรคnโ€ tรคhden piirtรคminen lรคhtien sen keskipisteestรค on helppoa:" #: LibreLogo.xhp msgctxt "" @@ -1056,7 +1054,7 @@ "par_1357\n" "help.text" msgid "PENUP
REPEAT 5 [
FORWARD 80
POINT
BACK 80
RIGHT 36
FORWARD 50
POINT
BACK 50
RIGHT 120
] FILL
" -msgstr "" +msgstr "KYNร„YLร–S
TOISTA 5 [
ETEEN 80
PISTE
TAAKSE 80
OIKEALLE 36
ETEEN 50
PISTE
TAAKSE 50
OIKEALLE 120
] Tร„YTร„
" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 14:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-04 14:53+0000\n" +"Last-Translator: Harri Pitkรคnen \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439563064.000000\n" +"X-POOTLE-MTIME: 1443970419.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,7 +3302,6 @@ msgstr "Poista sivunvaihto" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" @@ -15149,7 +15148,6 @@ msgstr "~Luettelomerkit ja numerointi..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fi/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/fi/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fi/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fi/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 14:58+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-04 14:53+0000\n" +"Last-Translator: Harri Pitkรคnen \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439564326.000000\n" +"X-POOTLE-MTIME: 1443970426.000000\n" #: condformatdlg.src msgctxt "" @@ -4918,7 +4918,6 @@ msgstr "Nimi" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fi/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/fi/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fi/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fi/sd/source/ui/view.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 15:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-04 14:53+0000\n" +"Last-Translator: Harri Pitkรคnen \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439565904.000000\n" +"X-POOTLE-MTIME: 1443970438.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Asettelun mukaan" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fr/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/fr/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fr/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fr/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-30 04:22+0000\n" +"PO-Revision-Date: 2015-09-28 19:56+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1435638173.000000\n" +"X-POOTLE-MTIME: 1443470173.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -9920,7 +9920,7 @@ "label\n" "string.text" msgid "Autoclose procedures" -msgstr "Procรฉdures de fermeture automatique" +msgstr "Fermeture automatique des procรฉdures" #: optbasicidepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fr/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/fr/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fr/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fr/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-17 13:57+0200\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.0.3~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-01 04:54+0000\n" +"PO-Revision-Date: 2015-10-09 20:09+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1441083257.000000\n" +"X-POOTLE-MTIME: 1444421363.000000\n" #: 01120000.xhp msgctxt "" @@ -64918,7 +64918,7 @@ "189\n" "help.text" msgid "WORKDAY(StartDate; Days; Holidays)" -msgstr "SERIE.JOUR.OUVRE(date_dรฉbut;fรฉriรฉs)" +msgstr "SERIE.JOUR.OUVRE(date_dรฉbut;jours;fรฉriรฉs)" #: func_workday.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.0.3~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fr/helpcontent2/source/text/swriter/librelogo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-04 04:50+0000\n" +"PO-Revision-Date: 2015-10-16 04:25+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1441342250.000000\n" +"X-POOTLE-MTIME: 1444969559.000000\n" #: LibreLogo.xhp msgctxt "" @@ -1055,7 +1055,7 @@ "par_1357\n" "help.text" msgid "PENUP
REPEAT 5 [
FORWARD 80
POINT
BACK 80
RIGHT 36
FORWARD 50
POINT
BACK 50
RIGHT 120
] FILL
" -msgstr "LEVECRAYON
REPETE 5[
AVANCE 80
POINT
RECULE 80
DROITE 36
AVANCE 50
POINT
RECULE 50
DROITE 120
DROITE120
] PEINS
" +msgstr "LEVECRAYON
REPETE 5[
AVANCE 80
POINT
RECULE 80
DROITE 36
AVANCE 50
POINT
RECULE 50
DROITE120
] PEINS
" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/fr/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/fr/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/fr/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/fr/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gl/cui/source/dialogs.po libreoffice-l10n-5.0.3~rc2/translations/source/gl/cui/source/dialogs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gl/cui/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gl/cui/source/dialogs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-02 12:52+0000\n" -"Last-Translator: Xosรฉ \n" +"PO-Revision-Date: 2015-09-30 20:27+0000\n" +"Last-Translator: Antรณn Mรฉixome \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441198353.000000\n" +"X-POOTLE-MTIME: 1443644823.000000\n" #: cuires.src msgctxt "" @@ -679,7 +679,7 @@ "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING\n" "string.text" msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME." -msgstr "Produciuse un erro no Scripting Framework ao executar o guiรณn de execuciรณn %SCRIPTNAME %LANGUAGENAME." +msgstr "Produciuse un erro no Scripting Framework ao executar o guiรณn de execuciรณn %SCRIPTNAME en %LANGUAGENAME." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gl/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/gl/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gl/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gl/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-09-03 15:46+0000\n" -"Last-Translator: Xosรฉ \n" +"PO-Revision-Date: 2015-09-30 20:24+0000\n" +"Last-Translator: Antรณn Mรฉixome \n" "Language-Team: LANGUAGE \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441295181.000000\n" +"X-POOTLE-MTIME: 1443644650.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -653,7 +653,7 @@ "PER_TEN_THOUSAND_SIGN\n" "LngText.text" msgid "basis point" -msgstr "" +msgstr "punto base" #. โ€ฒ (U+02032), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4325,7 +4325,7 @@ "RICE_CRACKER\n" "LngText.text" msgid "rice cracker" -msgstr "" +msgstr "galleta de arroz" #. ๐Ÿ™ (U+1F359), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4811,7 +4811,7 @@ "MOON_VIEWING_CEREMONY\n" "LngText.text" msgid "rice scene" -msgstr "" +msgstr "tsukimi" #. ๐ŸŽ’ (U+1F392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7331,7 +7331,7 @@ "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "megรกfono" #. ๐Ÿ“ค (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8303,7 +8303,7 @@ "UNAMUSED_FACE\n" "LngText.text" msgid "unamused" -msgstr "" +msgstr "descontento" #. ๐Ÿ˜“ (U+1F613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8501,7 +8501,7 @@ "FEARFUL_FACE\n" "LngText.text" msgid "fearful" -msgstr "" +msgstr "medroso" #. ๐Ÿ˜ฉ (U+1F629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8510,7 +8510,7 @@ "WEARY_FACE\n" "LngText.text" msgid "weary" -msgstr "" +msgstr "mallado" #. ๐Ÿ˜ช (U+1F62A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8519,7 +8519,7 @@ "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "" +msgstr "durmido" #. ๐Ÿ˜ซ (U+1F62B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8528,7 +8528,7 @@ "TIRED_FACE\n" "LngText.text" msgid "tired face" -msgstr "" +msgstr "cara cansa" #. ๐Ÿ˜ฌ (U+1F62C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8537,7 +8537,7 @@ "GRIMACING_FACE\n" "LngText.text" msgid "grimacing" -msgstr "" +msgstr "grimar" #. ๐Ÿ˜ญ (U+1F62D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8546,7 +8546,7 @@ "LOUDLY_CRYING_FACE\n" "LngText.text" msgid "sob" -msgstr "" +msgstr "salouco" #. ๐Ÿ˜ฎ (U+1F62E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8564,7 +8564,7 @@ "HUSHED_FACE\n" "LngText.text" msgid "hushed" -msgstr "" +msgstr "acalado" #. ๐Ÿ˜ฐ (U+1F630), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8573,7 +8573,7 @@ "FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "cold sweat" -msgstr "" +msgstr "suor frรญa" #. ๐Ÿ˜ฑ (U+1F631), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8582,7 +8582,7 @@ "FACE_SCREAMING_IN_FEAR\n" "LngText.text" msgid "scream" -msgstr "" +msgstr "berro" #. ๐Ÿ˜ฒ (U+1F632), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8591,7 +8591,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "atรณnito" #. ๐Ÿ˜ณ (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8600,7 +8600,7 @@ "FLUSHED_FACE\n" "LngText.text" msgid "flushed" -msgstr "" +msgstr "corado" #. ๐Ÿ˜ด (U+1F634), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8618,7 +8618,7 @@ "DIZZY_FACE\n" "LngText.text" msgid "dizzy face" -msgstr "" +msgstr "cara mareada" #. ๐Ÿ˜ถ (U+1F636), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8699,7 +8699,7 @@ "POUTING_CAT_FACE\n" "LngText.text" msgid "pouting cat" -msgstr "" +msgstr "gato amuado" #. ๐Ÿ˜ฟ (U+1F63F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8717,7 +8717,7 @@ "WEARY_CAT_FACE\n" "LngText.text" msgid "scream cat" -msgstr "" +msgstr "gato mallado" #. ๐Ÿ™… (U+1F645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8807,7 +8807,7 @@ "PERSON_WITH_POUTING_FACE\n" "LngText.text" msgid "person pouting" -msgstr "" +msgstr "persoa amuada" #. ๐Ÿ™ (U+1F64F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9095,7 +9095,7 @@ "MOUNTAIN_RAILWAY\n" "LngText.text" msgid "mountain railway" -msgstr "" +msgstr "tren funicular" #. ๐ŸšŸ (U+1F69F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9104,7 +9104,7 @@ "SUSPENSION_RAILWAY\n" "LngText.text" msgid "suspension railway" -msgstr "" +msgstr "tren suspendido" #. ๐Ÿš  (U+1F6A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9113,7 +9113,7 @@ "MOUNTAIN_CABLEWAY\n" "LngText.text" msgid "mountain cableway" -msgstr "" +msgstr "funicular" #. ๐Ÿšก (U+1F6A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9122,7 +9122,7 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "telefรฉrico" #. ๐Ÿšข (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9311,7 +9311,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "peรณn" #. ๐Ÿšท (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gl/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/gl/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gl/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gl/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1028,7 +1028,7 @@ "SC_OPCODE_FLOOR_MS\n" "string.text" msgid "FLOOR.XCL" -msgstr "" +msgstr "LIMIAR.XCL" #: core_resource.src msgctxt "" @@ -1037,17 +1037,16 @@ "SC_OPCODE_FLOOR_MATH\n" "string.text" msgid "FLOOR.MATH" -msgstr "" +msgstr "LIMIAR.MAT" #: core_resource.src -#, fuzzy msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_FLOOR_PRECISE\n" "string.text" msgid "FLOOR.PRECISE" -msgstr "LIMIAREXACTO" +msgstr "LIMIAR.EXACTO" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gu/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/gu/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gu/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gu/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gu/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/gu/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gu/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gu/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/avmedia/source/viewer.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/avmedia/source/viewer.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/avmedia/source/viewer.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/avmedia/source/viewer.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 16:57+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893257.000000\n" +"X-POOTLE-MTIME: 1445360265.000000\n" #: mediawindow.src msgctxt "" @@ -22,7 +22,7 @@ "AVMEDIA_STR_INSERTMEDIA_DLG\n" "string.text" msgid "Insert Audio or Video" -msgstr "Emoฤฉngue Audio o Vรญdeo" +msgstr "Moinge Audio o Vรญdeo" #: mediawindow.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/basctl/source/basicide.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/basctl/source/basicide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/basctl/source/basicide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/basctl/source/basicide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-14 14:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 16:58+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439562336.000000\n" +"X-POOTLE-MTIME: 1445360284.000000\n" #: basicprint.src msgctxt "" @@ -555,7 +555,7 @@ "RID_STR_PAGE\n" "string.text" msgid "Page" -msgstr "Kuatiarogue" +msgstr "Kuatia Rogue" #: basidesh.src msgctxt "" @@ -563,7 +563,7 @@ "RID_STR_MACRONAMEREQ\n" "string.text" msgid "A name must be entered." -msgstr "ร‘amoingueta peteฤฉ tรฉra." +msgstr "ร‘amoingeta peteฤฉ tรฉra." #: basidesh.src msgctxt "" @@ -725,7 +725,7 @@ "RID_INSERT\n" "menuitem.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: basidesh.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/basctl/uiconfig/basicide/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/basctl/uiconfig/basicide/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/basctl/uiconfig/basicide/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-14 14:25+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 16:58+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439562352.000000\n" +"X-POOTLE-MTIME: 1445360293.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -311,7 +311,7 @@ "label\n" "string.text" msgid "Insert as reference (read-only)" -msgstr "Moฤฉngue referenciacha (moรฑe'แบฝ-aรฑo)" +msgstr "Moinge referenciacha (moรฑe'แบฝ-aรฑo)" #: importlibdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/chart2/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/chart2/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/chart2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/chart2/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-16 15:30+0000\n" +"PO-Revision-Date: 2015-10-20 16:58+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417436.000000\n" +"X-POOTLE-MTIME: 1445360314.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -77,7 +77,7 @@ "label\n" "string.text" msgid "Insert Row" -msgstr "Moฤฉngue Tysแปนi" +msgstr "Moinge Tysแปนi" #: chartdatadialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "Insert Series" -msgstr "Moฤฉngue Series" +msgstr "Moinge Series" #: chartdatadialog.ui msgctxt "" @@ -95,7 +95,7 @@ "label\n" "string.text" msgid "Insert Text Column" -msgstr "Moฤฉngue Columna Moรฑe'แบฝrรฃgui" +msgstr "Moinge Columna Moรฑe'แบฝrรฃgui" #: chartdatadialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/source/customize.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/source/customize.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/source/customize.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/source/customize.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-27 16:31+0000\n" +"PO-Revision-Date: 2015-10-20 16:58+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440693103.000000\n" +"X-POOTLE-MTIME: 1445360331.000000\n" #: acccfg.src msgctxt "" @@ -299,7 +299,7 @@ "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED\n" "string.text" msgid "Function is already included in this popup." -msgstr "Mba'apo ojemoinguema ko ovetรฃpe." +msgstr "Mba'apo ojemoingema ko ovetรฃpe." #: cfg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/source/dialogs.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/source/dialogs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/source/dialogs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-17 01:42+0000\n" +"PO-Revision-Date: 2015-10-20 16:59+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439775723.000000\n" +"X-POOTLE-MTIME: 1445360341.000000\n" #: cuires.src msgctxt "" @@ -70,7 +70,7 @@ "RID_SVXSTR_ROW\n" "string.text" msgid "Insert Rows" -msgstr "Moฤฉngue Tysแปนi kuรฉra" +msgstr "Moinge Tysแปนi kuรฉra" #. PPI is pixel per inch, %1 is a number #: cuires.src @@ -87,7 +87,7 @@ "RID_SVXSTR_COL\n" "string.text" msgid "Insert Columns" -msgstr "Moฤฉngue Columna kuรฉra" +msgstr "Moinge Columna kuรฉra" #: cuires.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/source/options.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/source/options.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/source/options.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/source/options.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-23 04:17+0000\n" +"PO-Revision-Date: 2015-09-30 10:45+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440303453.000000\n" +"X-POOTLE-MTIME: 1443609943.000000\n" #: connpooloptions.src msgctxt "" @@ -283,8 +283,8 @@ "The folder you selected does not contain a Java runtime environment.\n" "Please select a different folder." msgstr "" -"Carpeta ojeporavo va'ekue noguerekoi ni peteฤฉ entorno Java.\n" -"Eiporavo peteฤฉ carpeta oikoรฉva." +"Karpeta ojeporavo va'ekue noguerekoi ni peteฤฉ entorno Java.\n" +"Eiporavo peteฤฉ karpeta oikoรฉva" #: optjava.src msgctxt "" @@ -296,7 +296,7 @@ "Please select a different folder." msgstr "" "Versiรณn Java reiporavo va'ekue nahaei jaikoteveva.\n" -"Eiporavo peteฤฉ carpeta oikoรฉva." +"Eiporavo peteฤฉ karpeta oikoรฉva." #: optjava.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-16 15:31+0000\n" +"PO-Revision-Date: 2015-10-20 17:04+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417485.000000\n" +"X-POOTLE-MTIME: 1445360680.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -365,7 +365,7 @@ "label\n" "string.text" msgid "A_utoInclude" -msgstr "AutoMoฤฉngue" +msgstr "AutoMoinge" #: acorexceptpage.ui msgctxt "" @@ -2507,7 +2507,7 @@ "label\n" "string.text" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:" -msgstr "Poravo o remoฤฉngue la carpeta del certificado Network Security Services reipuru haguรฃ firmas digitales:" +msgstr "Poravo o remoinge la carpeta del certificado Network Security Services reipuru haguรฃ firmas digitales:" #: certdialog.ui msgctxt "" @@ -3560,7 +3560,7 @@ "title\n" "string.text" msgid "Insert Comment" -msgstr "Moฤฉngue Oje'รฉva" +msgstr "Moinge Oje'รฉva" #: comment.ui msgctxt "" @@ -3587,7 +3587,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: comment.ui msgctxt "" @@ -7080,7 +7080,7 @@ "title\n" "string.text" msgid "Insert OLE Object" -msgstr "Moฤฉngue Mba'e OLE" +msgstr "Moinge Mba'e OLE" #: insertoleobject.ui msgctxt "" @@ -7143,7 +7143,7 @@ "title\n" "string.text" msgid "Insert Plug-in" -msgstr "Moฤฉngue Plug-in" +msgstr "Moinge Plug-in" #: insertplugin.ui msgctxt "" @@ -7179,7 +7179,7 @@ "title\n" "string.text" msgid "Insert Row" -msgstr "Moฤฉngue Tysแปนi" +msgstr "Moinge Tysแปนi" #: insertrowcolumn.ui msgctxt "" @@ -7197,7 +7197,7 @@ "label\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: insertrowcolumn.ui msgctxt "" @@ -7242,7 +7242,7 @@ "label\n" "string.text" msgid "A_ssigned folders and archives" -msgstr "Carpetas ha รฑongatuha kuรฉra ojeasignรก va'ekue" +msgstr "Karpeta ha รฑongatuha kuรฉra ojeasignรก va'ekue" #: javaclasspathdialog.ui msgctxt "" @@ -7260,7 +7260,7 @@ "label\n" "string.text" msgid "Add _Folder" -msgstr "Moฤฉ _Carpeta" +msgstr "Moฤฉ _Karpeta" #: javaclasspathdialog.ui msgctxt "" @@ -8394,7 +8394,7 @@ "title\n" "string.text" msgid "Insert Table" -msgstr "Moฤฉngue Tabla" +msgstr "Moinge Tabla" #: newtabledialog.ui msgctxt "" @@ -11287,7 +11287,7 @@ "label\n" "string.text" msgid "Cache for Inserted Objects" -msgstr "Memoria cachรฉ mba'e kuรฉragui oรฑemoฤฉngue va'ekue" +msgstr "Memoria cachรฉ mba'e kuรฉragui oรฑemoinge va'ekue" #: optmemorypage.ui msgctxt "" @@ -15628,7 +15628,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: specialcharacters.ui msgctxt "" @@ -16600,7 +16600,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: textflowpage.ui msgctxt "" @@ -16645,7 +16645,7 @@ "0\n" "stringlist.text" msgid "Page" -msgstr "Togue" +msgstr "Kuatia Rogue" #: textflowpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:35+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:04+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893357.000000\n" +"X-POOTLE-MTIME: 1445360686.000000\n" #: app.src msgctxt "" @@ -604,4 +604,4 @@ "STR_TITLE_PASTE_AS\n" "string.text" msgid "Insert as" -msgstr "Moฤฉngue pรฉicha" +msgstr "Moinge pรฉicha" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/control.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/control.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/control.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/control.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:35+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:05+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893358.000000\n" +"X-POOTLE-MTIME: 1445360714.000000\n" #: TableGrantCtrl.src msgctxt "" @@ -30,7 +30,7 @@ "STR_TABLE_PRIV_INSERT\n" "string.text" msgid "Insert data" -msgstr "Moฤฉngue datos" +msgstr "Moinge dato kuรฉra" #: TableGrantCtrl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/dlg.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/dlg.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/dlg.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/dlg.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-30 10:46+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893360.000000\n" +"X-POOTLE-MTIME: 1443609986.000000\n" #: AutoControls.src msgctxt "" @@ -342,7 +342,7 @@ "STR_NEW_FOLDER\n" "string.text" msgid "Folder" -msgstr "Carpeta" +msgstr "Karpeta" #: dbadminsetup.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/tabledesign.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/dbaccess/source/ui/tabledesign.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/dbaccess/source/ui/tabledesign.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:05+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893365.000000\n" +"X-POOTLE-MTIME: 1445360731.000000\n" #: table.src msgctxt "" @@ -183,7 +183,7 @@ "SID_TABLEDESIGN_INSERTROWS\n" "menuitem.text" msgid "Insert Rows" -msgstr "Moฤฉngue Tysแปนi kuรฉra" +msgstr "Moinge Tysแปนi kuรฉra" #: table.src msgctxt "" @@ -224,7 +224,7 @@ "STR_TABED_UNDO_ROWINSERTED\n" "string.text" msgid "Insert row" -msgstr "Moฤฉngue tysแปนi" +msgstr "Moinge tysแปนi" #: table.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/editeng/source/editeng.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/editeng/source/editeng.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/editeng/source/editeng.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/editeng/source/editeng.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-06 20:36+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:05+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893389.000000\n" +"X-POOTLE-MTIME: 1445360736.000000\n" #: editeng.src msgctxt "" @@ -38,7 +38,7 @@ "RID_EDITUNDO_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: editeng.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/editeng/source/outliner.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/editeng/source/outliner.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/editeng/source/outliner.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/editeng/source/outliner.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-12 21:08+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-20 17:05+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1423775314.000000\n" +"X-POOTLE-MTIME: 1445360745.000000\n" #: outliner.src msgctxt "" @@ -62,4 +62,4 @@ "RID_OUTLUNDO_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-09-16 15:41+0000\n" +"PO-Revision-Date: 2015-10-16 12:56+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: none\n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442418072.000000\n" +"X-POOTLE-MTIME: 1445000191.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -23,7 +23,7 @@ "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "cรฉntimo" #. ยฃ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -32,7 +32,7 @@ "POUND_SIGN\n" "LngText.text" msgid "pound" -msgstr "" +msgstr "libra" #. ยฅ (U+000A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -41,7 +41,7 @@ "YEN_SIGN\n" "LngText.text" msgid "yen" -msgstr "" +msgstr "yen" #. ยง (U+000A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -50,7 +50,7 @@ "SECTION_SIGN\n" "LngText.text" msgid "section" -msgstr "" +msgstr "pehแบฝ" #. ยฉ (U+000A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -59,7 +59,7 @@ "COPYRIGHT_SIGN\n" "LngText.text" msgid "copyright" -msgstr "" +msgstr "copyright" #. ยฌ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -86,7 +86,7 @@ "DEGREE_SIGN\n" "LngText.text" msgid "degree" -msgstr "" +msgstr "grado" #. ยฑ (U+000B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -95,7 +95,7 @@ "PLUS-MINUS_SIGN\n" "LngText.text" msgid "+-" -msgstr "" +msgstr "+-" #. ยท (U+000B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -113,7 +113,7 @@ "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "" +msgstr "x" #. ฮ‘ (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -122,7 +122,7 @@ "GREEK_CAPITAL_LETTER_ALPHA\n" "LngText.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. ฮ’ (U+00392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -131,7 +131,7 @@ "GREEK_CAPITAL_LETTER_BETA\n" "LngText.text" msgid "Beta" -msgstr "" +msgstr "Beta" #. ฮ“ (U+00393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -140,7 +140,7 @@ "GREEK_CAPITAL_LETTER_GAMMA\n" "LngText.text" msgid "Gamma" -msgstr "" +msgstr "Gamma" #. ฮ” (U+00394), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -149,7 +149,7 @@ "GREEK_CAPITAL_LETTER_DELTA\n" "LngText.text" msgid "Delta" -msgstr "" +msgstr "Delta" #. ฮ• (U+00395), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -158,7 +158,7 @@ "GREEK_CAPITAL_LETTER_EPSILON\n" "LngText.text" msgid "Epsilon" -msgstr "" +msgstr "ร‰psilon" #. ฮ– (U+00396), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -167,7 +167,7 @@ "GREEK_CAPITAL_LETTER_ZETA\n" "LngText.text" msgid "Zeta" -msgstr "" +msgstr "Dseda" #. ฮ— (U+00397), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -176,7 +176,7 @@ "GREEK_CAPITAL_LETTER_ETA\n" "LngText.text" msgid "Eta" -msgstr "" +msgstr "Eta" #. ฮ˜ (U+00398), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -185,7 +185,7 @@ "GREEK_CAPITAL_LETTER_THETA\n" "LngText.text" msgid "Theta" -msgstr "" +msgstr "Zeta" #. ฮ™ (U+00399), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -194,7 +194,7 @@ "GREEK_CAPITAL_LETTER_IOTA\n" "LngText.text" msgid "Iota" -msgstr "" +msgstr "lota" #. ฮš (U+0039A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -203,7 +203,7 @@ "GREEK_CAPITAL_LETTER_KAPPA\n" "LngText.text" msgid "Kappa" -msgstr "" +msgstr "Kappa" #. ฮ› (U+0039B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -212,7 +212,7 @@ "GREEK_CAPITAL_LETTER_LAMDA\n" "LngText.text" msgid "Lambda" -msgstr "" +msgstr "Lambda" #. ฮœ (U+0039C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -221,7 +221,7 @@ "GREEK_CAPITAL_LETTER_MU\n" "LngText.text" msgid "Mu" -msgstr "" +msgstr "Mi" #. ฮ (U+0039D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -230,7 +230,7 @@ "GREEK_CAPITAL_LETTER_NU\n" "LngText.text" msgid "Nu" -msgstr "" +msgstr "Ni" #. ฮž (U+0039E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -239,7 +239,7 @@ "GREEK_CAPITAL_LETTER_XI\n" "LngText.text" msgid "Xi" -msgstr "" +msgstr "Xi" #. ฮŸ (U+0039F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -248,7 +248,7 @@ "GREEK_CAPITAL_LETTER_OMICRON\n" "LngText.text" msgid "Omicron" -msgstr "" +msgstr "ร“micron" #. ฮ  (U+003A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -257,7 +257,7 @@ "GREEK_CAPITAL_LETTER_PI\n" "LngText.text" msgid "Pi" -msgstr "" +msgstr "Pi" #. ฮก (U+003A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -266,7 +266,7 @@ "GREEK_CAPITAL_LETTER_RHO\n" "LngText.text" msgid "Rho" -msgstr "" +msgstr "Ro" #. ฮฃ (U+003A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -275,7 +275,7 @@ "GREEK_CAPITAL_LETTER_SIGMA\n" "LngText.text" msgid "Sigma" -msgstr "" +msgstr "Sigma" #. ฮค (U+003A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -284,7 +284,7 @@ "GREEK_CAPITAL_LETTER_TAU\n" "LngText.text" msgid "Tau" -msgstr "" +msgstr "Tau" #. ฮฅ (U+003A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -293,7 +293,7 @@ "GREEK_CAPITAL_LETTER_UPSILON\n" "LngText.text" msgid "Upsilon" -msgstr "" +msgstr "รpsilon" #. ฮฆ (U+003A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -302,7 +302,7 @@ "GREEK_CAPITAL_LETTER_PHI\n" "LngText.text" msgid "Phi" -msgstr "" +msgstr "Fi" #. ฮง (U+003A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -311,7 +311,7 @@ "GREEK_CAPITAL_LETTER_CHI\n" "LngText.text" msgid "Chi" -msgstr "" +msgstr "Ji" #. ฮจ (U+003A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -320,7 +320,7 @@ "GREEK_CAPITAL_LETTER_PSI\n" "LngText.text" msgid "Psi" -msgstr "" +msgstr "Psi" #. ฮฉ (U+003A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -329,7 +329,7 @@ "GREEK_CAPITAL_LETTER_OMEGA\n" "LngText.text" msgid "Omega" -msgstr "" +msgstr "Omega" #. ฮฑ (U+003B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -338,7 +338,7 @@ "GREEK_SMALL_LETTER_ALPHA\n" "LngText.text" msgid "alpha" -msgstr "" +msgstr "alfa" #. ฮฒ (U+003B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -347,7 +347,7 @@ "GREEK_SMALL_LETTER_BETA\n" "LngText.text" msgid "beta" -msgstr "" +msgstr "beta" #. ฮณ (U+003B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -356,7 +356,7 @@ "GREEK_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "gamma" -msgstr "" +msgstr "gamma" #. ฮด (U+003B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -365,7 +365,7 @@ "GREEK_SMALL_LETTER_DELTA\n" "LngText.text" msgid "delta" -msgstr "" +msgstr "delta" #. ฮต (U+003B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -374,7 +374,7 @@ "GREEK_SMALL_LETTER_EPSILON\n" "LngText.text" msgid "epsilon" -msgstr "" +msgstr "รฉpsilon" #. ฮถ (U+003B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -383,7 +383,7 @@ "GREEK_SMALL_LETTER_ZETA\n" "LngText.text" msgid "zeta" -msgstr "" +msgstr "dseda" #. ฮท (U+003B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -392,7 +392,7 @@ "GREEK_SMALL_LETTER_ETA\n" "LngText.text" msgid "eta" -msgstr "" +msgstr "eta" #. ฮธ (U+003B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -401,7 +401,7 @@ "GREEK_SMALL_LETTER_THETA\n" "LngText.text" msgid "theta" -msgstr "" +msgstr "zeta" #. ฮน (U+003B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -410,7 +410,7 @@ "GREEK_SMALL_LETTER_IOTA\n" "LngText.text" msgid "iota" -msgstr "" +msgstr "iota" #. ฮบ (U+003BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -419,7 +419,7 @@ "GREEK_SMALL_LETTER_KAPPA\n" "LngText.text" msgid "kappa" -msgstr "" +msgstr "kappa" #. ฮป (U+003BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -428,7 +428,7 @@ "GREEK_SMALL_LETTER_LAMDA\n" "LngText.text" msgid "lambda" -msgstr "" +msgstr "lambda" #. ฮผ (U+003BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -437,7 +437,7 @@ "GREEK_SMALL_LETTER_MU\n" "LngText.text" msgid "mu" -msgstr "" +msgstr "mi" #. ฮฝ (U+003BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -446,7 +446,7 @@ "GREEK_SMALL_LETTER_NU\n" "LngText.text" msgid "nu" -msgstr "" +msgstr "ni" #. ฮพ (U+003BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -455,7 +455,7 @@ "GREEK_SMALL_LETTER_XI\n" "LngText.text" msgid "xi" -msgstr "" +msgstr "xi" #. ฮฟ (U+003BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -464,7 +464,7 @@ "GREEK_SMALL_LETTER_OMICRON\n" "LngText.text" msgid "omicron" -msgstr "" +msgstr "รณmicron" #. ฯ€ (U+003C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -473,7 +473,7 @@ "GREEK_SMALL_LETTER_PI\n" "LngText.text" msgid "pi" -msgstr "" +msgstr "pi" #. ฯ (U+003C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -482,7 +482,7 @@ "GREEK_SMALL_LETTER_RHO\n" "LngText.text" msgid "rho" -msgstr "" +msgstr "ro" #. ฯ‚ (U+003C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -491,7 +491,7 @@ "GREEK_SMALL_LETTER_FINAL_SIGMA\n" "LngText.text" msgid "sigma2" -msgstr "" +msgstr "sigma2" #. ฯƒ (U+003C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -500,7 +500,7 @@ "GREEK_SMALL_LETTER_SIGMA\n" "LngText.text" msgid "sigma" -msgstr "" +msgstr "sigma" #. ฯ„ (U+003C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -509,7 +509,7 @@ "GREEK_SMALL_LETTER_TAU\n" "LngText.text" msgid "tau" -msgstr "" +msgstr "tau" #. ฯ… (U+003C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -518,7 +518,7 @@ "GREEK_SMALL_LETTER_UPSILON\n" "LngText.text" msgid "upsilon" -msgstr "" +msgstr "รญpsilon" #. ฯ† (U+003C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -527,7 +527,7 @@ "GREEK_SMALL_LETTER_PHI\n" "LngText.text" msgid "phi" -msgstr "" +msgstr "fi" #. ฯ‡ (U+003C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -536,7 +536,7 @@ "GREEK_SMALL_LETTER_CHI\n" "LngText.text" msgid "chi" -msgstr "" +msgstr "ji" #. ฯˆ (U+003C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -545,7 +545,7 @@ "GREEK_SMALL_LETTER_PSI\n" "LngText.text" msgid "psi" -msgstr "" +msgstr "psi" #. ฯ‰ (U+003C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -554,7 +554,7 @@ "GREEK_SMALL_LETTER_OMEGA\n" "LngText.text" msgid "omega" -msgstr "" +msgstr "omega" #. เธฟ (U+00E3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -563,7 +563,7 @@ "THAI_CURRENCY_SYMBOL_BAHT\n" "LngText.text" msgid "baht" -msgstr "" +msgstr "baht" #. โ€“ (U+02013), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -599,7 +599,7 @@ "DAGGER\n" "LngText.text" msgid "dagger" -msgstr "" +msgstr "daga" #. โ€ก (U+02021), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -608,7 +608,7 @@ "DOUBLE_DAGGER\n" "LngText.text" msgid "dagger2" -msgstr "" +msgstr "daga2" #. โ€ข (U+02022), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -617,7 +617,7 @@ "BULLET\n" "LngText.text" msgid "bullet" -msgstr "" +msgstr "viรฑeta" #. โ€ฃ (U+02023), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -626,7 +626,7 @@ "TRIANGULAR_BULLET\n" "LngText.text" msgid "bullet2" -msgstr "" +msgstr "viรฑeta2" #. โ€ฆ (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -662,7 +662,7 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "prima" #. โ€ณ (U+02033), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -671,7 +671,7 @@ "DOUBLE_PRIME\n" "LngText.text" msgid "inch" -msgstr "" +msgstr "pulgada" #. โ€ผ (U+0203C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -698,7 +698,7 @@ "LIRA_SIGN\n" "LngText.text" msgid "lira" -msgstr "" +msgstr "lira" #. โ‚ฉ (U+020A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -707,7 +707,7 @@ "WON_SIGN\n" "LngText.text" msgid "won" -msgstr "" +msgstr "won" #. โ‚ช (U+020AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -716,7 +716,7 @@ "NEW_SHEQEL_SIGN\n" "LngText.text" msgid "shekel" -msgstr "" +msgstr "sรฉquel" #. โ‚ฌ (U+020AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -725,7 +725,7 @@ "EURO_SIGN\n" "LngText.text" msgid "euro" -msgstr "" +msgstr "euro" #. โ‚ฑ (U+020B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -734,7 +734,7 @@ "PESO_SIGN\n" "LngText.text" msgid "peso" -msgstr "" +msgstr "peso" #. โ‚ด (U+020B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -743,7 +743,7 @@ "HRYVNIA_SIGN\n" "LngText.text" msgid "hryvnia" -msgstr "" +msgstr "grivna" #. โ‚น (U+020B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -752,7 +752,7 @@ "INDIAN_RUPEE_SIGN\n" "LngText.text" msgid "rupee" -msgstr "" +msgstr "rupia" #. โ‚บ (U+020BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -761,7 +761,7 @@ "TURKISH_LIRA_SIGN\n" "LngText.text" msgid "Turkish lira" -msgstr "" +msgstr "lira turca" #. โ„ข (U+02122), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -770,7 +770,7 @@ "TRADE_MARK_SIGN\n" "LngText.text" msgid "tm" -msgstr "" +msgstr "tm" #. โ„น (U+02139), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -779,7 +779,7 @@ "INFORMATION_SOURCE\n" "LngText.text" msgid "information" -msgstr "" +msgstr "รฑemomarandu" #. โ† (U+02190), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -788,7 +788,7 @@ "LEFTWARDS_ARROW\n" "LngText.text" msgid "W" -msgstr "" +msgstr "O" #. โ†‘ (U+02191), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -797,7 +797,7 @@ "UPWARDS_ARROW\n" "LngText.text" msgid "N" -msgstr "" +msgstr "N" #. โ†’ (U+02192), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -806,7 +806,7 @@ "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "" +msgstr "E" #. โ†“ (U+02193), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -815,7 +815,7 @@ "DOWNWARDS_ARROW\n" "LngText.text" msgid "S" -msgstr "" +msgstr "S" #. โ†” (U+02194), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -824,7 +824,7 @@ "LEFT_RIGHT_ARROW\n" "LngText.text" msgid "EW" -msgstr "" +msgstr "EO" #. โ†• (U+02195), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -833,7 +833,7 @@ "UP_DOWN_ARROW\n" "LngText.text" msgid "NS" -msgstr "" +msgstr "NS" #. โ†– (U+02196), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -842,7 +842,7 @@ "NORTH_WEST_ARROW\n" "LngText.text" msgid "NW" -msgstr "" +msgstr "NO" #. โ†— (U+02197), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -851,7 +851,7 @@ "NORTH_EAST_ARROW\n" "LngText.text" msgid "NE" -msgstr "" +msgstr "NE" #. โ†˜ (U+02198), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -860,7 +860,7 @@ "SOUTH_EAST_ARROW\n" "LngText.text" msgid "SE" -msgstr "" +msgstr "SE" #. โ†™ (U+02199), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -869,7 +869,7 @@ "SOUTH_WEST_ARROW\n" "LngText.text" msgid "SW" -msgstr "" +msgstr "SO" #. โ‡ (U+021D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -878,7 +878,7 @@ "LEFTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "W2" -msgstr "" +msgstr "O2" #. โ‡‘ (U+021D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -887,7 +887,7 @@ "UPWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "N2" -msgstr "" +msgstr "N2" #. โ‡’ (U+021D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -896,7 +896,7 @@ "RIGHTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "E2" -msgstr "" +msgstr "E2" #. โ‡“ (U+021D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -905,7 +905,7 @@ "DOWNWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "S2" -msgstr "" +msgstr "S2" #. โ‡” (U+021D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -914,7 +914,7 @@ "LEFT_RIGHT_DOUBLE_ARROW\n" "LngText.text" msgid "EW2" -msgstr "" +msgstr "EO2" #. โ‡• (U+021D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -923,7 +923,7 @@ "UP_DOWN_DOUBLE_ARROW\n" "LngText.text" msgid "NS2" -msgstr "" +msgstr "NS2" #. โ‡– (U+021D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -932,7 +932,7 @@ "NORTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "NW2" -msgstr "" +msgstr "NO2" #. โ‡— (U+021D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -941,7 +941,7 @@ "NORTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "NE2" -msgstr "" +msgstr "NE2" #. โ‡˜ (U+021D8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -950,7 +950,7 @@ "SOUTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "SE2" -msgstr "" +msgstr "SE2" #. โ‡™ (U+021D9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -959,7 +959,7 @@ "SOUTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "SW2" -msgstr "" +msgstr "SO2" #. โˆ€ (U+02200), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1076,7 +1076,7 @@ "N-ARY_PRODUCT\n" "LngText.text" msgid "product" -msgstr "" +msgstr "producto" #. โˆ‘ (U+02211), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1085,7 +1085,7 @@ "N-ARY_SUMMATION\n" "LngText.text" msgid "sum" -msgstr "" +msgstr "sumatoria" #. โˆ’ (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1103,7 +1103,7 @@ "MINUS-OR-PLUS_SIGN\n" "LngText.text" msgid "-+" -msgstr "" +msgstr "-+" #. โˆ• (U+02215), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1130,7 +1130,7 @@ "SQUARE_ROOT\n" "LngText.text" msgid "sqrt" -msgstr "" +msgstr "raรญz cuadrada" #. โˆ› (U+0221B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1139,7 +1139,7 @@ "CUBE_ROOT\n" "LngText.text" msgid "cube root" -msgstr "" +msgstr "raรญz cรบbica" #. โˆœ (U+0221C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1148,7 +1148,7 @@ "FOURTH_ROOT\n" "LngText.text" msgid "fourth root" -msgstr "" +msgstr "raรญz cuรกrtica" #. โˆž (U+0221E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1157,7 +1157,7 @@ "INFINITY\n" "LngText.text" msgid "infinity" -msgstr "" +msgstr "infinito" #. โˆ  (U+02220), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1166,7 +1166,7 @@ "ANGLE\n" "LngText.text" msgid "angle" -msgstr "" +msgstr "รกngulo" #. โˆก (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1175,7 +1175,7 @@ "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "" +msgstr "รกngulo2" #. โˆฃ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1229,7 +1229,7 @@ "LOGICAL_OR\n" "LngText.text" msgid "or" -msgstr "" +msgstr "o" #. โˆฉ (U+02229), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1238,7 +1238,7 @@ "INTERSECTION\n" "LngText.text" msgid "intersection" -msgstr "" +msgstr "intersecciรณn" #. โˆช (U+0222A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1301,7 +1301,7 @@ "ALMOST_EQUAL_TO\n" "LngText.text" msgid "~" -msgstr "" +msgstr "~" #. โ‰  (U+02260), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1310,7 +1310,7 @@ "NOT_EQUAL_TO\n" "LngText.text" msgid "not equal" -msgstr "" +msgstr "ha'ete'แปน" #. โ‰ค (U+02264), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1319,7 +1319,7 @@ "LESS-THAN_OR_EQUAL_TO\n" "LngText.text" msgid "<=" -msgstr "" +msgstr "<=" #. โ‰ฅ (U+02265), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1328,7 +1328,7 @@ "GREATER-THAN_OR_EQUAL_TO\n" "LngText.text" msgid ">=" -msgstr "" +msgstr ">=" #. โ‰ช (U+0226A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1400,7 +1400,7 @@ "WATCH\n" "LngText.text" msgid "watch" -msgstr "" +msgstr "reloj" #. โŒ› (U+0231B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1418,7 +1418,7 @@ "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "" +msgstr "teclado" #. โข (U+023E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1427,7 +1427,7 @@ "WHITE_TRAPEZIUM\n" "LngText.text" msgid "trapezium" -msgstr "" +msgstr "trapecio" #. โฐ (U+023F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1472,7 +1472,7 @@ "BLACK_SQUARE\n" "LngText.text" msgid "square2" -msgstr "" +msgstr "cuadrado2" #. โ–ก (U+025A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1481,7 +1481,7 @@ "WHITE_SQUARE\n" "LngText.text" msgid "square" -msgstr "" +msgstr "cuadrado" #. โ–ช (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1508,7 +1508,7 @@ "BLACK_RECTANGLE\n" "LngText.text" msgid "rectangle2" -msgstr "" +msgstr "rectรกngulo2" #. โ–ญ (U+025AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1517,7 +1517,7 @@ "WHITE_RECTANGLE\n" "LngText.text" msgid "rectangle" -msgstr "" +msgstr "rectรกngulo" #. โ–ฐ (U+025B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1526,7 +1526,7 @@ "BLACK_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram2" -msgstr "" +msgstr "paralelogramo2" #. โ–ฑ (U+025B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1535,7 +1535,7 @@ "WHITE_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram" -msgstr "" +msgstr "paralelogramo" #. โ–ฒ (U+025B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1544,7 +1544,7 @@ "BLACK_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle2" -msgstr "" +msgstr "triรกngulo2" #. โ–ณ (U+025B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1553,7 +1553,7 @@ "WHITE_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle" -msgstr "" +msgstr "triรกngulo" #. โ—Š (U+025CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1562,7 +1562,7 @@ "LOZENGE\n" "LngText.text" msgid "lozenge" -msgstr "" +msgstr "rombo" #. โ—‹ (U+025CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1571,7 +1571,7 @@ "WHITE_CIRCLE\n" "LngText.text" msgid "circle" -msgstr "" +msgstr "cรญrculo" #. โ— (U+025CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1580,7 +1580,7 @@ "BLACK_CIRCLE\n" "LngText.text" msgid "circle2" -msgstr "" +msgstr "cรญrculo2" #. โ—ฆ (U+025E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1652,7 +1652,7 @@ "CLOUD\n" "LngText.text" msgid "cloud" -msgstr "" +msgstr "arai" #. โ˜‚ (U+02602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1661,7 +1661,7 @@ "UMBRELLA\n" "LngText.text" msgid "umbrella" -msgstr "" +msgstr "paraguas" #. โ˜ƒ (U+02603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1688,7 +1688,7 @@ "BLACK_STAR\n" "LngText.text" msgid "star" -msgstr "" +msgstr "mbyja" #. โ˜† (U+02606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1697,7 +1697,7 @@ "WHITE_STAR\n" "LngText.text" msgid "star2" -msgstr "" +msgstr "mbyja2" #. โ˜‡ (U+02607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1706,7 +1706,7 @@ "LIGHTNING\n" "LngText.text" msgid "lighting" -msgstr "" +msgstr "aratiri" #. โ˜ˆ (U+02608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1724,7 +1724,7 @@ "SUN\n" "LngText.text" msgid "Sun" -msgstr "" +msgstr "Kuarahy" #. โ˜Ž (U+0260E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1733,7 +1733,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "" +msgstr "telรฉfono" #. โ˜ (U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1742,7 +1742,7 @@ "WHITE_TELEPHONE\n" "LngText.text" msgid "phone2" -msgstr "" +msgstr "telรฉfono2" #. โ˜ (U+02610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1796,7 +1796,7 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "cafรฉ" #. โ˜š (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1805,7 +1805,7 @@ "BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left3" -msgstr "" +msgstr "asu3" #. โ˜› (U+0261B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1814,7 +1814,7 @@ "BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right3" -msgstr "" +msgstr "akatรบa3" #. โ˜œ (U+0261C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1823,7 +1823,7 @@ "WHITE_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left" -msgstr "" +msgstr "asu" #. โ˜ (U+0261D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1832,7 +1832,7 @@ "WHITE_UP_POINTING_INDEX\n" "LngText.text" msgid "up" -msgstr "" +msgstr "yvate" #. โ˜ž (U+0261E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1841,7 +1841,7 @@ "WHITE_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right" -msgstr "" +msgstr "akatรบa" #. โ˜Ÿ (U+0261F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1850,7 +1850,7 @@ "WHITE_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down" -msgstr "" +msgstr "yvรฝpe" #. โ˜  (U+02620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1877,7 +1877,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "radioactivo" #. โ˜ฃ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1922,7 +1922,7 @@ "CHI_RHO\n" "LngText.text" msgid "chi rho" -msgstr "" +msgstr "crismรณn" #. โ˜จ (U+02628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1958,7 +1958,7 @@ "FARSI_SYMBOL\n" "LngText.text" msgid "Farsi" -msgstr "" +msgstr "Persa" #. โ˜ฌ (U+0262C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1967,7 +1967,7 @@ "ADI_SHAKTI\n" "LngText.text" msgid "Adi Shakti" -msgstr "" +msgstr "Adi Shakti" #. โ˜ญ (U+0262D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1994,7 +1994,7 @@ "YIN_YANG\n" "LngText.text" msgid "yin yang" -msgstr "" +msgstr "yin yang" #. โ˜น (U+02639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2030,7 +2030,7 @@ "WHITE_SUN_WITH_RAYS\n" "LngText.text" msgid "Sun2" -msgstr "" +msgstr "Kuarahy2" #. โ˜ฝ (U+0263D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2039,7 +2039,7 @@ "FIRST_QUARTER_MOON\n" "LngText.text" msgid "Moon" -msgstr "" +msgstr "Jasy" #. โ˜พ (U+0263E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2048,7 +2048,7 @@ "LAST_QUARTER_MOON\n" "LngText.text" msgid "Moon2" -msgstr "" +msgstr "Jasy2" #. โ˜ฟ (U+0263F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2066,7 +2066,7 @@ "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "" +msgstr "kuรฑa" #. โ™ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2075,7 +2075,7 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Yvy" #. โ™‚ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2084,7 +2084,7 @@ "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "" +msgstr "kuimba'e" #. โ™ƒ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2093,7 +2093,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Jรบpiter" #. โ™„ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2102,7 +2102,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Saturno" #. โ™… (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2111,7 +2111,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "Urano" #. โ™† (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2120,7 +2120,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Neptuno" #. โ™‡ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2129,7 +2129,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Plutรณn" #. โ™ˆ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2138,7 +2138,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Aries" #. โ™‰ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2147,7 +2147,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "Tauro" #. โ™Š (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2156,7 +2156,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "Gรฉminis" #. โ™‹ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2165,7 +2165,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "Cรกncer" #. โ™Œ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2174,7 +2174,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "Leo" #. โ™ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2183,7 +2183,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "Virgo" #. โ™Ž (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2192,7 +2192,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Libra" #. โ™ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2201,7 +2201,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Escorpio" #. โ™ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2210,7 +2210,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "Sagitario" #. โ™‘ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2219,7 +2219,7 @@ "CAPRICORN\n" "LngText.text" msgid "Capricorn" -msgstr "" +msgstr "Capricornio" #. โ™’ (U+02652), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2228,7 +2228,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "Acuario" #. โ™“ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2237,7 +2237,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Piscis" #. โ™” (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2372,7 +2372,7 @@ "WHITE_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds2" -msgstr "" +msgstr "diamantes2" #. โ™ฃ (U+02663), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2408,7 +2408,7 @@ "BLACK_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds" -msgstr "" +msgstr "diamantes" #. โ™ง (U+02667), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2543,7 +2543,7 @@ "DIE_FACE-1\n" "LngText.text" msgid "dice1" -msgstr "" +msgstr "dado1" #. โš (U+02681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2552,7 +2552,7 @@ "DIE_FACE-2\n" "LngText.text" msgid "dice2" -msgstr "" +msgstr "dado2" #. โš‚ (U+02682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2561,7 +2561,7 @@ "DIE_FACE-3\n" "LngText.text" msgid "dice3" -msgstr "" +msgstr "dado3" #. โšƒ (U+02683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2570,7 +2570,7 @@ "DIE_FACE-4\n" "LngText.text" msgid "dice4" -msgstr "" +msgstr "dado4" #. โš„ (U+02684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2579,7 +2579,7 @@ "DIE_FACE-5\n" "LngText.text" msgid "dice5" -msgstr "" +msgstr "dado5" #. โš… (U+02685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2588,7 +2588,7 @@ "DIE_FACE-6\n" "LngText.text" msgid "dice6" -msgstr "" +msgstr "dado6" #. โš (U+02690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2597,7 +2597,7 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "poyvi" #. โš‘ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2606,7 +2606,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "poyvi" #. โš’ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2660,7 +2660,7 @@ "ALEMBIC\n" "LngText.text" msgid "alembic" -msgstr "" +msgstr "alambique" #. โš˜ (U+02698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2696,7 +2696,7 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "รกtomo" #. โšœ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2723,7 +2723,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "voltaje" #. โšช (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2777,7 +2777,7 @@ "FUNERAL_URN\n" "LngText.text" msgid "urn" -msgstr "" +msgstr "urna funeraria" #. โšฝ (U+026BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2786,7 +2786,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "fรบtbol" #. โšพ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2795,7 +2795,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "bรฉisbol" #. โ›„ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2813,7 +2813,7 @@ "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "" +msgstr "arai2" #. โ›† (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2867,7 +2867,7 @@ "HELMET_WITH_WHITE_CROSS\n" "LngText.text" msgid "helmet" -msgstr "" +msgstr "casco" #. โ›“ (U+026D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2876,7 +2876,7 @@ "CHAINS\n" "LngText.text" msgid "chains" -msgstr "" +msgstr "cadenas" #. โ›” (U+026D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2894,7 +2894,7 @@ "BLACK_TRUCK\n" "LngText.text" msgid "truck" -msgstr "" +msgstr "camiรณn" #. โ›ค (U+026E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2903,7 +2903,7 @@ "PENTAGRAM\n" "LngText.text" msgid "pentagram" -msgstr "" +msgstr "pentagrama" #. โ›จ (U+026E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2957,7 +2957,7 @@ "FLAG_IN_HOLE\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "golf" #. โ›ด (U+026F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2975,7 +2975,7 @@ "SAILBOAT\n" "LngText.text" msgid "sailboat" -msgstr "" +msgstr "velero" #. โ›บ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2984,7 +2984,7 @@ "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "carpa" #. โ›ท (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3029,7 +3029,7 @@ "UPPER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors3" -msgstr "" +msgstr "tijeras3" #. โœ‚ (U+02702), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3038,7 +3038,7 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "tijeras" #. โœƒ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3047,7 +3047,7 @@ "LOWER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors4" -msgstr "" +msgstr "tijeras4" #. โœ„ (U+02704), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3056,7 +3056,7 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "tijeras2" #. โœ… (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3137,7 +3137,7 @@ "LOWER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil" -msgstr "" +msgstr "lรกpiz" #. โœ (U+0270F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3146,7 +3146,7 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "lรกpiz2" #. โœ (U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3155,7 +3155,7 @@ "UPPER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil3" -msgstr "" +msgstr "lรกpiz3" #. โœ‘ (U+02711), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3281,7 +3281,7 @@ "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "" +msgstr "x2" #. โŽ (U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3290,7 +3290,7 @@ "NEGATIVE_SQUARED_CROSS_MARK\n" "LngText.text" msgid "x3" -msgstr "" +msgstr "x3" #. โ“ (U+02753), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3308,7 +3308,7 @@ "WHITE_QUESTION_MARK_ORNAMENT\n" "LngText.text" msgid "?2" -msgstr "" +msgstr "?2" #. โ• (U+02755), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3326,7 +3326,7 @@ "HEAVY_EXCLAMATION_MARK_SYMBOL\n" "LngText.text" msgid "!2" -msgstr "" +msgstr "!2" #. โค (U+02764), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3335,7 +3335,7 @@ "HEAVY_BLACK_HEART\n" "LngText.text" msgid "heart" -msgstr "" +msgstr "korasรต" #. โžฐ (U+027B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3380,7 +3380,7 @@ "BLACK_PENTAGON\n" "LngText.text" msgid "pentagon2" -msgstr "" +msgstr "pentรกgono2" #. โฌ  (U+02B20), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3389,7 +3389,7 @@ "WHITE_PENTAGON\n" "LngText.text" msgid "pentagon" -msgstr "" +msgstr "pentรกgono" #. โฌก (U+02B21), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3398,7 +3398,7 @@ "WHITE_HEXAGON\n" "LngText.text" msgid "hexagon" -msgstr "" +msgstr "hexรกgono" #. โฌข (U+02B22), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3407,7 +3407,7 @@ "BLACK_HEXAGON\n" "LngText.text" msgid "hexagon2" -msgstr "" +msgstr "hexรกgono2" #. โฌค (U+02B24), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3425,7 +3425,7 @@ "WHITE_HORIZONTAL_ELLIPSE\n" "LngText.text" msgid "ellipse" -msgstr "" +msgstr "elipse" #. โญ (U+02B50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3461,7 +3461,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. ๏ฌ (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3470,7 +3470,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. ๏ฌ‚ (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3479,7 +3479,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ๏ฌƒ (U+0FB03), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3488,7 +3488,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ๏ฌ„ (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3497,7 +3497,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. ๐„ž (U+1D11E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3623,7 +3623,7 @@ "DOMINO_TILE_HORIZONTAL-06-05\n" "LngText.text" msgid "domino" -msgstr "" +msgstr "dominรณ" #. ๐Ÿ‚ก (U+1F0A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4775,7 +4775,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "tacuara" #. ๐ŸŽŽ (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4793,7 +4793,7 @@ "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "poyvi2" #. ๐ŸŽ (U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4874,7 +4874,7 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "micrรณfono" #. ๐ŸŽฅ (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4883,7 +4883,7 @@ "MOVIE_CAMERA\n" "LngText.text" msgid "movie camera" -msgstr "" +msgstr "cรกmara de cine" #. ๐ŸŽฆ (U+1F3A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4892,7 +4892,7 @@ "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "" +msgstr "cine" #. ๐ŸŽง (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4901,7 +4901,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "auricular" #. ๐ŸŽจ (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4964,7 +4964,7 @@ "VIDEO_GAME\n" "LngText.text" msgid "video game" -msgstr "" +msgstr "videojuego" #. ๐ŸŽฏ (U+1F3AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5000,7 +5000,7 @@ "GAME_DIE\n" "LngText.text" msgid "dice" -msgstr "" +msgstr "dado" #. ๐ŸŽณ (U+1F3B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5009,7 +5009,7 @@ "BOWLING\n" "LngText.text" msgid "bowling" -msgstr "" +msgstr "bolos" #. ๐ŸŽด (U+1F3B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5027,7 +5027,7 @@ "MUSICAL_NOTE\n" "LngText.text" msgid "music2" -msgstr "" +msgstr "mรบsica2" #. ๐ŸŽถ (U+1F3B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5036,7 +5036,7 @@ "MULTIPLE_MUSICAL_NOTES\n" "LngText.text" msgid "music" -msgstr "" +msgstr "mรบsica" #. ๐ŸŽท (U+1F3B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5045,7 +5045,7 @@ "SAXOPHONE\n" "LngText.text" msgid "saxophone" -msgstr "" +msgstr "saxofรณn" #. ๐ŸŽธ (U+1F3B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5054,7 +5054,7 @@ "GUITAR\n" "LngText.text" msgid "guitar" -msgstr "" +msgstr "guitarra" #. ๐ŸŽน (U+1F3B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5063,7 +5063,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "piano" #. ๐ŸŽบ (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5072,7 +5072,7 @@ "TRUMPET\n" "LngText.text" msgid "trumpet" -msgstr "" +msgstr "trompeta" #. ๐ŸŽป (U+1F3BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5081,7 +5081,7 @@ "VIOLIN\n" "LngText.text" msgid "violin" -msgstr "" +msgstr "violรญn" #. ๐ŸŽผ (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5108,7 +5108,7 @@ "TENNIS_RACQUET_AND_BALL\n" "LngText.text" msgid "tennis" -msgstr "" +msgstr "tenis" #. ๐ŸŽฟ (U+1F3BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5126,7 +5126,7 @@ "BASKETBALL_AND_HOOP\n" "LngText.text" msgid "basketball" -msgstr "" +msgstr "bรกsquetbol" #. ๐Ÿ (U+1F3C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5135,7 +5135,7 @@ "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "poyvi3" #. ๐Ÿ‚ (U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5162,7 +5162,7 @@ "SURFER\n" "LngText.text" msgid "surfer" -msgstr "" +msgstr "surfista" #. ๐Ÿ† (U+1F3C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5189,7 +5189,7 @@ "AMERICAN_FOOTBALL\n" "LngText.text" msgid "football" -msgstr "" +msgstr "fรบtbol" #. ๐Ÿ‰ (U+1F3C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5198,7 +5198,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "rugby" #. ๐ŸŠ (U+1F3CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5234,7 +5234,7 @@ "OFFICE_BUILDING\n" "LngText.text" msgid "office" -msgstr "" +msgstr "oficina" #. ๐Ÿฃ (U+1F3E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5270,7 +5270,7 @@ "BANK\n" "LngText.text" msgid "bank" -msgstr "" +msgstr "banco" #. ๐Ÿง (U+1F3E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5279,7 +5279,7 @@ "AUTOMATED_TELLER_MACHINE\n" "LngText.text" msgid "atm" -msgstr "" +msgstr "cajero" #. ๐Ÿจ (U+1F3E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5288,7 +5288,7 @@ "HOTEL\n" "LngText.text" msgid "hotel" -msgstr "" +msgstr "hotel" #. ๐Ÿฉ (U+1F3E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5351,7 +5351,7 @@ "JAPANESE_CASTLE\n" "LngText.text" msgid "castle2" -msgstr "" +msgstr "castillo2" #. ๐Ÿฐ (U+1F3F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5360,7 +5360,7 @@ "EUROPEAN_CASTLE\n" "LngText.text" msgid "castle" -msgstr "" +msgstr "castillo" #. ๐Ÿ€ (U+1F400), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5369,7 +5369,7 @@ "RAT\n" "LngText.text" msgid "rat" -msgstr "" +msgstr "anguja" #. ๐Ÿ (U+1F401), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5378,7 +5378,7 @@ "MOUSE\n" "LngText.text" msgid "mouse" -msgstr "" +msgstr "anguja'i" #. ๐Ÿ‚ (U+1F402), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5405,7 +5405,7 @@ "COW\n" "LngText.text" msgid "cow" -msgstr "" +msgstr "vaka" #. ๐Ÿ… (U+1F405), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5414,7 +5414,7 @@ "TIGER\n" "LngText.text" msgid "tiger" -msgstr "" +msgstr "jaguarete" #. ๐Ÿ† (U+1F406), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5432,7 +5432,7 @@ "RABBIT\n" "LngText.text" msgid "rabbit" -msgstr "" +msgstr "tapiti" #. ๐Ÿˆ (U+1F408), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5441,7 +5441,7 @@ "CAT\n" "LngText.text" msgid "cat" -msgstr "" +msgstr "mbarakaja" #. ๐Ÿ‰ (U+1F409), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5450,7 +5450,7 @@ "DRAGON\n" "LngText.text" msgid "dragon" -msgstr "" +msgstr "dragรณn" #. ๐ŸŠ (U+1F40A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5459,7 +5459,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "jakare" #. ๐Ÿ‹ (U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5468,7 +5468,7 @@ "WHALE\n" "LngText.text" msgid "whale2" -msgstr "" +msgstr "ballena2" #. ๐ŸŒ (U+1F40C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5495,7 +5495,7 @@ "HORSE\n" "LngText.text" msgid "horse" -msgstr "" +msgstr "kavaju" #. ๐Ÿ (U+1F40F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5531,7 +5531,7 @@ "MONKEY\n" "LngText.text" msgid "monkey" -msgstr "" +msgstr "ka'i" #. ๐Ÿ“ (U+1F413), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5540,7 +5540,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "ryguasume" #. ๐Ÿ” (U+1F414), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5549,7 +5549,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "ryguasu" #. ๐Ÿ• (U+1F415), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5558,7 +5558,7 @@ "DOG\n" "LngText.text" msgid "dog" -msgstr "" +msgstr "jagua" #. ๐Ÿ– (U+1F416), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5567,7 +5567,7 @@ "PIG\n" "LngText.text" msgid "pig" -msgstr "" +msgstr "kure" #. ๐Ÿ— (U+1F417), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5576,7 +5576,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "taรฑy katฤฉ" #. ๐Ÿ˜ (U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5585,7 +5585,7 @@ "ELEPHANT\n" "LngText.text" msgid "elephant" -msgstr "" +msgstr "mborerotochu" #. ๐Ÿ™ (U+1F419), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5607,12 +5607,13 @@ #. ๐Ÿ› (U+1F41B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf +#, fuzzy msgctxt "" "emoji.ulf\n" "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "tymba'i" #. ๐Ÿœ (U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5621,7 +5622,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "tahรฝi" #. ๐Ÿ (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5630,7 +5631,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "eiru" #. ๐Ÿž (U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5648,7 +5649,7 @@ "FISH\n" "LngText.text" msgid "fish" -msgstr "" +msgstr "pira" #. ๐Ÿ  (U+1F420), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5657,7 +5658,7 @@ "TROPICAL_FISH\n" "LngText.text" msgid "fish2" -msgstr "" +msgstr "pira2" #. ๐Ÿก (U+1F421), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5666,7 +5667,7 @@ "BLOWFISH\n" "LngText.text" msgid "fish3" -msgstr "" +msgstr "pira3" #. ๐Ÿข (U+1F422), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5675,7 +5676,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "karumbe" #. ๐Ÿฃ (U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5711,7 +5712,7 @@ "BIRD\n" "LngText.text" msgid "bird" -msgstr "" +msgstr "guyra" #. ๐Ÿง (U+1F427), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5720,7 +5721,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "pingรผino" #. ๐Ÿจ (U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5747,7 +5748,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "camello" #. ๐Ÿซ (U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5756,7 +5757,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "camello2" #. ๐Ÿฌ (U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5765,7 +5766,7 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "delfรญn" #. ๐Ÿญ (U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5774,7 +5775,7 @@ "MOUSE_FACE\n" "LngText.text" msgid "mouse2" -msgstr "" +msgstr "anguja'i2" #. ๐Ÿฎ (U+1F42E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5783,7 +5784,7 @@ "COW_FACE\n" "LngText.text" msgid "cow2" -msgstr "" +msgstr "vaka2" #. ๐Ÿฏ (U+1F42F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5792,7 +5793,7 @@ "TIGER_FACE\n" "LngText.text" msgid "tiger2" -msgstr "" +msgstr "jaguarete2" #. ๐Ÿฐ (U+1F430), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5801,7 +5802,7 @@ "RABBIT_FACE\n" "LngText.text" msgid "rabbit2" -msgstr "" +msgstr "tapiti2" #. ๐Ÿฑ (U+1F431), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5810,7 +5811,7 @@ "CAT_FACE\n" "LngText.text" msgid "cat2" -msgstr "" +msgstr "mbarakaja2" #. ๐Ÿฒ (U+1F432), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5819,7 +5820,7 @@ "DRAGON_FACE\n" "LngText.text" msgid "dragon2" -msgstr "" +msgstr "dragรณn2" #. ๐Ÿณ (U+1F433), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5828,7 +5829,7 @@ "SPOUTING_WHALE\n" "LngText.text" msgid "whale" -msgstr "" +msgstr "ballena" #. ๐Ÿด (U+1F434), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5837,7 +5838,7 @@ "HORSE_FACE\n" "LngText.text" msgid "horse2" -msgstr "" +msgstr "kavaju2" #. ๐Ÿต (U+1F435), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5846,7 +5847,7 @@ "MONKEY_FACE\n" "LngText.text" msgid "monkey2" -msgstr "" +msgstr "ka'i2" #. ๐Ÿถ (U+1F436), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5855,7 +5856,7 @@ "DOG_FACE\n" "LngText.text" msgid "dog2" -msgstr "" +msgstr "jagua2" #. ๐Ÿท (U+1F437), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5864,7 +5865,7 @@ "PIG_FACE\n" "LngText.text" msgid "pig2" -msgstr "" +msgstr "kure2" #. ๐Ÿธ (U+1F438), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5873,7 +5874,7 @@ "FROG_FACE\n" "LngText.text" msgid "frog" -msgstr "" +msgstr "ju'i" #. ๐Ÿน (U+1F439), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5882,7 +5883,7 @@ "HAMSTER_FACE\n" "LngText.text" msgid "hamster" -msgstr "" +msgstr "hรกmster" #. ๐Ÿบ (U+1F43A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5891,7 +5892,7 @@ "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "jaguaru" #. ๐Ÿป (U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5927,7 +5928,7 @@ "PAW_PRINTS\n" "LngText.text" msgid "feet" -msgstr "" +msgstr "py" #. ๐Ÿ‘€ (U+1F440), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5936,7 +5937,7 @@ "EYES\n" "LngText.text" msgid "eyes" -msgstr "" +msgstr "tesa" #. ๐Ÿ‘‚ (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5945,7 +5946,7 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "nambi" #. ๐Ÿ‘ƒ (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5954,7 +5955,7 @@ "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "tฤฉ" #. ๐Ÿ‘„ (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5963,7 +5964,7 @@ "MOUTH\n" "LngText.text" msgid "mouth" -msgstr "" +msgstr "juru" #. ๐Ÿ‘… (U+1F445), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5972,7 +5973,7 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "kลฉ" #. ๐Ÿ‘† (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5981,7 +5982,7 @@ "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "" +msgstr "yvate2" #. ๐Ÿ‘‡ (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5990,7 +5991,7 @@ "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "" +msgstr "yvรฝpe2" #. ๐Ÿ‘ˆ (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5999,7 +6000,7 @@ "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "" +msgstr "asu2" #. ๐Ÿ‘‰ (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6008,7 +6009,7 @@ "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "" +msgstr "akatรบa2" #. ๐Ÿ‘Š (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6035,7 +6036,7 @@ "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "" +msgstr "ok" #. ๐Ÿ‘ (U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6044,7 +6045,7 @@ "THUMBS_UP_SIGN\n" "LngText.text" msgid "yes" -msgstr "" +msgstr "hรฉแบฝ" #. ๐Ÿ‘Ž (U+1F44E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6053,7 +6054,7 @@ "THUMBS_DOWN_SIGN\n" "LngText.text" msgid "no" -msgstr "" +msgstr "nahรกniri" #. ๐Ÿ‘ (U+1F44F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6125,7 +6126,7 @@ "JEANS\n" "LngText.text" msgid "jeans" -msgstr "" +msgstr "vaqueros" #. ๐Ÿ‘— (U+1F457), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6143,7 +6144,7 @@ "KIMONO\n" "LngText.text" msgid "kimono" -msgstr "" +msgstr "kimono" #. ๐Ÿ‘™ (U+1F459), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6152,7 +6153,7 @@ "BIKINI\n" "LngText.text" msgid "bikini" -msgstr "" +msgstr "bikini" #. ๐Ÿ‘š (U+1F45A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6233,7 +6234,7 @@ "WOMANS_BOOTS\n" "LngText.text" msgid "boot" -msgstr "" +msgstr "bota" #. ๐Ÿ‘ฃ (U+1F463), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6269,7 +6270,7 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "mitรฃ'i" #. ๐Ÿ‘ง (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6278,7 +6279,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "mitรฃkuรฑa" #. ๐Ÿ‘จ (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6287,7 +6288,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "kuimba'e" #. ๐Ÿ‘ฉ (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6296,7 +6297,7 @@ "WOMAN\n" "LngText.text" msgid "woman" -msgstr "" +msgstr "hembireko" #. ๐Ÿ‘ช (U+1F46A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6305,7 +6306,7 @@ "FAMILY\n" "LngText.text" msgid "family" -msgstr "" +msgstr "ogaygua" #. ๐Ÿ‘ซ (U+1F46B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6341,7 +6342,7 @@ "POLICE_OFFICER\n" "LngText.text" msgid "cop" -msgstr "" +msgstr "tahachi" #. ๐Ÿ‘ฏ (U+1F46F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6386,7 +6387,7 @@ "MAN_WITH_TURBAN\n" "LngText.text" msgid "turban" -msgstr "" +msgstr "turbante" #. ๐Ÿ‘ด (U+1F474), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6440,7 +6441,7 @@ "JAPANESE_OGRE\n" "LngText.text" msgid "ogre" -msgstr "" +msgstr "ogro" #. ๐Ÿ‘บ (U+1F47A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6458,7 +6459,7 @@ "GHOST\n" "LngText.text" msgid "ghost" -msgstr "" +msgstr "pรณra" #. ๐Ÿ‘ผ (U+1F47C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6476,7 +6477,7 @@ "EXTRATERRESTRIAL_ALIEN\n" "LngText.text" msgid "alien" -msgstr "" +msgstr "extraterrestre" #. ๐Ÿ‘พ (U+1F47E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6485,7 +6486,7 @@ "ALIEN_MONSTER\n" "LngText.text" msgid "alien2" -msgstr "" +msgstr "extraterrestre2" #. ๐Ÿ‘ฟ (U+1F47F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6512,7 +6513,7 @@ "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "" +msgstr "รฑemomarandu2" #. ๐Ÿ’‚ (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6539,7 +6540,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "colorete" #. ๐Ÿ’… (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6620,7 +6621,7 @@ "RING\n" "LngText.text" msgid "ring" -msgstr "" +msgstr "anillo" #. ๐Ÿ’Ž (U+1F48E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6629,7 +6630,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "gema" #. ๐Ÿ’ (U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6638,7 +6639,7 @@ "KISS\n" "LngText.text" msgid "kiss" -msgstr "" +msgstr "รฑehetลฉ" #. ๐Ÿ’ (U+1F490), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6719,7 +6720,7 @@ "HEART_WITH_ARROW\n" "LngText.text" msgid "love" -msgstr "" +msgstr "mborayhu" #. ๐Ÿ’ (U+1F49D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6782,7 +6783,7 @@ "BOMB\n" "LngText.text" msgid "bomb" -msgstr "" +msgstr "bomba" #. ๐Ÿ’ค (U+1F4A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6791,7 +6792,7 @@ "SLEEPING_SYMBOL\n" "LngText.text" msgid "zzz" -msgstr "" +msgstr "zzz" #. ๐Ÿ’ฅ (U+1F4A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6800,7 +6801,7 @@ "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "bum" #. ๐Ÿ’ฆ (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6836,7 +6837,7 @@ "PILE_OF_POO\n" "LngText.text" msgid "poo" -msgstr "" +msgstr "caca" #. ๐Ÿ’ช (U+1F4AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6890,7 +6891,7 @@ "HUNDRED_POINTS_SYMBOL\n" "LngText.text" msgid "100" -msgstr "" +msgstr "100" #. ๐Ÿ’ฐ (U+1F4B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6926,7 +6927,7 @@ "CREDIT_CARD\n" "LngText.text" msgid "credit card" -msgstr "" +msgstr "tageta de crรฉdito" #. ๐Ÿ’ด (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6935,7 +6936,7 @@ "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "yen2" #. ๐Ÿ’ต (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6944,7 +6945,7 @@ "BANKNOTE_WITH_DOLLAR_SIGN\n" "LngText.text" msgid "dollar2" -msgstr "" +msgstr "dรณlar2" #. ๐Ÿ’ถ (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6953,7 +6954,7 @@ "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "euro2" #. ๐Ÿ’ท (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6962,7 +6963,7 @@ "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "libra2" #. ๐Ÿ’ธ (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6971,7 +6972,7 @@ "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "viru" #. ๐Ÿ’น (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6980,7 +6981,7 @@ "CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n" "LngText.text" msgid "chart" -msgstr "" +msgstr "grรกfico" #. ๐Ÿ’บ (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6998,7 +6999,7 @@ "PERSONAL_COMPUTER\n" "LngText.text" msgid "computer" -msgstr "" +msgstr "computadora" #. ๐Ÿ’ผ (U+1F4BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7016,7 +7017,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "md" #. ๐Ÿ’พ (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7025,7 +7026,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "diskete" #. ๐Ÿ’ฟ (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7034,7 +7035,7 @@ "OPTICAL_DISC\n" "LngText.text" msgid "cd" -msgstr "" +msgstr "cd" #. ๐Ÿ“€ (U+1F4C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7043,7 +7044,7 @@ "DVD\n" "LngText.text" msgid "dvd" -msgstr "" +msgstr "dvd" #. ๐Ÿ“ (U+1F4C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7052,7 +7053,7 @@ "FILE_FOLDER\n" "LngText.text" msgid "folder" -msgstr "" +msgstr "karpeta" #. ๐Ÿ“‚ (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7061,7 +7062,7 @@ "OPEN_FILE_FOLDER\n" "LngText.text" msgid "folder2" -msgstr "" +msgstr "karpeta2" #. ๐Ÿ“ƒ (U+1F4C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7124,7 +7125,7 @@ "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "" +msgstr "grรกfico2" #. ๐Ÿ“Š (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7133,7 +7134,7 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "" +msgstr "grรกfico3" #. ๐Ÿ“‹ (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7142,7 +7143,7 @@ "CLIPBOARD\n" "LngText.text" msgid "clipboard" -msgstr "" +msgstr "kuatia-jokoha" #. ๐Ÿ“Œ (U+1F4CC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7196,7 +7197,7 @@ "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "" +msgstr "macarcador" #. ๐Ÿ“’ (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7259,7 +7260,7 @@ "NAME_BADGE\n" "LngText.text" msgid "name" -msgstr "" +msgstr "tรฉra" #. ๐Ÿ“œ (U+1F4DC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7304,7 +7305,7 @@ "FAX_MACHINE\n" "LngText.text" msgid "fax" -msgstr "" +msgstr "fax" #. ๐Ÿ“ก (U+1F4E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7313,7 +7314,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "satรฉlite" #. ๐Ÿ“ข (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7457,7 +7458,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "mรณvil" #. ๐Ÿ“ฒ (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7511,7 +7512,7 @@ "CAMERA\n" "LngText.text" msgid "camera" -msgstr "" +msgstr "cรกmara" #. ๐Ÿ“น (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7520,7 +7521,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "videocรกmara" #. ๐Ÿ“บ (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7529,7 +7530,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "tv" #. ๐Ÿ“ป (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7538,7 +7539,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "radio" #. ๐Ÿ“ผ (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7547,7 +7548,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. ๐Ÿ”… (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7556,7 +7557,7 @@ "LOW_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness" -msgstr "" +msgstr "mimbi" #. ๐Ÿ”† (U+1F506), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7565,7 +7566,7 @@ "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "" +msgstr "mimbi2" #. ๐Ÿ”‡ (U+1F507), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7610,7 +7611,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "baterรญa" #. ๐Ÿ”Œ (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7619,7 +7620,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "enchufe" #. ๐Ÿ” (U+1F50D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7628,7 +7629,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "lupa" #. ๐Ÿ”Ž (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7637,7 +7638,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "lupa2" #. ๐Ÿ” (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7718,7 +7719,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "link" #. ๐Ÿ”˜ (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7745,7 +7746,7 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abc" #. ๐Ÿ”ฅ (U+1F525), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7754,7 +7755,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "tata" #. ๐Ÿ”ฆ (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7763,7 +7764,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "linterna" #. ๐Ÿ”ง (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7772,7 +7773,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "llave inglesa" #. ๐Ÿ”จ (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7781,7 +7782,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "martillo" #. ๐Ÿ”ฉ (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7799,7 +7800,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "cuchillo" #. ๐Ÿ”ซ (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7808,7 +7809,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "pistola" #. ๐Ÿ”ฌ (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7817,7 +7818,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "microscopio" #. ๐Ÿ”ญ (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7826,7 +7827,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "telescopio" #. ๐Ÿ”ฎ (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7862,7 +7863,7 @@ "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "" +msgstr "votรต2" #. ๐Ÿ”ณ (U+1F533), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7871,7 +7872,7 @@ "WHITE_SQUARE_BUTTON\n" "LngText.text" msgid "button" -msgstr "" +msgstr "votรต" #. ๐Ÿ• (U+1F550), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7880,7 +7881,7 @@ "CLOCK_FACE_ONE_OCLOCK\n" "LngText.text" msgid "1" -msgstr "" +msgstr "1" #. ๐Ÿ•‘ (U+1F551), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7889,7 +7890,7 @@ "CLOCK_FACE_TWO_OCLOCK\n" "LngText.text" msgid "2" -msgstr "" +msgstr "2" #. ๐Ÿ•’ (U+1F552), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7898,7 +7899,7 @@ "CLOCK_FACE_THREE_OCLOCK\n" "LngText.text" msgid "3" -msgstr "" +msgstr "3" #. ๐Ÿ•“ (U+1F553), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7907,7 +7908,7 @@ "CLOCK_FACE_FOUR_OCLOCK\n" "LngText.text" msgid "4" -msgstr "" +msgstr "4" #. ๐Ÿ•” (U+1F554), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7916,7 +7917,7 @@ "CLOCK_FACE_FIVE_OCLOCK\n" "LngText.text" msgid "5" -msgstr "" +msgstr "5" #. ๐Ÿ•• (U+1F555), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7925,7 +7926,7 @@ "CLOCK_FACE_SIX_OCLOCK\n" "LngText.text" msgid "6" -msgstr "" +msgstr "6" #. ๐Ÿ•– (U+1F556), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7934,7 +7935,7 @@ "CLOCK_FACE_SEVEN_OCLOCK\n" "LngText.text" msgid "7" -msgstr "" +msgstr "7" #. ๐Ÿ•— (U+1F557), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7943,7 +7944,7 @@ "CLOCK_FACE_EIGHT_OCLOCK\n" "LngText.text" msgid "8" -msgstr "" +msgstr "8" #. ๐Ÿ•˜ (U+1F558), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7952,7 +7953,7 @@ "CLOCK_FACE_NINE_OCLOCK\n" "LngText.text" msgid "9" -msgstr "" +msgstr "9" #. ๐Ÿ•™ (U+1F559), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7961,7 +7962,7 @@ "CLOCK_FACE_TEN_OCLOCK\n" "LngText.text" msgid "10" -msgstr "" +msgstr "10" #. ๐Ÿ•š (U+1F55A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7970,7 +7971,7 @@ "CLOCK_FACE_ELEVEN_OCLOCK\n" "LngText.text" msgid "11" -msgstr "" +msgstr "11" #. ๐Ÿ•› (U+1F55B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7979,7 +7980,7 @@ "CLOCK_FACE_TWELVE_OCLOCK\n" "LngText.text" msgid "12" -msgstr "" +msgstr "12" #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7988,7 +7989,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "" +msgstr "1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7997,7 +7998,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "" +msgstr "2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8006,7 +8007,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "" +msgstr "3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8015,7 +8016,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "" +msgstr "4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8024,7 +8025,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "" +msgstr "5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8033,7 +8034,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "" +msgstr "6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8042,7 +8043,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "" +msgstr "7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8051,7 +8052,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "" +msgstr "8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8060,7 +8061,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "" +msgstr "9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8069,7 +8070,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "" +msgstr "10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8078,7 +8079,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "" +msgstr "11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8087,7 +8088,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "" +msgstr "12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8096,7 +8097,7 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "Fuji" #. ๐Ÿ—ผ (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8123,7 +8124,7 @@ "SILHOUETTE_OF_JAPAN\n" "LngText.text" msgid "Japan" -msgstr "" +msgstr "Japรณn" #. ๐Ÿ—ฟ (U+1F5FF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8357,7 +8358,7 @@ "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "" +msgstr "รฑehetลฉ2" #. ๐Ÿ˜™ (U+1F619), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8366,7 +8367,7 @@ "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "" +msgstr "รฑehetลฉ3" #. ๐Ÿ˜š (U+1F61A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8375,7 +8376,7 @@ "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "" +msgstr "รฑehetลฉ4" #. ๐Ÿ˜› (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8384,7 +8385,7 @@ "FACE_WITH_STUCK-OUT_TONGUE\n" "LngText.text" msgid "tongue2" -msgstr "" +msgstr "kลฉ2" #. ๐Ÿ˜œ (U+1F61C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8393,7 +8394,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "" +msgstr "kลฉ3" #. ๐Ÿ˜ (U+1F61D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8402,7 +8403,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "" +msgstr "kลฉ4" #. ๐Ÿ˜ž (U+1F61E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8636,7 +8637,7 @@ "FACE_WITH_MEDICAL_MASK\n" "LngText.text" msgid "mask" -msgstr "" +msgstr "mรกscara" #. ๐Ÿ˜ธ (U+1F638), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8735,7 +8736,7 @@ "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok2" -msgstr "" +msgstr "ok2" #. ๐Ÿ™‡ (U+1F647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8825,7 +8826,7 @@ "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "" +msgstr "cohete" #. ๐Ÿš (U+1F681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8834,7 +8835,7 @@ "HELICOPTER\n" "LngText.text" msgid "helicopter" -msgstr "" +msgstr "helicรณptero" #. ๐Ÿš‚ (U+1F682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8861,7 +8862,7 @@ "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "" +msgstr "tren2" #. ๐Ÿš… (U+1F685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8870,7 +8871,7 @@ "HIGH-SPEED_TRAIN_WITH_BULLET_NOSE\n" "LngText.text" msgid "train3" -msgstr "" +msgstr "tren3" #. ๐Ÿš† (U+1F686), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8879,7 +8880,7 @@ "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "tren" #. ๐Ÿš‡ (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8888,7 +8889,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "metro" #. ๐Ÿšˆ (U+1F688), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8915,7 +8916,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "tranvรญa" #. ๐Ÿš‹ (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8924,7 +8925,7 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "tranvรญa2" #. ๐ŸšŒ (U+1F68C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8933,7 +8934,7 @@ "BUS\n" "LngText.text" msgid "bus" -msgstr "" +msgstr "bus" #. ๐Ÿš (U+1F68D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8942,7 +8943,7 @@ "ONCOMING_BUS\n" "LngText.text" msgid "bus2" -msgstr "" +msgstr "bus2" #. ๐ŸšŽ (U+1F68E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8951,7 +8952,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "trolebรบs" #. ๐Ÿš (U+1F68F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8969,7 +8970,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "minibรบs" #. ๐Ÿš‘ (U+1F691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9014,7 +9015,7 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "taxi" #. ๐Ÿš– (U+1F696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9023,7 +9024,7 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "taxi2" #. ๐Ÿš— (U+1F697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9032,7 +9033,7 @@ "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "" +msgstr "coche" #. ๐Ÿš˜ (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9041,7 +9042,7 @@ "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "coche2" #. ๐Ÿš™ (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9050,7 +9051,7 @@ "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "" +msgstr "coche3" #. ๐Ÿšš (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9059,7 +9060,7 @@ "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "camiรณn2" #. ๐Ÿš› (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9077,7 +9078,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "tractor" #. ๐Ÿš (U+1F69D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9086,7 +9087,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "monorriel" #. ๐Ÿšž (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9275,7 +9276,7 @@ "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "" +msgstr "bicicleta" #. ๐Ÿšณ (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9293,7 +9294,7 @@ "BICYCLIST\n" "LngText.text" msgid "bicyclist" -msgstr "" +msgstr "ciclista" #. ๐Ÿšต (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9302,7 +9303,7 @@ "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "ciclista2" #. ๐Ÿšถ (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9374,7 +9375,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "inodoro" #. ๐Ÿšพ (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9383,7 +9384,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "inodoro2" #. ๐Ÿšฟ (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9419,7 +9420,7 @@ "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "" +msgstr "pasaporte" #. ๐Ÿ›ƒ (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9428,7 +9429,7 @@ "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "" +msgstr "aduana" #. ๐Ÿ›„ (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9455,7 +9456,7 @@ "VULGAR_FRACTION_ONE_HALF\n" "LngText.text" msgid "1/2" -msgstr "" +msgstr "1/2" #. โ…“ (U+02153), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9464,7 +9465,7 @@ "VULGAR_FRACTION_ONE_THIRD\n" "LngText.text" msgid "1/3" -msgstr "" +msgstr "1/3" #. ยผ (U+000BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9473,7 +9474,7 @@ "VULGAR_FRACTION_ONE_QUARTER\n" "LngText.text" msgid "1/4" -msgstr "" +msgstr "1/4" #. โ…” (U+02154), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9482,7 +9483,7 @@ "VULGAR_FRACTION_TWO_THIRDS\n" "LngText.text" msgid "2/3" -msgstr "" +msgstr "2/3" #. ยพ (U+000BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9491,7 +9492,7 @@ "VULGAR_FRACTION_THREE_QUARTERS\n" "LngText.text" msgid "3/4" -msgstr "" +msgstr "3/4" #. โ…› (U+0215B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9500,7 +9501,7 @@ "VULGAR_FRACTION_ONE_EIGHTH\n" "LngText.text" msgid "1/8" -msgstr "" +msgstr "1/8" #. โ…œ (U+0215C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9509,7 +9510,7 @@ "VULGAR_FRACTION_THREE_EIGHTHS\n" "LngText.text" msgid "3/8" -msgstr "" +msgstr "3/8" #. โ… (U+0215D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9518,7 +9519,7 @@ "VULGAR_FRACTION_FIVE_EIGHTHS\n" "LngText.text" msgid "5/8" -msgstr "" +msgstr "5/8" #. โ…ž (U+0215E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9527,7 +9528,7 @@ "VULGAR_FRACTION_SEVEN_EIGHTHS\n" "LngText.text" msgid "7/8" -msgstr "" +msgstr "7/8" #. ยน (U+000B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9536,7 +9537,7 @@ "SUPERSCRIPT_ONE\n" "LngText.text" msgid "^1" -msgstr "" +msgstr "^1" #. ยฒ (U+000B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9545,7 +9546,7 @@ "SUPERSCRIPT_TWO\n" "LngText.text" msgid "^2" -msgstr "" +msgstr "^2" #. ยณ (U+000B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9554,7 +9555,7 @@ "SUPERSCRIPT_THREE\n" "LngText.text" msgid "^3" -msgstr "" +msgstr "^3" #. โด (U+02074), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9563,7 +9564,7 @@ "SUPERSCRIPT_FOUR\n" "LngText.text" msgid "^4" -msgstr "" +msgstr "^4" #. โต (U+02075), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9572,7 +9573,7 @@ "SUPERSCRIPT_FIVE\n" "LngText.text" msgid "^5" -msgstr "" +msgstr "^5" #. โถ (U+02076), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9581,7 +9582,7 @@ "SUPERSCRIPT_SIX\n" "LngText.text" msgid "^6" -msgstr "" +msgstr "^6" #. โท (U+02077), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9590,7 +9591,7 @@ "SUPERSCRIPT_SEVEN\n" "LngText.text" msgid "^7" -msgstr "" +msgstr "^7" #. โธ (U+02078), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9599,7 +9600,7 @@ "SUPERSCRIPT_EIGHT\n" "LngText.text" msgid "^8" -msgstr "" +msgstr "^8" #. โน (U+02079), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9608,7 +9609,7 @@ "SUPERSCRIPT_NINE\n" "LngText.text" msgid "^9" -msgstr "" +msgstr "^9" #. โฐ (U+02070), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9617,7 +9618,7 @@ "SUPERSCRIPT_ZERO\n" "LngText.text" msgid "^0" -msgstr "" +msgstr "^0" #. โบ (U+0207A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9626,7 +9627,7 @@ "SUPERSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "^+" -msgstr "" +msgstr "^+" #. โป (U+0207B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9644,7 +9645,7 @@ "SUPERSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "^=" -msgstr "" +msgstr "^=" #. โฝ (U+0207D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9671,7 +9672,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "" +msgstr "_1" #. โ‚‚ (U+02082), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9680,7 +9681,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "" +msgstr "_2" #. โ‚ƒ (U+02083), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9689,7 +9690,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "" +msgstr "_3" #. โ‚„ (U+02084), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9698,7 +9699,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "" +msgstr "_4" #. โ‚… (U+02085), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9707,7 +9708,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "" +msgstr "_5" #. โ‚† (U+02086), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9716,7 +9717,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "" +msgstr "_6" #. โ‚‡ (U+02087), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9725,7 +9726,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "" +msgstr "_7" #. โ‚ˆ (U+02088), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9734,7 +9735,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "" +msgstr "_8" #. โ‚‰ (U+02089), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9743,7 +9744,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "" +msgstr "_9" #. โ‚€ (U+02080), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9752,7 +9753,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "" +msgstr "_0" #. โ‚Š (U+0208A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9761,7 +9762,7 @@ "SUBSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "_+" -msgstr "" +msgstr "_+" #. โ‚‹ (U+0208B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9779,7 +9780,7 @@ "SUBSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "_=" -msgstr "" +msgstr "_=" #. โ‚ (U+0208D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9806,7 +9807,7 @@ "MODIFIER_LETTER_SMALL_A\n" "LngText.text" msgid "^a" -msgstr "" +msgstr "^a" #. แต‡ (U+01D47), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9815,7 +9816,7 @@ "MODIFIER_LETTER_SMALL_B\n" "LngText.text" msgid "^b" -msgstr "" +msgstr "^b" #. แถœ (U+01D9C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9824,7 +9825,7 @@ "MODIFIER_LETTER_SMALL_C\n" "LngText.text" msgid "^c" -msgstr "" +msgstr "^c" #. แตˆ (U+01D48), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9833,7 +9834,7 @@ "MODIFIER_LETTER_SMALL_D\n" "LngText.text" msgid "^d" -msgstr "" +msgstr "^d" #. แต‰ (U+01D49), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9842,7 +9843,7 @@ "MODIFIER_LETTER_SMALL_E\n" "LngText.text" msgid "^e" -msgstr "" +msgstr "^e" #. แถ  (U+01DA0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9851,7 +9852,7 @@ "MODIFIER_LETTER_SMALL_F\n" "LngText.text" msgid "^f" -msgstr "" +msgstr "^f" #. แต (U+01D4D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9860,7 +9861,7 @@ "MODIFIER_LETTER_SMALL_G\n" "LngText.text" msgid "^g" -msgstr "" +msgstr "^g" #. สฐ (U+002B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9869,7 +9870,7 @@ "MODIFIER_LETTER_SMALL_H\n" "LngText.text" msgid "^h" -msgstr "" +msgstr "^h" #. โฑ (U+02071), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9878,7 +9879,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_I\n" "LngText.text" msgid "^i" -msgstr "" +msgstr "^i" #. สฒ (U+002B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9887,7 +9888,7 @@ "MODIFIER_LETTER_SMALL_J\n" "LngText.text" msgid "^j" -msgstr "" +msgstr "^j" #. แต (U+01D4F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9896,7 +9897,7 @@ "MODIFIER_LETTER_SMALL_K\n" "LngText.text" msgid "^k" -msgstr "" +msgstr "^k" #. หก (U+002E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9905,7 +9906,7 @@ "MODIFIER_LETTER_SMALL_L\n" "LngText.text" msgid "^l" -msgstr "" +msgstr "^l" #. แต (U+01D50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9914,7 +9915,7 @@ "MODIFIER_LETTER_SMALL_M\n" "LngText.text" msgid "^m" -msgstr "" +msgstr "^m" #. โฟ (U+0207F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9923,7 +9924,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_N\n" "LngText.text" msgid "^n" -msgstr "" +msgstr "^n" #. แต’ (U+01D52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9932,7 +9933,7 @@ "MODIFIER_LETTER_SMALL_O\n" "LngText.text" msgid "^o" -msgstr "" +msgstr "^o" #. แต– (U+01D56), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9941,7 +9942,7 @@ "MODIFIER_LETTER_SMALL_P\n" "LngText.text" msgid "^p" -msgstr "" +msgstr "^p" #. สณ (U+002B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9950,7 +9951,7 @@ "MODIFIER_LETTER_SMALL_R\n" "LngText.text" msgid "^r" -msgstr "" +msgstr "^r" #. หข (U+002E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9959,7 +9960,7 @@ "MODIFIER_LETTER_SMALL_S\n" "LngText.text" msgid "^s" -msgstr "" +msgstr "^s" #. แต— (U+01D57), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9968,7 +9969,7 @@ "MODIFIER_LETTER_SMALL_T\n" "LngText.text" msgid "^t" -msgstr "" +msgstr "^t" #. แต˜ (U+01D58), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9977,7 +9978,7 @@ "MODIFIER_LETTER_SMALL_U\n" "LngText.text" msgid "^u" -msgstr "" +msgstr "^u" #. แต› (U+01D5B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9986,7 +9987,7 @@ "MODIFIER_LETTER_SMALL_V\n" "LngText.text" msgid "^v" -msgstr "" +msgstr "^v" #. สท (U+002B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9995,7 +9996,7 @@ "MODIFIER_LETTER_SMALL_W\n" "LngText.text" msgid "^w" -msgstr "" +msgstr "^w" #. หฃ (U+002E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10004,7 +10005,7 @@ "MODIFIER_LETTER_SMALL_X\n" "LngText.text" msgid "^x" -msgstr "" +msgstr "^x" #. สธ (U+002B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10013,7 +10014,7 @@ "MODIFIER_LETTER_SMALL_Y\n" "LngText.text" msgid "^y" -msgstr "" +msgstr "^y" #. แถป (U+01DBB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10022,7 +10023,7 @@ "MODIFIER_LETTER_SMALL_Z\n" "LngText.text" msgid "^z" -msgstr "" +msgstr "^z" #. แดฌ (U+01D2C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10031,7 +10032,7 @@ "MODIFIER_LETTER_CAPITAL_A\n" "LngText.text" msgid "^A" -msgstr "" +msgstr "^A" #. แดฎ (U+01D2E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10040,7 +10041,7 @@ "MODIFIER_LETTER_CAPITAL_B\n" "LngText.text" msgid "^B" -msgstr "" +msgstr "^B" #. แดฐ (U+01D30), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10049,7 +10050,7 @@ "MODIFIER_LETTER_CAPITAL_D\n" "LngText.text" msgid "^C" -msgstr "" +msgstr "^C" #. แดฑ (U+01D31), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10058,7 +10059,7 @@ "MODIFIER_LETTER_CAPITAL_E\n" "LngText.text" msgid "^E" -msgstr "" +msgstr "^E" #. แดณ (U+01D33), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10067,7 +10068,7 @@ "MODIFIER_LETTER_CAPITAL_G\n" "LngText.text" msgid "^G" -msgstr "" +msgstr "^G" #. แดด (U+01D34), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10076,7 +10077,7 @@ "MODIFIER_LETTER_CAPITAL_H\n" "LngText.text" msgid "^H" -msgstr "" +msgstr "^H" #. แดต (U+01D35), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10085,7 +10086,7 @@ "MODIFIER_LETTER_CAPITAL_I\n" "LngText.text" msgid "^I" -msgstr "" +msgstr "^I" #. แดถ (U+01D36), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10094,7 +10095,7 @@ "MODIFIER_LETTER_CAPITAL_J\n" "LngText.text" msgid "^J" -msgstr "" +msgstr "^J" #. แดท (U+01D37), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10103,7 +10104,7 @@ "MODIFIER_LETTER_CAPITAL_K\n" "LngText.text" msgid "^K" -msgstr "" +msgstr "^K" #. แดธ (U+01D38), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10112,7 +10113,7 @@ "MODIFIER_LETTER_CAPITAL_L\n" "LngText.text" msgid "^L" -msgstr "" +msgstr "^L" #. แดน (U+01D39), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10121,7 +10122,7 @@ "MODIFIER_LETTER_CAPITAL_M\n" "LngText.text" msgid "^M" -msgstr "" +msgstr "^M" #. แดบ (U+01D3A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10130,7 +10131,7 @@ "MODIFIER_LETTER_CAPITAL_N\n" "LngText.text" msgid "^N" -msgstr "" +msgstr "^N" #. แดผ (U+01D3C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10139,7 +10140,7 @@ "MODIFIER_LETTER_CAPITAL_O\n" "LngText.text" msgid "^O" -msgstr "" +msgstr "^O" #. แดพ (U+01D3E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10148,7 +10149,7 @@ "MODIFIER_LETTER_CAPITAL_P\n" "LngText.text" msgid "^P" -msgstr "" +msgstr "^P" #. แดฟ (U+01D3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10157,7 +10158,7 @@ "MODIFIER_LETTER_CAPITAL_R\n" "LngText.text" msgid "^R" -msgstr "" +msgstr "^R" #. แต€ (U+01D40), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10166,7 +10167,7 @@ "MODIFIER_LETTER_CAPITAL_T\n" "LngText.text" msgid "^T" -msgstr "" +msgstr "^T" #. แต (U+01D41), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10175,7 +10176,7 @@ "MODIFIER_LETTER_CAPITAL_U\n" "LngText.text" msgid "^U" -msgstr "" +msgstr "^U" #. โฑฝ (U+02C7D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10184,7 +10185,7 @@ "MODIFIER_LETTER_CAPITAL_V\n" "LngText.text" msgid "^V" -msgstr "" +msgstr "^V" #. แต‚ (U+01D42), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10193,7 +10194,7 @@ "MODIFIER_LETTER_CAPITAL_W\n" "LngText.text" msgid "^W" -msgstr "" +msgstr "^W" #. โ‚ (U+02090), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10202,7 +10203,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_A\n" "LngText.text" msgid "_a" -msgstr "" +msgstr "_a" #. โ‚‘ (U+02091), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10211,7 +10212,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_E\n" "LngText.text" msgid "_e" -msgstr "" +msgstr "_e" #. โ‚• (U+02095), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10220,7 +10221,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_H\n" "LngText.text" msgid "_h" -msgstr "" +msgstr "_h" #. แตข (U+01D62), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10229,7 +10230,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_I\n" "LngText.text" msgid "_i" -msgstr "" +msgstr "_i" #. โฑผ (U+02C7C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10238,7 +10239,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_J\n" "LngText.text" msgid "_j" -msgstr "" +msgstr "_j" #. โ‚– (U+02096), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10247,7 +10248,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_K\n" "LngText.text" msgid "_k" -msgstr "" +msgstr "_k" #. โ‚— (U+02097), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10256,7 +10257,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_L\n" "LngText.text" msgid "_l" -msgstr "" +msgstr "_l" #. โ‚˜ (U+02098), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10265,7 +10266,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_M\n" "LngText.text" msgid "_m" -msgstr "" +msgstr "_m" #. โ‚™ (U+02099), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10274,7 +10275,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_N\n" "LngText.text" msgid "_n" -msgstr "" +msgstr "_n" #. โ‚’ (U+02092), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10283,7 +10284,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_O\n" "LngText.text" msgid "_o" -msgstr "" +msgstr "_o" #. โ‚š (U+0209A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10292,7 +10293,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_P\n" "LngText.text" msgid "_p" -msgstr "" +msgstr "_p" #. แตฃ (U+01D63), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10301,7 +10302,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_R\n" "LngText.text" msgid "_r" -msgstr "" +msgstr "_r" #. โ‚› (U+0209B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10310,7 +10311,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_S\n" "LngText.text" msgid "_s" -msgstr "" +msgstr "_s" #. โ‚œ (U+0209C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10319,7 +10320,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_T\n" "LngText.text" msgid "_t" -msgstr "" +msgstr "_t" #. แตค (U+01D64), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10328,7 +10329,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_U\n" "LngText.text" msgid "_u" -msgstr "" +msgstr "_u" #. แตฅ (U+01D65), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10337,7 +10338,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_V\n" "LngText.text" msgid "_v" -msgstr "" +msgstr "_v" #. โ‚“ (U+02093), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10346,7 +10347,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_X\n" "LngText.text" msgid "_x" -msgstr "" +msgstr "_x" #. แต… (U+01D45), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10355,7 +10356,7 @@ "MODIFIER_LETTER_SMALL_ALPHA\n" "LngText.text" msgid "^alpha" -msgstr "" +msgstr "^alfa" #. แต (U+01D5D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10364,7 +10365,7 @@ "MODIFIER_LETTER_SMALL_BETA\n" "LngText.text" msgid "^beta" -msgstr "" +msgstr "^beta" #. แตž (U+01D5E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10373,7 +10374,7 @@ "MODIFIER_LETTER_SMALL_GREEK_GAMMA\n" "LngText.text" msgid "^gamma" -msgstr "" +msgstr "^gamma" #. แตŸ (U+01D5F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10382,7 +10383,7 @@ "MODIFIER_LETTER_SMALL_DELTA\n" "LngText.text" msgid "^delta" -msgstr "" +msgstr "^delta" #. แต‹ (U+01D4B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10391,7 +10392,7 @@ "MODIFIER_LETTER_SMALL_OPEN_E\n" "LngText.text" msgid "^epsilon" -msgstr "" +msgstr "^รฉpsilon" #. แถฟ (U+01DBF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10400,7 +10401,7 @@ "MODIFIER_LETTER_SMALL_THETA\n" "LngText.text" msgid "^theta" -msgstr "" +msgstr "^zeta" #. แถฅ (U+01DA5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10409,7 +10410,7 @@ "MODIFIER_LETTER_SMALL_IOTA\n" "LngText.text" msgid "^iota" -msgstr "" +msgstr "^iota" #. แถฒ (U+01DB2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10418,7 +10419,7 @@ "MODIFIER_LETTER_SMALL_PHI\n" "LngText.text" msgid "^Phi" -msgstr "" +msgstr "^Fi" #. แต  (U+01D60), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10427,7 +10428,7 @@ "MODIFIER_LETTER_SMALL_GREEK_PHI\n" "LngText.text" msgid "^phi" -msgstr "" +msgstr "^fi" #. แตก (U+01D61), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10436,7 +10437,7 @@ "MODIFIER_LETTER_SMALL_CHI\n" "LngText.text" msgid "^chi" -msgstr "" +msgstr "^ji" #. แตฆ (U+01D66), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10445,7 +10446,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_BETA\n" "LngText.text" msgid "_beta" -msgstr "" +msgstr "_beta" #. แตง (U+01D67), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10454,7 +10455,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "_gamma" -msgstr "" +msgstr "_gamma" #. แตจ (U+01D68), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10463,7 +10464,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n" "LngText.text" msgid "_rho" -msgstr "" +msgstr "_ro" #. แตฉ (U+01D69), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10472,7 +10473,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_PHI\n" "LngText.text" msgid "_phi" -msgstr "" +msgstr "_fi" #. แตช (U+01D6A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10481,4 +10482,4 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "" +msgstr "_ji" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/filter/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/filter/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/filter/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/filter/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-17 02:20+0000\n" +"PO-Revision-Date: 2015-10-09 01:37+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439778049.000000\n" +"X-POOTLE-MTIME: 1444354675.000000\n" #: impswfdialog.ui msgctxt "" @@ -1195,7 +1195,7 @@ "label\n" "string.text" msgid "Page Layout" -msgstr "" +msgstr "Ta'angahai Rogue" #: testxmlfilter.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/forms/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/forms/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/forms/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/forms/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:05+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893433.000000\n" +"X-POOTLE-MTIME: 1445360751.000000\n" #: strings.src msgctxt "" @@ -30,7 +30,7 @@ "RID_STR_IMPORT_GRAPHIC\n" "string.text" msgid "Insert Image" -msgstr "Moฤฉngue peteฤฉ Ta'anga" +msgstr "Moinge peteฤฉ Ta'anga" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1667,7 +1667,7 @@ "SC_OPCODE_SHEETS\n" "string.text" msgid "SHEETS" -msgstr "ROGUE" +msgstr "TOGUE KUร‰RA" #: core_resource.src msgctxt "" @@ -1689,6 +1689,15 @@ #: core_resource.src msgctxt "" +"core_resource.src\n" +"RID_STRLIST_FUNCTION_NAMES\n" +"SC_OPCODE_SHEET\n" +"string.text" +msgid "SHEET" +msgstr "TOGUE" + +#: core_resource.src +msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" "SC_OPCODE_RRI\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/fpicker/source/office.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/fpicker/source/office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/fpicker/source/office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/fpicker/source/office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-30 10:46+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893445.000000\n" +"X-POOTLE-MTIME: 1443610016.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -126,7 +126,7 @@ "STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION\n" "string.text" msgid "Please select a folder." -msgstr "Poravo peteฤฉ carpeta." +msgstr "Poravo peteฤฉ karpeta." #: iodlg.src msgctxt "" @@ -248,7 +248,7 @@ "STR_SVT_NEW_FOLDER\n" "string.text" msgid "Folder" -msgstr "Carpeta" +msgstr "Karpeta" #: iodlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/fpicker/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/fpicker/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/fpicker/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/fpicker/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-30 10:47+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893446.000000\n" +"X-POOTLE-MTIME: 1443610063.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -50,7 +50,7 @@ "tooltip_markup\n" "string.text" msgid "Create New Folder" -msgstr "Japo Carpeta Pyahu" +msgstr "Japo Karpeta Pyahu" #: explorerfiledialog.ui msgctxt "" @@ -59,7 +59,7 @@ "tooltip_text\n" "string.text" msgid "Create New Folder" -msgstr "Japo Carpeta Pyahu" +msgstr "Japo Karpeta Pyahu" #: explorerfiledialog.ui msgctxt "" @@ -122,7 +122,7 @@ "title\n" "string.text" msgid "Folder Name ?" -msgstr "Tรฉra Carpetagui?" +msgstr "Tรฉra Karpeta" #: foldernamedialog.ui msgctxt "" @@ -140,4 +140,4 @@ "label\n" "string.text" msgid "Create New Folder" -msgstr "Japo Carpeta Pyahu" +msgstr "Japo Karpeta Pyahu" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:37+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:06+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893463.000000\n" +"X-POOTLE-MTIME: 1445360763.000000\n" #: ActionTe.ulf msgctxt "" @@ -118,7 +118,7 @@ "OOO_ACTIONTEXT_13\n" "LngText.text" msgid "Creating folders" -msgstr "Ojejapo hรญna carpetas" +msgstr "Ojejapo hรญna karpeta kuรฉra" #: ActionTe.ulf msgctxt "" @@ -126,7 +126,7 @@ "OOO_ACTIONTEXT_14\n" "LngText.text" msgid "Folder: [1]" -msgstr "Carpeta: [1]" +msgstr "Karpeta: [1]" #: ActionTe.ulf msgctxt "" @@ -614,7 +614,7 @@ "OOO_ACTIONTEXT_75\n" "LngText.text" msgid "Removing folders" -msgstr "Oรฑenohแบฝ hรญna carpetas" +msgstr "Oรฑenohแบฝ hรญna karpeta kuรฉra" #: ActionTe.ulf msgctxt "" @@ -622,7 +622,7 @@ "OOO_ACTIONTEXT_76\n" "LngText.text" msgid "Folder: [1]" -msgstr "Carpeta: [1]" +msgstr "Karpeta: [1]" #: ActionTe.ulf msgctxt "" @@ -998,7 +998,7 @@ "OOO_CONTROL_6\n" "LngText.text" msgid "Browse to the destination folder." -msgstr "Tereho a la carpeta poravรญgui" +msgstr "Tereho a la karpeta poravรญgui" #: Control.ulf msgctxt "" @@ -1006,7 +1006,7 @@ "OOO_CONTROL_7\n" "LngText.text" msgid "{&MSSansBold8}Change Current Destination Folder" -msgstr "{&MSSansBold8}Moambue la carpeta poravรญgui ko'รฃgagua" +msgstr "{&MSSansBold8}Moambue la karpeta poravรญgui ko'รฃgagua" #: Control.ulf msgctxt "" @@ -1014,7 +1014,7 @@ "OOO_CONTROL_9\n" "LngText.text" msgid "Create new folder|" -msgstr "Japo carpeta pyahu|" +msgstr "Japo karpeta pyahu|" #: Control.ulf msgctxt "" @@ -1030,7 +1030,7 @@ "OOO_CONTROL_12\n" "LngText.text" msgid "&Folder name:" -msgstr "&Tรฉra carpetagui:" +msgstr "&Tรฉra karpeta:" #: Control.ulf msgctxt "" @@ -1470,7 +1470,7 @@ "OOO_CONTROL_89\n" "LngText.text" msgid "Click Next to install to this folder, or click Change to install to a different folder." -msgstr "Clic 'Oseguรญa' ojeinstala haguรฃ ko carpรฉtape, o clic Moambue ojeinstala haguรฃ peteฤฉ carpรฉtape oikoรฉva." +msgstr "Clic 'Oseguรญa' ojeinstala haguรฃ ko karpรฉtape, o clic Moambue ojeinstala haguรฃ peteฤฉ karpรฉtape oikoรฉva." #: Control.ulf msgctxt "" @@ -1478,7 +1478,7 @@ "OOO_CONTROL_90\n" "LngText.text" msgid "{&MSSansBold8}Destination Folder" -msgstr "{&MSSansBold8}Carpeta Poravรญgui" +msgstr "{&MSSansBold8}Karpeta Poravรญgui" #: Control.ulf msgctxt "" @@ -1606,7 +1606,7 @@ "OOO_CONTROL_114\n" "LngText.text" msgid "Browse to the destination folder." -msgstr "Heka carpeta poravรญgui." +msgstr "Heka karpeta poravรญgui." #: Control.ulf msgctxt "" @@ -1614,7 +1614,7 @@ "OOO_CONTROL_115\n" "LngText.text" msgid "{&MSSansBold8}Change Current Destination Folder" -msgstr "{&MSSansBold8}Moambue la carpeta poravรญgui ko'รฃgagua" +msgstr "{&MSSansBold8}Moambue la karpeta poravรญgui ko'รฃgagua" #: Control.ulf msgctxt "" @@ -1622,7 +1622,7 @@ "OOO_CONTROL_117\n" "LngText.text" msgid "Create New Folder|" -msgstr "Japo carpeta pyahu|" +msgstr "Japo karpeta pyahu|" #: Control.ulf msgctxt "" @@ -1638,7 +1638,7 @@ "OOO_CONTROL_120\n" "LngText.text" msgid "&Folder name:" -msgstr "&Tรฉra carpetagui:" +msgstr "&Tรฉra karpeta:" #: Control.ulf msgctxt "" @@ -2662,7 +2662,7 @@ "OOO_CONTROL_301\n" "LngText.text" msgid "The destination folder specified below does not contain a [DEFINEDPRODUCT] [DEFINEDVERSION] version." -msgstr "Carpeta poravรญgui oje'especifica va'ekue noguerekรณi mbaeve versiรณn de [DEFINEDPRODUCT] [DEFINEDVERSION]." +msgstr "Karpeta poravรญgui oje'especifica va'ekue noguerekรณi mbaeve versiรณn de [DEFINEDPRODUCT] [DEFINEDVERSION]." #: Control.ulf msgctxt "" @@ -2678,7 +2678,7 @@ "OOO_CONTROL_303\n" "LngText.text" msgid "The version specified in the folder below cannot be updated." -msgstr "Nikatรบi oรฑemoฤฉ al dรญa la versiรณn oje'especifia va'ekue en la carpeta oseguรญa." +msgstr "Nikatรบi oรฑemoฤฉ al dรญa la versiรณn oje'especifia va'ekue en la karpeta oseguรญa." #: Control.ulf msgctxt "" @@ -2686,7 +2686,7 @@ "OOO_CONTROL_304\n" "LngText.text" msgid "Check the destination folder." -msgstr "Ehecha jey la carpeta poravรญgui." +msgstr "Ehecha jey la karpeta poravรญgui." #: Control.ulf msgctxt "" @@ -2710,7 +2710,7 @@ "OOO_CONTROL_307\n" "LngText.text" msgid "To select a different folder, click " -msgstr "Eiporavo haguรฃ ambue carpeta, clic " +msgstr "Eiporavo haguรฃ ambue karpeta, clic " #: Control.ulf msgctxt "" @@ -2999,7 +2999,7 @@ "OOO_ERROR_27\n" "LngText.text" msgid "Please insert the disk: [2]" -msgstr "Moฤฉngue el disco: [2]" +msgstr "Moinge disco: [2]" #: Error.ulf msgctxt "" @@ -3103,7 +3103,7 @@ "OOO_ERROR_40\n" "LngText.text" msgid "Unable to write to the specified folder [2]." -msgstr "Nikatรบi ojehai carpeta especificรกdape [2]." +msgstr "Nikatรบi ojehai karpeta especifikรกdape [2]." #: Error.ulf msgctxt "" @@ -3167,7 +3167,7 @@ "OOO_ERROR_48\n" "LngText.text" msgid "The path [2] contains words that are not valid in folders." -msgstr "Tape jeikehรกgui [2] oguereko palabras no valรฉia tape peguarรฃ jeikehรกgui a carpetas." +msgstr "Tape jeikehรกgui [2] oguereko palabras no valรฉia tape peguarรฃ jeikehรกgui a karpeta kuรฉra." #: Error.ulf msgctxt "" @@ -3535,7 +3535,7 @@ "OOO_ERROR_94\n" "LngText.text" msgid "The folder [2] does not exist. Please enter a path to an existing folder." -msgstr "La carpeta [2] naipรณri. Ehai tape peteฤฉ carpรฉtagui oฤฉmaha." +msgstr "La carpeta [2] naipรณri. Ehai tape peteฤฉ karpรฉtagui oฤฉmaha." #: Error.ulf msgctxt "" @@ -3543,7 +3543,7 @@ "OOO_ERROR_95\n" "LngText.text" msgid "You have insufficient privileges to read this folder." -msgstr "Noguerekรณi privilegios necesarios moรฑe'แบฝ haguรฃ datos ko carpรฉtagui." +msgstr "Noguerekรณi privilegios necesarios moรฑe'แบฝ haguรฃ datos ko karpรฉtagui." #: Error.ulf msgctxt "" @@ -3551,7 +3551,7 @@ "OOO_ERROR_96\n" "LngText.text" msgid "A valid destination folder for the installation could not be determined." -msgstr "Nikatรบi ojedeterminรก peteฤฉ carpeta poravรญgui ovalรฉa instalaciรณn peguarรฃ." +msgstr "Nikatรบi ojedeterminรก peteฤฉ karpeta poravรญgui ovalรฉa instalaciรณn peguarรฃ." #: Error.ulf msgctxt "" @@ -3623,7 +3623,7 @@ "OOO_ERROR_105\n" "LngText.text" msgid "Could not create shortcut [2]. Verify that the destination folder exists and that you can access it." -msgstr "Nikatรบi ojejapo tape-mbyky [2]. Ehecha jey que la carpeta poravรญgui oฤฉha ha ikatu oguereko jeikeha ipype." +msgstr "Nikatรบi ojejapo tape-mbyky [2]. Ehecha jey que la karpeta poravรญgui oฤฉha ha ikatu oguereko jeikeha ipype." #: Error.ulf msgctxt "" @@ -4127,7 +4127,7 @@ "OOO_UITEXT_13\n" "LngText.text" msgid "Fldr|New Folder" -msgstr "Fldr|Carpeta Pyahu" +msgstr "Fldr|Karpeta Pyahu" #: UIText.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-09-16 15:32+0000\n" +"PO-Revision-Date: 2015-10-20 17:46+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417526.000000\n" +"X-POOTLE-MTIME: 1445363179.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -428,7 +428,7 @@ "Label\n" "value.text" msgid "Insert Chart" -msgstr "Moฤฉngue Grรกfico" +msgstr "Moinge Grรกfico" #: CalcCommands.xcu msgctxt "" @@ -500,7 +500,7 @@ "Label\n" "value.text" msgid "Euro Converter" -msgstr "Convertidor Eurogui" +msgstr "Convertidor de Euros" #: CalcCommands.xcu msgctxt "" @@ -716,7 +716,7 @@ "Label\n" "value.text" msgid "Enter References" -msgstr "Moฤฉngue Referencias" +msgstr "Moinge Referencia kuรฉra" #: CalcCommands.xcu msgctxt "" @@ -1418,7 +1418,7 @@ "ContextLabel\n" "value.text" msgid "~Sheets..." -msgstr "~Rogue kuรฉra..." +msgstr "~Togue kuรฉra..." #: CalcCommands.xcu msgctxt "" @@ -1598,7 +1598,7 @@ "Label\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: CalcCommands.xcu msgctxt "" @@ -1616,7 +1616,7 @@ "Label\n" "value.text" msgid "Insert Cells" -msgstr "Moฤฉngue Koty'i kuรฉra" +msgstr "Moinge Koty'i kuรฉra" #: CalcCommands.xcu msgctxt "" @@ -1634,7 +1634,7 @@ "Label\n" "value.text" msgid "Insert Object" -msgstr "Moฤฉngue Mba'e" +msgstr "Moinge Mba'e" #: CalcCommands.xcu msgctxt "" @@ -1877,7 +1877,7 @@ "Label\n" "value.text" msgid "Insert ~Row Break" -msgstr "Moฤฉngue Kytฤฉ ~Tysแปนigui" +msgstr "Moinge Kytฤฉ ~Tysแปนigui" #: CalcCommands.xcu msgctxt "" @@ -1913,7 +1913,7 @@ "Label\n" "value.text" msgid "Insert ~Column Break" -msgstr "Moฤฉngue Kytฤฉ ~Colรบmnagui" +msgstr "Moinge Kytฤฉ ~Colรบmnagui" #: CalcCommands.xcu msgctxt "" @@ -1994,7 +1994,7 @@ "Label\n" "value.text" msgid "Insert ~Cells..." -msgstr "Moฤฉngue ~Koty'i kuรฉra..." +msgstr "Moinge ~Koty'i kuรฉra..." #: CalcCommands.xcu msgctxt "" @@ -2012,7 +2012,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "Moฤฉngue ~Tysแปนi Yvate" +msgstr "Moinge ~Tysแปนi Yvate" #: CalcCommands.xcu msgctxt "" @@ -2030,7 +2030,7 @@ "Label\n" "value.text" msgid "Insert Co~lumns Left" -msgstr "Moฤฉngue Co~lumna kuรฉra Asรบpe" +msgstr "Moinge Co~lumna kuรฉra Asรบpe" #: CalcCommands.xcu msgctxt "" @@ -2048,7 +2048,7 @@ "Label\n" "value.text" msgid "Insert ~Sheet..." -msgstr "Moฤฉngue ~Togue..." +msgstr "Moinge ~Togue..." #: CalcCommands.xcu msgctxt "" @@ -2066,7 +2066,7 @@ "Label\n" "value.text" msgid "Insert Shee~t From File..." -msgstr "Moฤฉngue ~Rogue ร‘ongatuha guive..." +msgstr "Moinge ~Rogue ร‘ongatuha guive..." #: CalcCommands.xcu msgctxt "" @@ -2120,7 +2120,7 @@ "Label\n" "value.text" msgid "~Insert Name..." -msgstr "~Moฤฉngue Tรฉra..." +msgstr "~Moinge Tรฉra..." #: CalcCommands.xcu msgctxt "" @@ -2129,7 +2129,7 @@ "ContextLabel\n" "value.text" msgid "~Insert..." -msgstr "~Moฤฉngue..." +msgstr "~Moinge..." #: CalcCommands.xcu msgctxt "" @@ -2165,7 +2165,7 @@ "Label\n" "value.text" msgid "Insert Cells Down" -msgstr "Moฤฉngue Koty'i kuรฉra Yvรฝpe" +msgstr "Moinge Koty'i kuรฉra Yvรฝpe" #: CalcCommands.xcu msgctxt "" @@ -2174,7 +2174,7 @@ "Label\n" "value.text" msgid "Insert Cells Right" -msgstr "Moฤฉngue Koty'i kuรฉra Akatรบa" +msgstr "Moinge Koty'i kuรฉra Akatรบa" #: CalcCommands.xcu msgctxt "" @@ -2822,7 +2822,7 @@ "Label\n" "value.text" msgid "~Move/Copy Sheet..." -msgstr "Mongu'e/Kopia Togue" +msgstr "Mongu'e/Kopia Togue..." #: CalcCommands.xcu msgctxt "" @@ -3092,7 +3092,7 @@ "Label\n" "value.text" msgid "Add Decimal Place" -msgstr "Moฤฉngue Henda Decimal" +msgstr "Moinge Henda Decimal" #: CalcCommands.xcu msgctxt "" @@ -3128,7 +3128,7 @@ "Label\n" "value.text" msgid "Insert From Image Editor" -msgstr "Moฤฉngue Editor Ta'angรกgui Guive" +msgstr "Moinge Editor Ta'angรกgui Guive" #: CalcCommands.xcu msgctxt "" @@ -3227,7 +3227,7 @@ "Label\n" "value.text" msgid "Insert Sheet Name Field" -msgstr "Moฤฉngue ร‘u Tรฉragui Rogue" +msgstr "Moinge ร‘u Tรฉragui Rogue" #: CalcCommands.xcu msgctxt "" @@ -3236,7 +3236,7 @@ "Label\n" "value.text" msgid "Insert Document Title Field" -msgstr "Moฤฉngue ร‘u De Tรญtulo de Documento" +msgstr "Moinge ร‘u Tรญtulo de Documento" #: CalcCommands.xcu msgctxt "" @@ -3245,7 +3245,7 @@ "Label\n" "value.text" msgid "Insert Date Field (variable)" -msgstr "Moฤฉngue ร‘u Arangรฉgui (omoambueva)" +msgstr "Moinge ร‘u Arangรฉgui (omoambueva)" #: CalcCommands.xcu msgctxt "" @@ -3416,7 +3416,7 @@ "Label\n" "value.text" msgid "~Sheet" -msgstr "~Kuatia" +msgstr "~Togue" #: CalcCommands.xcu msgctxt "" @@ -3488,7 +3488,7 @@ "Label\n" "value.text" msgid "Insert Current Date" -msgstr "Moฤฉngue Arange Ko'รฃgagua" +msgstr "Moinge Arange Ko'รฃgagua" #: CalcCommands.xcu msgctxt "" @@ -3497,7 +3497,7 @@ "Label\n" "value.text" msgid "Insert Current Time" -msgstr "Moฤฉngue Aravo Ko'รฃgagua" +msgstr "Moinge Aravo Ko'รฃgagua" #: CalcCommands.xcu msgctxt "" @@ -3731,7 +3731,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: CalcWindowState.xcu msgctxt "" @@ -3740,7 +3740,7 @@ "UIName\n" "value.text" msgid "Insert Cell" -msgstr "Moฤฉngue Koty'i" +msgstr "Moinge Koty'i" #: CalcWindowState.xcu msgctxt "" @@ -4325,7 +4325,7 @@ "Label\n" "value.text" msgid "Insert Titles..." -msgstr "Moฤฉngue Tรญtulo kuรฉra" +msgstr "Moinge Tรญtulo kuรฉra..." #: ChartCommands.xcu msgctxt "" @@ -4343,7 +4343,7 @@ "Label\n" "value.text" msgid "Insert Legend" -msgstr "Moฤฉngue Subtรญtulos" +msgstr "Moinge Subtรญtulos" #: ChartCommands.xcu msgctxt "" @@ -4370,7 +4370,7 @@ "Label\n" "value.text" msgid "Insert/Delete Axes..." -msgstr "Moฤฉngue/Juka Ejes (axis)..." +msgstr "Moinge/Juka Ejes (axis)..." #: ChartCommands.xcu msgctxt "" @@ -4379,7 +4379,7 @@ "Label\n" "value.text" msgid "Insert Axis" -msgstr "Moฤฉngue Ejes (axis)" +msgstr "Moinge Ejes (axis)" #: ChartCommands.xcu msgctxt "" @@ -4406,7 +4406,7 @@ "Label\n" "value.text" msgid "Insert Axis Title" -msgstr "Moฤฉngue Tรญtulo de Ejes (axis)" +msgstr "Moinge Tรญtulo de Ejes (axis)" #: ChartCommands.xcu msgctxt "" @@ -4415,7 +4415,7 @@ "Label\n" "value.text" msgid "Insert Major Grid" -msgstr "Moฤฉngue Cuadrรญcula Tuichavรฉa" +msgstr "Moinge Cuadrรญcula Tuichavรฉa" #: ChartCommands.xcu msgctxt "" @@ -4442,7 +4442,7 @@ "Label\n" "value.text" msgid "Insert Minor Grid" -msgstr "Moฤฉngue Cuadrรญcula Michฤฉvรฉape" +msgstr "Moinge Cuadrรญcula Michฤฉvรฉape" #: ChartCommands.xcu msgctxt "" @@ -4469,7 +4469,7 @@ "Label\n" "value.text" msgid "Insert Tre~nd Line..." -msgstr "Moฤฉngue Lรญnea de Te~ndencia..." +msgstr "Moinge Lรญnea de Te~ndencia..." #: ChartCommands.xcu msgctxt "" @@ -4496,7 +4496,7 @@ "Label\n" "value.text" msgid "Insert Trend Line ~Equation" -msgstr "Moฤฉngue ~Ecuaciรณn de Lรญnea de Tendencia" +msgstr "Moinge ~Ecuaciรณn de Lรญnea de Tendencia" #: ChartCommands.xcu msgctxt "" @@ -4505,7 +4505,7 @@ "Label\n" "value.text" msgid "Insert Rยฒ and Trend Line Equation" -msgstr "Moฤฉngue Rยฒ ha Ecuaciรณn de Lรญnea de Tendencia" +msgstr "Moinge Rยฒ ha Ecuaciรณn de Lรญnea de Tendencia" #: ChartCommands.xcu msgctxt "" @@ -4514,7 +4514,7 @@ "Label\n" "value.text" msgid "Insert Rยฒ" -msgstr "Moฤฉngue Rยฒ" +msgstr "Moinge Rยฒ" #: ChartCommands.xcu msgctxt "" @@ -4550,7 +4550,7 @@ "Label\n" "value.text" msgid "Insert Mean ~Value Line" -msgstr "Moฤฉngue Lรญnea de ~Valor Mbyte" +msgstr "Moinge Lรญnea de ~Valor Mbyte" #: ChartCommands.xcu msgctxt "" @@ -4577,7 +4577,7 @@ "Label\n" "value.text" msgid "Insert X Error ~Bars..." -msgstr "Moฤฉngue Barras Jejavรฝgui ~X..." +msgstr "Moinge Barras Jejavรฝgui ~X..." #: ChartCommands.xcu msgctxt "" @@ -4604,7 +4604,7 @@ "Label\n" "value.text" msgid "Insert Y Error ~Bars..." -msgstr "Moฤฉngue ~Barras Jejavรฝgui Y..." +msgstr "Moinge ~Barras Jejavรฝgui Y..." #: ChartCommands.xcu msgctxt "" @@ -4631,7 +4631,7 @@ "Label\n" "value.text" msgid "Insert Data Labels" -msgstr "Moฤฉngue Etiquetas de Datos" +msgstr "Moinge Etiquetas de Datos" #: ChartCommands.xcu msgctxt "" @@ -4658,7 +4658,7 @@ "Label\n" "value.text" msgid "Insert Single Data Label" -msgstr "Moฤฉngue Etiquetas de Datos Sencillos" +msgstr "Moinge Etiquetas de Datos Sencillos" #: ChartCommands.xcu msgctxt "" @@ -5721,7 +5721,7 @@ "Label\n" "value.text" msgid "Folder..." -msgstr "Carpetaโ€ฆ" +msgstr "Karpetaโ€ฆ" #: DbuCommands.xcu msgctxt "" @@ -6135,7 +6135,7 @@ "Label\n" "value.text" msgid "Insert Glue Point" -msgstr "Moฤฉngue Kyta Mbojรกgui" +msgstr "Moinge Kyta Mbojรกgui" #: DrawImpressCommands.xcu msgctxt "" @@ -6279,7 +6279,7 @@ "Label\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: DrawImpressCommands.xcu msgctxt "" @@ -6486,7 +6486,7 @@ "Label\n" "value.text" msgid "Insert Slide Direct" -msgstr "Moฤฉngue Rogue Directo" +msgstr "Moinge Rogue Directo" #: DrawImpressCommands.xcu msgctxt "" @@ -6729,7 +6729,7 @@ "Label\n" "value.text" msgid "Format Page/Slide" -msgstr "" +msgstr "Formato Rogue/Diapositiva" #: DrawImpressCommands.xcu msgctxt "" @@ -6963,7 +6963,7 @@ "Label\n" "value.text" msgid "~Insert Snap Point/Line..." -msgstr "~Moฤฉngue Kyta/Lรญnea Pyhy..." +msgstr "~Moinge Kyta/Lรญnea Pyhy..." #: DrawImpressCommands.xcu msgctxt "" @@ -7755,7 +7755,7 @@ "Label\n" "value.text" msgid "~Original Size" -msgstr "" +msgstr "Tamaรฑo ~Original" #: DrawImpressCommands.xcu msgctxt "" @@ -7773,7 +7773,7 @@ "Label\n" "value.text" msgid "Co~mpress Image..." -msgstr "" +msgstr "Co~mprimir Imagenโ€ฆ" #: DrawImpressCommands.xcu msgctxt "" @@ -8232,7 +8232,7 @@ "Label\n" "value.text" msgid "Insert Row" -msgstr "Moฤฉngue Tysแปนi" +msgstr "Moinge Tysแปนi" #: DrawImpressCommands.xcu msgctxt "" @@ -8250,7 +8250,7 @@ "Label\n" "value.text" msgid "Insert Column" -msgstr "Moฤฉngue Columna" +msgstr "Moinge Columna" #: DrawImpressCommands.xcu msgctxt "" @@ -8502,7 +8502,7 @@ "Label\n" "value.text" msgid "Insert Slide" -msgstr "Moฤฉngue Diapositiva" +msgstr "Moinge Diapositiva" #: DrawImpressCommands.xcu msgctxt "" @@ -8736,7 +8736,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: DrawWindowState.xcu msgctxt "" @@ -12120,7 +12120,7 @@ "Name\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: GenericCategories.xcu msgctxt "" @@ -14624,7 +14624,7 @@ "Label\n" "value.text" msgid "Insert Points" -msgstr "Moฤฉngue Kyta kuรฉra" +msgstr "Moinge Kyta kuรฉra" #: GenericCommands.xcu msgctxt "" @@ -14876,7 +14876,7 @@ "Label\n" "value.text" msgid "Insert Controls" -msgstr "Moฤฉngue ร‘emaรฑa kuรฉra" +msgstr "Moinge ร‘emaรฑa kuรฉra" #: GenericCommands.xcu msgctxt "" @@ -15110,7 +15110,7 @@ "Label\n" "value.text" msgid "St~yles and Formatting" -msgstr "Est~ilo ha formato" +msgstr "Est~ilo ha Formato" #: GenericCommands.xcu msgctxt "" @@ -15587,7 +15587,7 @@ "Label\n" "value.text" msgid "Insert from Image Editor" -msgstr "Moฤฉngue Editor Ta'angรกgui guive" +msgstr "Moinge Editor Ta'angรกgui guive" #: GenericCommands.xcu msgctxt "" @@ -15830,7 +15830,7 @@ "Label\n" "value.text" msgid "Insert Mode" -msgstr "Moฤฉngue Modo" +msgstr "Moinge Modo" #: GenericCommands.xcu msgctxt "" @@ -15938,7 +15938,7 @@ "Label\n" "value.text" msgid "Insert Text Frame" -msgstr "Moฤฉngue Marco Moรฑe'แบฝrรฃgui" +msgstr "Moinge Marco Moรฑe'แบฝrรฃgui" #: GenericCommands.xcu msgctxt "" @@ -16226,7 +16226,7 @@ "Label\n" "value.text" msgid "Insert Labels" -msgstr "Moฤฉngue Etiqueta kuรฉra" +msgstr "Moinge Etiqueta kuรฉra" #: GenericCommands.xcu msgctxt "" @@ -16235,7 +16235,7 @@ "Label\n" "value.text" msgid "Insert business cards" -msgstr "Moฤฉngue Tarjeta de Negocio" +msgstr "Moinge Tarjeta de Negocio" #: GenericCommands.xcu msgctxt "" @@ -17693,7 +17693,7 @@ "Label\n" "value.text" msgid "Insert BASIC Source" -msgstr "Moฤฉngue Moรณgui Ou BASIC" +msgstr "Moinge Moรณgui Ou BASIC" #: GenericCommands.xcu msgctxt "" @@ -19160,7 +19160,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "~Moฤฉngue" +msgstr "~Moinge" #: GenericCommands.xcu msgctxt "" @@ -19745,7 +19745,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: ImpressWindowState.xcu msgctxt "" @@ -20078,7 +20078,7 @@ "Label\n" "value.text" msgid "Insert Text" -msgstr "Moฤฉngue Moรฑe'แบฝrรฃ" +msgstr "Moinge Moรฑe'แบฝrรฃ" #: MathCommands.xcu msgctxt "" @@ -20087,7 +20087,7 @@ "Label\n" "value.text" msgid "Insert Command" -msgstr "Moฤฉngue peteฤฉ Comando" +msgstr "Moinge peteฤฉ Comando" #: MathCommands.xcu msgctxt "" @@ -21140,7 +21140,7 @@ "Title\n" "value.text" msgid "Themes" -msgstr "" +msgstr "Temas" #: StartModuleCommands.xcu msgctxt "" @@ -21410,7 +21410,7 @@ "Label\n" "value.text" msgid "Insert Header" -msgstr "Moฤฉngue Omoakรฃ" +msgstr "Moinge Omoakรฃ" #: WriterCommands.xcu msgctxt "" @@ -21419,7 +21419,7 @@ "Label\n" "value.text" msgid "Insert Footer" -msgstr "Moฤฉngue Py roguรฉgui" +msgstr "Moinge Py roguรฉgui" #: WriterCommands.xcu msgctxt "" @@ -21518,7 +21518,7 @@ "Label\n" "value.text" msgid "Insert Endnote" -msgstr "Moฤฉngue Nota Paha" +msgstr "Moinge Nota Paha" #: WriterCommands.xcu msgctxt "" @@ -21797,7 +21797,7 @@ "Label\n" "value.text" msgid "Insert Paragraph" -msgstr "Moฤฉngue Pรกrrafo" +msgstr "Moinge Pรกrrafo" #: WriterCommands.xcu msgctxt "" @@ -21815,7 +21815,7 @@ "Label\n" "value.text" msgid "Insert Column Break" -msgstr "Moฤฉngue Kytฤฉ Colรบmnagui" +msgstr "Moinge Kytฤฉ Colรบmnagui" #: WriterCommands.xcu msgctxt "" @@ -21869,7 +21869,7 @@ "Label\n" "value.text" msgid "Insert Hyperlink" -msgstr "Moฤฉngue Hiperenlace" +msgstr "Moinge Hiperenlace" #: WriterCommands.xcu msgctxt "" @@ -21878,7 +21878,7 @@ "Label\n" "value.text" msgid "Insert Manual Row Break" -msgstr "Moฤฉngue Kytฤฉ Tysแปนigui Pรณpe Ojejapรณva" +msgstr "Moinge Kytฤฉ Tysแปนigui Pรณpe Ojejapรณva" #: WriterCommands.xcu msgctxt "" @@ -21887,7 +21887,7 @@ "Label\n" "value.text" msgid "Insert Other Objects" -msgstr "Moฤฉngue Ambue Mba'รฉkuรฉra" +msgstr "Moinge Ambue Mba'รฉkuรฉra" #: WriterCommands.xcu msgctxt "" @@ -21896,7 +21896,7 @@ "Label\n" "value.text" msgid "Insert Page Break" -msgstr "Moฤฉngue Togue ร‘ekytฤฉ" +msgstr "Moinge Togue ร‘ekytฤฉ" #: WriterCommands.xcu msgctxt "" @@ -21914,7 +21914,7 @@ "Label\n" "value.text" msgid "Insert ~Table..." -msgstr "Moฤฉngue ~Tabla..." +msgstr "Moinge ~Tabla..." #: WriterCommands.xcu msgctxt "" @@ -21923,7 +21923,7 @@ "Label\n" "value.text" msgid "Insert Frame Manually" -msgstr "Moฤฉngue Marco Pรณpe Ojejapรณva" +msgstr "Moinge Marco Pรณpe Ojejapรณva" #: WriterCommands.xcu msgctxt "" @@ -21950,7 +21950,7 @@ "Label\n" "value.text" msgid "Insert single-column frame manually" -msgstr "Emoฤฉngue marco peteฤฉgui columna'aรฑo pรณpe ojejapรณva" +msgstr "Emoinge marco peteฤฉgui columna'aรฑo pรณpe ojejapรณva" #: WriterCommands.xcu msgctxt "" @@ -22085,7 +22085,7 @@ "Label\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: WriterCommands.xcu msgctxt "" @@ -22094,7 +22094,7 @@ "Label\n" "value.text" msgid "Insert Object" -msgstr "Moฤฉngue Mba'e" +msgstr "Moinge Mba'e" #: WriterCommands.xcu msgctxt "" @@ -22103,7 +22103,7 @@ "Label\n" "value.text" msgid "Insert Field" -msgstr "Moฤฉngue ร‘u" +msgstr "Moinge ร‘u" #: WriterCommands.xcu msgctxt "" @@ -22184,7 +22184,7 @@ "Label\n" "value.text" msgid "Insert Footnote" -msgstr "Moฤฉngue Nota" +msgstr "Moinge Nota" #: WriterCommands.xcu msgctxt "" @@ -23003,7 +23003,7 @@ "Label\n" "value.text" msgid "Insert Rows Above" -msgstr "Moฤฉngue Tysแปนi Yvate" +msgstr "Moinge Tysแปนi Yvate" #: WriterCommands.xcu msgctxt "" @@ -23012,7 +23012,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Tysแปนi ~Hi'รกri" #: WriterCommands.xcu msgctxt "" @@ -23021,7 +23021,7 @@ "Label\n" "value.text" msgid "Insert Row Below" -msgstr "" +msgstr "Moinge Tysแปนi Vรฝpe" #: WriterCommands.xcu msgctxt "" @@ -23030,7 +23030,7 @@ "Label\n" "value.text" msgid "Insert Rows Below" -msgstr "" +msgstr "Moinge Tysแปนi Vรฝpe" #: WriterCommands.xcu msgctxt "" @@ -23057,7 +23057,7 @@ "Label\n" "value.text" msgid "Insert Columns Left" -msgstr "Moฤฉngue Columna kuรฉra Asรบpe" +msgstr "Moinge Columna kuรฉra Asรบpe" #: WriterCommands.xcu msgctxt "" @@ -23075,7 +23075,7 @@ "Label\n" "value.text" msgid "Insert Column Right" -msgstr "Moฤฉngue Koty'i kuรฉra Akatรบa" +msgstr "Moinge Koty'i kuรฉra Akatรบa" #: WriterCommands.xcu msgctxt "" @@ -23084,7 +23084,7 @@ "Label\n" "value.text" msgid "Insert Columns Right" -msgstr "Moฤฉngue Koty'i kuรฉra Akatรบa" +msgstr "Moinge Koty'i kuรฉra Akatรบa" #: WriterCommands.xcu msgctxt "" @@ -23534,7 +23534,7 @@ "Label\n" "value.text" msgid "Insert Unnumbered Entry" -msgstr "Moฤฉngue Jeikeha Papapy'แปนre" +msgstr "Moinge Jeikeha Papapy'แปนre" #: WriterCommands.xcu msgctxt "" @@ -24848,7 +24848,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "~Moฤฉngue" +msgstr "~Moinge" #: WriterCommands.xcu msgctxt "" @@ -25217,7 +25217,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: WriterFormWindowState.xcu msgctxt "" @@ -25226,7 +25226,7 @@ "UIName\n" "value.text" msgid "Insert Object" -msgstr "Moฤฉngue Mba'e" +msgstr "Moinge Mba'e" #: WriterFormWindowState.xcu msgctxt "" @@ -25559,7 +25559,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: WriterGlobalWindowState.xcu msgctxt "" @@ -25892,7 +25892,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: WriterReportWindowState.xcu msgctxt "" @@ -25901,7 +25901,7 @@ "UIName\n" "value.text" msgid "Insert Object" -msgstr "Moฤฉngue Mba'e" +msgstr "Moinge Mba'e" #: WriterReportWindowState.xcu msgctxt "" @@ -26243,7 +26243,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: WriterWebWindowState.xcu msgctxt "" @@ -26531,7 +26531,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: WriterWindowState.xcu msgctxt "" @@ -26891,7 +26891,7 @@ "UIName\n" "value.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: XFormsWindowState.xcu msgctxt "" @@ -26900,7 +26900,7 @@ "UIName\n" "value.text" msgid "Insert Object" -msgstr "Moฤฉngue Mba'e" +msgstr "Moinge Mba'e" #: XFormsWindowState.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-03 19:57+0000\n" +"PO-Revision-Date: 2015-10-20 17:22+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441310266.000000\n" +"X-POOTLE-MTIME: 1445361755.000000\n" #: Addons.xcu msgctxt "" @@ -23,7 +23,7 @@ "Title\n" "value.text" msgid "FORWARD 10" -msgstr "" +msgstr "TENONDร‰PE 10" #: Addons.xcu msgctxt "" @@ -32,7 +32,7 @@ "Title\n" "value.text" msgid "BACK 10" -msgstr "" +msgstr "TAPYKUร‰PE 10" #: Addons.xcu msgctxt "" @@ -86,10 +86,9 @@ "Title\n" "value.text" msgid "CLEARSCREEN" -msgstr "" +msgstr "MOPOTฤจPANTALLA" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" @@ -268,7 +267,7 @@ "Title\n" "value.text" msgid "Document ~Converter..." -msgstr "Convertidor ~Documentogui" +msgstr "~Convertidor de Documentos..." #: Common.xcu msgctxt "" @@ -277,7 +276,7 @@ "Title\n" "value.text" msgid "~Euro Converter..." -msgstr "~Convertidor Eurogui" +msgstr "~Convertidor de Euros..." #: Common.xcu msgctxt "" @@ -1177,7 +1176,7 @@ "STR_OLE_OBJECTS_DESC\n" "value.text" msgid "Object Linking and Embedding (OLE) is a technology that allows embedding and linking to documents and other objects.The current presentation contains OLE objects." -msgstr "Link ha Oรฑemoฤฉngue va'ekue mba'รฉkuรฉragui (OLE) ha'e peteฤฉ tecnologรญa ikatu omoฤฉngue ha mbojoaju a documentos ha ambue mba'รฉkuรฉra. Ojechauka ko'รฃgagua oguereko mba'รฉkuรฉra OLE." +msgstr "Link ha Oรฑemoinge va'ekue mba'รฉkuรฉragui (OLE) ha'e peteฤฉ tecnologรญa ikatu omoinge ha mbojoaju a documentos ha ambue mba'รฉkuรฉra. Ojechauka ko'รฃgagua oguereko mba'รฉkuรฉra OLE." #: PresentationMinimizer.xcu msgctxt "" @@ -1186,7 +1185,7 @@ "STR_NO_OLE_OBJECTS_DESC\n" "value.text" msgid "Object Linking and Embedding (OLE) is a technology that allows embedding and linking to documents and other objects.The current presentation contains no OLE objects." -msgstr "Link ha Oรฑemoฤฉngue va'ekue mba'รฉkuรฉragui (OLE) ha'e peteฤฉ tecnologรญa ikatu omoฤฉngue ha mbojoaju a documentos ha ambue mba'รฉkuรฉra. Ojechauka ko'รฃgagua noguerekรณi mba'รฉkuรฉra OLE." +msgstr "Link ha Oรฑemoinge va'ekue mba'รฉkuรฉragui (OLE) ha'e peteฤฉ tecnologรญa ikatu omoinge ha mbojoaju a documentos ha ambue mba'รฉkuรฉra. Ojechauka ko'รฃgagua noguerekรณi mba'รฉkuรฉra OLE." #: PresentationMinimizer.xcu msgctxt "" @@ -6568,7 +6567,7 @@ "ShortName\n" "value.text" msgid "DateSubmit" -msgstr "ArangeOรฑemoฤฉngueva'ekue" +msgstr "ArangeOรฑemoingeva'ekue" #: TableWizard.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 00:56+0000\n" +"PO-Revision-Date: 2015-10-09 01:40+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441068967.000000\n" +"X-POOTLE-MTIME: 1444354815.000000\n" #: strings.src msgctxt "" @@ -22,7 +22,7 @@ "RID_STR_DETAIL\n" "string.text" msgid "Detail" -msgstr "" +msgstr "Detalle" #: strings.src msgctxt "" @@ -38,7 +38,7 @@ "RID_STR_PAGE_FOOTER\n" "string.text" msgid "Page Footer" -msgstr "Py roguรฉgui" +msgstr "Py Roguรฉgui" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/dlg.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/ui/dlg.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/dlg.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/ui/dlg.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 00:56+0000\n" +"PO-Revision-Date: 2015-10-20 17:46+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441068977.000000\n" +"X-POOTLE-MTIME: 1445363186.000000\n" #: CondFormat.src msgctxt "" @@ -90,7 +90,7 @@ "SID_ADD_CONTROL_PAIR\n" "toolboxitem.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: CondFormat.src msgctxt "" @@ -146,7 +146,7 @@ "STR_RPT_QUARTER\n" "string.text" msgid "Quarter" -msgstr "" +msgstr "Trimestre" #: GroupsSorting.src msgctxt "" @@ -266,7 +266,7 @@ "RID_STR_GROUPS\n" "string.text" msgid "Groups" -msgstr "" +msgstr "Aty kuรฉra" #: Navigator.src msgctxt "" @@ -284,7 +284,7 @@ "SID_PAGEHEADERFOOTER\n" "menuitem.text" msgid "Page Header/Footer..." -msgstr "Omoakรฃ ha Py roguรฉgui..." +msgstr "Omoakรฃ ha Py Roguรฉgui..." #: Navigator.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/inspection.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/ui/inspection.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/inspection.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/ui/inspection.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 00:57+0000\n" +"PO-Revision-Date: 2015-10-09 01:41+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069034.000000\n" +"X-POOTLE-MTIME: 1444354864.000000\n" #: inspection.src msgctxt "" @@ -39,7 +39,7 @@ "1\n" "string.text" msgid "No" -msgstr "" +msgstr "Nahรกniri" #: inspection.src msgctxt "" @@ -117,7 +117,7 @@ "1\n" "string.text" msgid "No" -msgstr "" +msgstr "Nahรกniri" #: inspection.src msgctxt "" @@ -223,7 +223,7 @@ "RID_STR_VISIBLE\n" "string.text" msgid "Visible" -msgstr "" +msgstr "Jehecha" #: inspection.src msgctxt "" @@ -240,7 +240,7 @@ "1\n" "string.text" msgid "Per Page" -msgstr "" +msgstr "Rogue rehe" #: inspection.src msgctxt "" @@ -301,7 +301,7 @@ "1\n" "string.text" msgid "All Pages" -msgstr "" +msgstr "Opavave Rogue" #: inspection.src msgctxt "" @@ -376,7 +376,7 @@ "RID_STR_HEIGHT\n" "string.text" msgid "Height" -msgstr "" +msgstr "Yvatekue" #: inspection.src msgctxt "" @@ -416,7 +416,7 @@ "RID_STR_FONT\n" "string.text" msgid "Font" -msgstr "" +msgstr "Letra Hรกicha" #: inspection.src msgctxt "" @@ -464,7 +464,7 @@ "RID_STR_SCOPE_GROUP\n" "string.text" msgid "Group: %1" -msgstr "" +msgstr "Aty: %1" #: inspection.src msgctxt "" @@ -640,7 +640,7 @@ "1\n" "string.text" msgid "Left" -msgstr "" +msgstr "Asu" #: inspection.src msgctxt "" @@ -649,7 +649,7 @@ "2\n" "string.text" msgid "Right" -msgstr "" +msgstr "Akatรบa" #: inspection.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/report.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/ui/report.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/source/ui/report.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/source/ui/report.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-01 00:58+0000\n" +"PO-Revision-Date: 2015-10-20 17:47+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069109.000000\n" +"X-POOTLE-MTIME: 1445363233.000000\n" #: report.src msgctxt "" @@ -62,7 +62,7 @@ "RID_STR_PROPTITLE_FIXEDLINE\n" "string.text" msgid "Line" -msgstr "" +msgstr "Lรญnea" #: report.src msgctxt "" @@ -70,7 +70,7 @@ "RID_STR_PROPTITLE_FORMATTED\n" "string.text" msgid "Formatted Field" -msgstr "" +msgstr "ร‘u Formateado" #: report.src msgctxt "" @@ -110,7 +110,7 @@ "RID_STR_PROPTITLE_GROUP\n" "string.text" msgid "Group" -msgstr "" +msgstr "Aty" #: report.src msgctxt "" @@ -432,7 +432,7 @@ "SID_ARRANGEMENU\n" "menuitem.text" msgid "~Arrange" -msgstr "" +msgstr "~Myatyrรต" #: report.src msgctxt "" @@ -597,7 +597,7 @@ "RID_STR_IMPORT_GRAPHIC\n" "string.text" msgid "Insert graphics" -msgstr "Moฤฉngue ta'anga kuรฉra" +msgstr "Moinge ta'anga kuรฉra" #: report.src msgctxt "" @@ -653,7 +653,7 @@ "RID_STR_PAGEHEADERFOOTER_INSERT\n" "string.text" msgid "Insert Page Header/Footer" -msgstr "Moฤฉngue Omoakรฃ Togue/Py roguรฉgui" +msgstr "Moinge Omoakรฃ Togue/Py roguรฉgui" #: report.src msgctxt "" @@ -669,7 +669,7 @@ "RID_STR_COLUMNHEADERFOOTER_INSERT\n" "string.text" msgid "Insert Column Header/Footer" -msgstr "Moฤฉngue Columna Omoakรฃ/Py roguรฉgui" +msgstr "Moinge Columna Omoakรฃ/Py roguรฉgui" #: report.src msgctxt "" @@ -685,7 +685,7 @@ "RID_STR_REPORTHEADERFOOTER_INSERT\n" "string.text" msgid "Insert Report Header/Footer" -msgstr "Moฤฉngue Omoakรฃ/Py Roguรฉgui de Informe" +msgstr "Moinge Omoakรฃ/Py Roguรฉgui de Informe" #: report.src msgctxt "" @@ -725,7 +725,7 @@ "RID_STR_DETAIL\n" "string.text" msgid "Detail" -msgstr "" +msgstr "Detalle" #: report.src msgctxt "" @@ -741,7 +741,7 @@ "RID_STR_PAGE_FOOTER\n" "string.text" msgid "Page Footer" -msgstr "Py roguรฉgui" +msgstr "Py Roguรฉgui" #: report.src msgctxt "" @@ -765,4 +765,4 @@ "RID_STR_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/reportdesign/uiconfig/dbreport/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/reportdesign/uiconfig/dbreport/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-17 02:10+0000\n" +"PO-Revision-Date: 2015-10-09 01:41+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439777451.000000\n" +"X-POOTLE-MTIME: 1444354902.000000\n" #: backgrounddialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Font" -msgstr "" +msgstr "Letra Hรกicha" #: chardialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "Font Effects" -msgstr "" +msgstr "Efectos Tipogrรกficos" #: chardialog.ui msgctxt "" @@ -131,7 +131,7 @@ "0\n" "stringlist.text" msgid "between" -msgstr "" +msgstr "mbytepe" #: conditionwin.ui msgctxt "" @@ -212,7 +212,7 @@ "label\n" "string.text" msgid "and" -msgstr "" +msgstr "ha" #: conditionwin.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "+" -msgstr "" +msgstr "+" #: datetimedialog.ui msgctxt "" @@ -401,7 +401,7 @@ "label\n" "string.text" msgid "Groups" -msgstr "" +msgstr "Aty kuรฉra" #: floatingsort.ui msgctxt "" @@ -500,7 +500,7 @@ "0\n" "stringlist.text" msgid "No" -msgstr "" +msgstr "Nahรกniri" #: floatingsort.ui msgctxt "" @@ -581,7 +581,7 @@ "label\n" "string.text" msgid "Page" -msgstr "" +msgstr "Kuatia Rogue" #: pagedialog.ui msgctxt "" @@ -599,7 +599,7 @@ "title\n" "string.text" msgid "Page Numbers" -msgstr "" +msgstr "Papapy kuรฉra Rogue" #: pagenumberdialog.ui msgctxt "" @@ -662,7 +662,7 @@ "0\n" "stringlist.text" msgid "Left" -msgstr "" +msgstr "Asu" #: pagenumberdialog.ui msgctxt "" @@ -680,7 +680,7 @@ "2\n" "stringlist.text" msgid "Right" -msgstr "" +msgstr "Akatรบa" #: pagenumberdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/formdlg.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/formdlg.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/formdlg.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/formdlg.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:47+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893592.000000\n" +"X-POOTLE-MTIME: 1445363243.000000\n" #: dwfunctr.src msgctxt "" @@ -140,7 +140,7 @@ "IMB_INSERT\n" "imagebutton.quickhelptext" msgid "Insert Function into calculation sheet" -msgstr "Moฤฉngue mba'apo kรกlkulo roguรฉpe" +msgstr "Moinge mba'apo kรกlkulo roguรฉpe" #: dwfunctr.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/miscdlgs.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/miscdlgs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/miscdlgs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/miscdlgs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:48+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893593.000000\n" +"X-POOTLE-MTIME: 1445363307.000000\n" #: acredlin.src msgctxt "" @@ -22,7 +22,7 @@ "STR_CHG_INSERT_COLS\n" "string.text" msgid "Column inserted" -msgstr "Columna ojemoฤฉngue va'ekue" +msgstr "Columna ojemoinge va'ekue" #: acredlin.src msgctxt "" @@ -30,7 +30,7 @@ "STR_CHG_INSERT_ROWS\n" "string.text" msgid "Row inserted " -msgstr "Tysแปนi ojemoฤฉngue va'ekue " +msgstr "Tysแปนi ojemoinge va'ekue " #: acredlin.src msgctxt "" @@ -38,7 +38,7 @@ "STR_CHG_INSERT_TABS\n" "string.text" msgid "Sheet inserted " -msgstr "Togue ojemoฤฉngue va'ekue " +msgstr "Togue ojemoinge va'ekue " #: acredlin.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/navipi.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/navipi.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/navipi.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/navipi.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-17 02:21+0000\n" +"PO-Revision-Date: 2015-10-20 17:49+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439778069.000000\n" +"X-POOTLE-MTIME: 1445363363.000000\n" #: navipi.src msgctxt "" @@ -218,7 +218,7 @@ "SCSTR_CONTENT_TABLE\n" "string.text" msgid "Sheets" -msgstr "Rogue kuรฉra" +msgstr "Togue kuรฉra" #: navipi.src msgctxt "" @@ -283,7 +283,7 @@ "RID_DROPMODE_URL\n" "menuitem.text" msgid "Insert as Hyperlink" -msgstr "Moฤฉngue hiperenlaceicha" +msgstr "Moinge hiperenlace icha" #: navipi.src msgctxt "" @@ -292,7 +292,7 @@ "RID_DROPMODE_LINK\n" "menuitem.text" msgid "Insert as Link" -msgstr "Moฤฉngue Linkcha" +msgstr "Moinge Linkcha" #: navipi.src msgctxt "" @@ -301,7 +301,7 @@ "RID_DROPMODE_COPY\n" "menuitem.text" msgid "Insert as Copy" -msgstr "Moฤฉngue Kรณpiaicha" +msgstr "Moinge Kรณpiaicha" #: navipi.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-09-07 00:23+0000\n" +"PO-Revision-Date: 2015-10-20 17:56+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441585384.000000\n" +"X-POOTLE-MTIME: 1445363801.000000\n" #: condformatdlg.src msgctxt "" @@ -954,7 +954,7 @@ "STR_UNDO_INSERTCELLS\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: globstr.src msgctxt "" @@ -981,7 +981,7 @@ "STR_UNDO_PASTE\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: globstr.src msgctxt "" @@ -1143,7 +1143,7 @@ "STR_UNDO_INSCOLBREAK\n" "string.text" msgid "Insert Column Break" -msgstr "Moฤฉngue ร‘ekytฤฉ Columnagui" +msgstr "Moinge ร‘ekytฤฉ Columnagui" #: globstr.src msgctxt "" @@ -1161,7 +1161,7 @@ "STR_UNDO_INSROWBREAK\n" "string.text" msgid "Insert Row Break" -msgstr "Moฤฉngue ร‘ekytฤฉ Tysแปนigui" +msgstr "Moinge ร‘ekytฤฉ Tysแปนigui" #: globstr.src msgctxt "" @@ -1539,7 +1539,7 @@ "STR_UNDO_INSERTAREALINK\n" "string.text" msgid "Insert Link" -msgstr "Moฤฉngue peteฤฉ Link" +msgstr "Moinge peteฤฉ Link" #: globstr.src msgctxt "" @@ -1548,7 +1548,7 @@ "STR_UNDO_ENTERMATRIX\n" "string.text" msgid "Insert Array Formula" -msgstr "Moฤฉngue Fรณrmula Matriz" +msgstr "Moinge Fรณrmula Matriz" #: globstr.src msgctxt "" @@ -1557,7 +1557,7 @@ "STR_UNDO_INSERTNOTE\n" "string.text" msgid "Insert Comment" -msgstr "Moฤฉngue Oje'รฉva" +msgstr "Moinge Oje'รฉva" #: globstr.src msgctxt "" @@ -1737,7 +1737,7 @@ "STR_MSSG_DOSUBTOTALS_2\n" "string.text" msgid "Unable to insert rows" -msgstr "Nikatรบi moฤฉngue tysแปนi kuรฉra" +msgstr "Nikatรบi moinge tysแปนi kuรฉra" #: globstr.src msgctxt "" @@ -1831,7 +1831,7 @@ "STR_MSSG_PASTEFROMCLIP_0\n" "string.text" msgid "Insert into multiple selection not possible" -msgstr "Nikatรบi moฤฉngue en ojeporavo hetaichagua" +msgstr "Nikatรบi moinge en ojeporavo hetaichagua" #: globstr.src msgctxt "" @@ -1858,7 +1858,7 @@ "STR_MSSG_INSERTCELLS_0\n" "string.text" msgid "Inserting into merged ranges not possible" -msgstr "Nikatรบi ojemoฤฉngue en intervalos ojembojoaju va'ekue" +msgstr "Nikatรบi ojemoinge en intervalos ojembojoaju va'ekue" #: globstr.src msgctxt "" @@ -1909,7 +1909,7 @@ msgstr "" "\n" "\n" -"ยฟRemoฤฉnguesรฉpa el resultado koty'i variablepe?" +"ยฟRemoingesรฉpa el resultado koty'i variablepe?" #: globstr.src msgctxt "" @@ -1931,7 +1931,7 @@ "STR_MSSG_SOLVE_3\n" "string.text" msgid "Insert the closest value (" -msgstr "ยฟRemoฤฉnguese el valor hiamiแบฝa (" +msgstr "ยฟRemoingese el valor hiamiแบฝa (" #: globstr.src msgctxt "" @@ -3392,7 +3392,7 @@ "STR_UNDO_INSERT_TAB\n" "string.text" msgid "Insert Sheet" -msgstr "Moฤฉngue Togue" +msgstr "Moinge Togue" #: globstr.src msgctxt "" @@ -3608,7 +3608,7 @@ "STR_CONSOLIDATE_ERR1\n" "string.text" msgid "References can not be inserted above the source data." -msgstr "Nikatรบi ojemoฤฉngue referencias dato kuรฉra moรณgui ou รกri." +msgstr "Nikatรบi ojemoinge referencias dato kuรฉra moรณgui ou รกri." #: globstr.src msgctxt "" @@ -3998,7 +3998,7 @@ "STR_TABINSERT_ERROR\n" "string.text" msgid "The table could not be inserted." -msgstr "Nikatรบi ojemoฤฉngue la tabla." +msgstr "Nikatรบi ojemoinge la tabla." #: globstr.src msgctxt "" @@ -4038,7 +4038,7 @@ "Do you want to insert it anyway?" msgstr "" "Orekรณva Kuatia-jokohรกgui tuichave รกrea ojeporavo va'ekue.\n" -"ยฟRemoฤฉnguesรฉpa katuรฉte rei?" +"ยฟRemoingesรฉpa katuรฉte rei?" #: globstr.src msgctxt "" @@ -4312,7 +4312,7 @@ "STR_ERR_INSERTOBJ\n" "string.text" msgid "The object could not be inserted." -msgstr "Nikatรบi ojemoฤฉngue mba'e." +msgstr "Nikatรบi ojemoinge mba'e." #: globstr.src msgctxt "" @@ -4339,7 +4339,7 @@ "STR_CHANGED_INSERT\n" "string.text" msgid "#1 inserted" -msgstr "#1 ojemoฤฉngue va'ekue" +msgstr "#1 ojemoinge va'ekue" #: globstr.src msgctxt "" @@ -4890,7 +4890,7 @@ "STR_UNDO_INSERT_CURRENT_DATE\n" "string.text" msgid "Insert Current Date" -msgstr "Moฤฉngue Arange Ko'รฃgagua" +msgstr "Moinge Arange Ko'รฃgagua" #: globstr.src msgctxt "" @@ -4899,7 +4899,7 @@ "STR_UNDO_INSERT_CURRENT_TIME\n" "string.text" msgid "Insert Current Time" -msgstr "Moฤฉngue Aravo Ko'รฃgagua" +msgstr "Moinge Aravo Ko'รฃgagua" #: globstr.src msgctxt "" @@ -5418,7 +5418,7 @@ "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE\n" "string.text" msgid "You cannot insert or delete cells when the affected range intersects with pivot table." -msgstr "Nikatรบi moฤฉngue o jukase koty'i kuรฉra รกrea afectada jave ohasa peteฤฉ tabla kyre'แปน." +msgstr "Nikatรบi moinge o jukase koty'i kuรฉra รกrea afectada jave ohasa peteฤฉ tabla kyre'แปน." #: globstr.src msgctxt "" @@ -5720,7 +5720,7 @@ "FID_INS_ROW\n" "menuitem.text" msgid "~Insert Rows Above" -msgstr "~Moฤฉngue Tysแปนi Yvate" +msgstr "~Moinge Tysแปนi Yvate" #: hdrcont.src msgctxt "" @@ -5792,7 +5792,7 @@ "FID_INS_COLUMN\n" "menuitem.text" msgid "~Insert Columns Left" -msgstr "~Moฤฉngue Columna kuรฉra Asรบpe" +msgstr "~Moinge Columna kuรฉra Asรบpe" #: hdrcont.src msgctxt "" @@ -5944,7 +5944,7 @@ "FID_INS_CELL\n" "menuitem.text" msgid "~Insert..." -msgstr "~Moฤฉngue..." +msgstr "~Moinge..." #: popup.src msgctxt "" @@ -5989,7 +5989,7 @@ "SID_INSERT_POSTIT\n" "menuitem.text" msgid "Insert Co~mment" -msgstr "Moฤฉngue ~Oje'รฉva" +msgstr "Moinge ~Oje'รฉva" #: popup.src msgctxt "" @@ -6051,7 +6051,7 @@ "FID_INS_TABLE\n" "menuitem.text" msgid "~Insert Sheet..." -msgstr "~Moฤฉngue Togue..." +msgstr "~Moinge Togue..." #: popup.src msgctxt "" @@ -6300,7 +6300,7 @@ "RID_MN_INSERT_FIELDS\n" "menuitem.text" msgid "Insert Fields" -msgstr "Moฤฉngue ร‘u'kuรฉra" +msgstr "Moinge ร‘u'kuรฉra" #: popup.src msgctxt "" @@ -6397,7 +6397,7 @@ "FID_INS_ROWBRK\n" "menuitem.text" msgid "Insert ~Row Break" -msgstr "Moฤฉngue ร‘ekytฤฉ ~Tysแปนigui" +msgstr "Moinge ร‘ekytฤฉ ~Tysแปนigui" #: popup.src msgctxt "" @@ -6406,7 +6406,7 @@ "FID_INS_COLBRK\n" "menuitem.text" msgid "Insert ~Column Break" -msgstr "Moฤฉngue ร‘ekytฤฉ ~Columnagui" +msgstr "Moinge ร‘ekytฤฉ ~Columnagui" #: popup.src msgctxt "" @@ -22944,7 +22944,7 @@ "9\n" "string.text" msgid "The text to be inserted." -msgstr "Moรฑe'แบฝrรฃ ojemoฤฉnguetaha." +msgstr "Moรฑe'แบฝrรฃ ojemoingetaha." #: scfuncs.src msgctxt "" @@ -24681,7 +24681,7 @@ "SCSTR_INSTABLE\n" "string.text" msgid "Insert Sheet" -msgstr "Moฤฉngue Togue" +msgstr "Moinge Togue" #: scstring.src msgctxt "" @@ -24729,7 +24729,7 @@ "STR_INSERTGRAPHIC\n" "string.text" msgid "Insert Image" -msgstr "Moฤฉngue Peteฤฉ Ta'anga" +msgstr "Moinge Peteฤฉ Ta'anga" #: scstring.src msgctxt "" @@ -25089,7 +25089,7 @@ "Do you want to accept the correction proposed below?\n" "\n" msgstr "" -"%PRODUCTNAME Calc otopa peteฤฉ jejavy en la fรณrmula ojemoฤฉngue va'ekue.\n" +"%PRODUCTNAME Calc otopa peteฤฉ jejavy en la fรณrmula ojemoinge va'ekue.\n" "ยฟReipotรกpa ojeaceptรก guatyrรต propuesta yvรฝpegua?\n" "\n" @@ -25139,7 +25139,7 @@ "SCSTR_GRFILTER_TOOBIG\n" "string.text" msgid "Not enough memory available to insert image." -msgstr "Nรกipรณri memoria iporรฃma ojemoฤฉngue haguรฃ la ta'anga." +msgstr "Nรกipรณri memoria iporรฃma ojemoinge haguรฃ la ta'anga." #: scstring.src msgctxt "" @@ -25311,7 +25311,7 @@ "STR_ACC_EDITLINE_DESCR\n" "string.text" msgid "This is where you enter or edit text, numbers and formulas." -msgstr "Koรกpe ikatu remoฤฉngue o editar moรฑe'แบฝrรฃ, papapy ha fรณrmulas." +msgstr "Koรกpe ikatu remoinge o editar moรฑe'แบฝrรฃ, papapy ha fรณrmulas." #: scstring.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sc/uiconfig/scalc/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-16 15:33+0000\n" +"PO-Revision-Date: 2015-10-20 17:57+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417636.000000\n" +"X-POOTLE-MTIME: 1445363865.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -2207,7 +2207,7 @@ "label\n" "string.text" msgid "Insert or delete _cells" -msgstr "Moฤฉngue o juka _koty'i kuรฉra" +msgstr "Moinge o juka _koty'i kuรฉra" #: definedatabaserangedialog.ui msgctxt "" @@ -2576,7 +2576,7 @@ "label\n" "string.text" msgid "Show error _message when invalid values are entered" -msgstr "Hechauka _รฑe'แบฝmondo jejavรฝgui oรฑemoฤฉngue jave valores no valรฉia." +msgstr "Hechauka _รฑe'แบฝmondo jejavรฝgui oรฑemoinge jave valores no valรฉia." #: erroralerttabpage.ui msgctxt "" @@ -3521,7 +3521,7 @@ "label\n" "string.text" msgid "Include" -msgstr "Moฤฉngue" +msgstr "Moinge" #: headerdialog.ui msgctxt "" @@ -3737,7 +3737,7 @@ "label\n" "string.text" msgid "Use the buttons to change the font or insert field commands such as date, time, etc." -msgstr "Puru votรต kuรฉra moambue haguรฃ letra hรกicha o remoฤฉngue haguรฃ comandos รฑugui arange o aravo hรกicha." +msgstr "Puru votรต kuรฉra moambue haguรฃ letra hรกicha o remoinge haguรฃ comandos รฑugui arange o aravo hรกicha." #: headerfootercontent.ui msgctxt "" @@ -3953,7 +3953,7 @@ "title\n" "string.text" msgid "Insert Cells" -msgstr "Moฤฉngue Koty'i kuรฉra" +msgstr "Moinge Koty'i kuรฉra" #: insertcells.ui msgctxt "" @@ -4025,7 +4025,7 @@ "title\n" "string.text" msgid "Insert Sheet" -msgstr "Moฤฉngue Togue" +msgstr "Moinge Togue" #: insertsheet.ui msgctxt "" @@ -4349,7 +4349,7 @@ "label\n" "string.text" msgid "_Insert before" -msgstr "_Moฤฉngue mboyve" +msgstr "_Moinge mboyve" #: movecopysheet.ui msgctxt "" @@ -4781,7 +4781,7 @@ "label\n" "string.text" msgid "_Insertions:" -msgstr "_Moฤฉngue umi oรฑemoฤฉva:" +msgstr "_Moinge umi oรฑemoฤฉva:" #: optchangespage.ui msgctxt "" @@ -6977,7 +6977,7 @@ "label\n" "string.text" msgid "Expand _references when new columns/rows are inserted" -msgstr "Mbotuicha _referencias ojemoฤฉngue jave columnas/tysแปนi kuรฉra pyahu" +msgstr "Mbotuicha _referencias ojemoinge jave columnas/tysแปนi kuรฉra pyahu" #: scgeneralpage.ui msgctxt "" @@ -8111,7 +8111,7 @@ "tooltip_markup\n" "string.text" msgid "Inserts a separator between thousands." -msgstr "Moฤฉngue peteฤฉ jeiha millares mbytepe." +msgstr "Moinge peteฤฉ jeiha millares mbytepe." #: sidebarnumberformat.ui msgctxt "" @@ -8120,7 +8120,7 @@ "tooltip_text\n" "string.text" msgid "Inserts a separator between thousands." -msgstr "Moฤฉngue peteฤฉ jeiha millares mbytepe." +msgstr "Moinge peteฤฉ jeiha millares mbytepe." #: simplerefdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/source/ui/annotations.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/source/ui/annotations.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/source/ui/annotations.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/source/ui/annotations.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:42+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 17:57+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893749.000000\n" +"X-POOTLE-MTIME: 1445363869.000000\n" #: annotations.src msgctxt "" @@ -204,7 +204,7 @@ "STR_ANNOTATION_UNDO_INSERT\n" "string.text" msgid "Insert Comment" -msgstr "Moฤฉngue Oje'รฉva" +msgstr "Moinge Oje'รฉva" #: annotations.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-01 01:04+0000\n" +"PO-Revision-Date: 2015-10-20 18:02+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069495.000000\n" +"X-POOTLE-MTIME: 1445364158.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -122,7 +122,7 @@ "SID_PRESENTATION_LAYOUT\n" "menuitem.text" msgid "~Page Design..." -msgstr "~Diseรฑo Rogue..." +msgstr "Diseรฑo ~Rogue..." #: menuids3_tmpl.src msgctxt "" @@ -167,7 +167,7 @@ "SID_INSERT_GRAPHIC\n" "menuitem.text" msgid "Insert I~mage..." -msgstr "Moฤฉngue T~a'anga..." +msgstr "Moinge T~a'anga..." #: menuids_tmpl.src msgctxt "" @@ -176,7 +176,7 @@ "SID_CAPTUREPOINT\n" "menuitem.text" msgid "~Insert Snap Point/Line..." -msgstr "~Moฤฉngue Emohenda Kyta/Lรญnea..." +msgstr "~Moinge Emohenda Kyta/Lรญnea..." #: menuids_tmpl.src msgctxt "" @@ -221,7 +221,7 @@ "SID_PAGESETUP\n" "menuitem.text" msgid "~Page Setup..." -msgstr "~ร‘embosako'i Rogue..." +msgstr "ร‘embosako'i ~Rogue..." #: menuids_tmpl.src msgctxt "" @@ -266,7 +266,7 @@ "SID_INSERTPAGE\n" "menuitem.text" msgid "~New Page" -msgstr "~Rogue Pyahu" +msgstr "Rogue ~Pyahu" #: menuids_tmpl.src msgctxt "" @@ -653,7 +653,7 @@ "SID_BEZIER_INSERT\n" "menuitem.text" msgid "Insert ~Points" -msgstr "Moฤฉngue ~Kyta kuรฉra" +msgstr "Moinge ~Kyta kuรฉra" #: menuids_tmpl.src msgctxt "" @@ -869,7 +869,7 @@ "SID_GLUE_INSERT_POINT\n" "menuitem.text" msgid "Insert ~Point" -msgstr "~Moฤฉngue Kyta" +msgstr "~Moinge Kyta" #: menuids_tmpl.src msgctxt "" @@ -1202,7 +1202,7 @@ "SID_TABLE_INSERT_ROW_DLG\n" "menuitem.text" msgid "~Insert..." -msgstr "~Moฤฉngue..." +msgstr "~Moinge..." #: popup.src msgctxt "" @@ -1247,7 +1247,7 @@ "SID_TABLE_INSERT_COL_DLG\n" "menuitem.text" msgid "~Insert..." -msgstr "~Moฤฉngue..." +msgstr "~Moinge..." #: popup.src msgctxt "" @@ -1274,7 +1274,7 @@ "SID_INSERTLAYER\n" "menuitem.text" msgid "~Insert Layer..." -msgstr "~Moฤฉngue Ahoja..." +msgstr "~Moinge Ahoja..." #: popup.src msgctxt "" @@ -1391,7 +1391,7 @@ "SID_INSERTPAGE_LAYOUT_MENU\n" "menuitem.text" msgid "~Insert Slide" -msgstr "~Moฤฉngue Diapositiva" +msgstr "~Moinge Diapositiva" #: popup2_tmpl.src msgctxt "" @@ -1481,7 +1481,7 @@ "SID_TABLE_INSERT_ROW_DLG\n" "menuitem.text" msgid "~Insert..." -msgstr "~Moฤฉngue..." +msgstr "~Moinge..." #: popup2_tmpl.src msgctxt "" @@ -1526,7 +1526,7 @@ "SID_TABLE_INSERT_COL_DLG\n" "menuitem.text" msgid "~Insert..." -msgstr "~Moฤฉngue..." +msgstr "~Moinge..." #: popup2_tmpl.src msgctxt "" @@ -1774,7 +1774,7 @@ "STR_INSERTPAGE\n" "string.text" msgid "Insert Slide" -msgstr "Moฤฉngue Diapositiva" +msgstr "Moinge Diapositiva" #: strings.src msgctxt "" @@ -1782,7 +1782,7 @@ "STR_INSERTLAYER\n" "string.text" msgid "Insert Layer" -msgstr "Moฤฉngue Ahoja" +msgstr "Moinge Ahoja" #: strings.src msgctxt "" @@ -1838,7 +1838,7 @@ "STR_INSERTGRAPHIC\n" "string.text" msgid "Insert Image" -msgstr "Moฤฉngue Ta'anga" +msgstr "Moinge Ta'anga" #: strings.src msgctxt "" @@ -2274,7 +2274,7 @@ "STR_UNDO_INSERTPAGES\n" "string.text" msgid "Insert slides" -msgstr "Moฤฉngue Diapositivas" +msgstr "Moinge diapositivas" #: strings.src msgctxt "" @@ -2390,7 +2390,7 @@ "STR_UNDO_INSERT_TEXTFRAME\n" "string.text" msgid "Insert text frame" -msgstr "Moฤฉngue marco moรฑe'แบฝrรฃgui" +msgstr "Moinge marco moรฑe'แบฝrรฃgui" #: strings.src msgctxt "" @@ -2410,7 +2410,7 @@ "STR_DLG_INSERT_PAGES_FROM_FILE\n" "string.text" msgid "Insert File" -msgstr "Moฤฉngue ร‘ongatuha" +msgstr "Moinge ร‘ongatuha" #: strings.src msgctxt "" @@ -2612,7 +2612,7 @@ "STR_UNDO_INSERT_FILE\n" "string.text" msgid "Insert file" -msgstr "Moฤฉngue ~ร‘ongatuha" +msgstr "Moinge ~รฑongatuha" #: strings.src msgctxt "" @@ -2628,7 +2628,7 @@ "STR_UNDO_INSERT_SPECCHAR\n" "string.text" msgid "Insert special character" -msgstr "Moฤฉngue carรกcter especial" +msgstr "Moinge carรกcter especial" #: strings.src msgctxt "" @@ -2888,7 +2888,7 @@ "STR_INSERT_TEXT\n" "string.text" msgid "Insert Text" -msgstr "Moฤฉngue Moรฑe'แบฝrรฃ" +msgstr "Moinge Moรฑe'แบฝrรฃ" #: strings.src msgctxt "" @@ -2920,7 +2920,7 @@ "STR_DRAGTYPE_URL\n" "string.text" msgid "Insert as Hyperlink" -msgstr "Moฤฉngue hiperenlace icha" +msgstr "Moinge hiperenlace icha" #: strings.src msgctxt "" @@ -2928,7 +2928,7 @@ "STR_DRAGTYPE_EMBEDDED\n" "string.text" msgid "Insert as Copy" -msgstr "Moฤฉngue Kรณpiaicha" +msgstr "Moinge Kรณpiaicha" #: strings.src msgctxt "" @@ -2936,7 +2936,7 @@ "STR_DRAGTYPE_LINK\n" "string.text" msgid "Insert as Link" -msgstr "Moฤฉngue Link icha" +msgstr "Moinge Linkcha" #: strings.src msgctxt "" @@ -3920,7 +3920,7 @@ "STR_INSERT_TABLE\n" "string.text" msgid "Insert Table" -msgstr "Moฤฉngue Peteฤฉ Tabla" +msgstr "Moinge Tabla" #: strings.src msgctxt "" @@ -3928,7 +3928,7 @@ "STR_INSERT_CHART\n" "string.text" msgid "Insert Chart" -msgstr "Moฤฉngue Grรกfico" +msgstr "Moinge Grรกfico" #: strings.src msgctxt "" @@ -3936,7 +3936,7 @@ "STR_INSERT_PICTURE\n" "string.text" msgid "Insert Image" -msgstr "Moฤฉngue Ta'anga" +msgstr "Moinge Ta'anga" #: strings.src msgctxt "" @@ -3944,7 +3944,7 @@ "STR_INSERT_MOVIE\n" "string.text" msgid "Insert Audio or Video" -msgstr "Moฤฉngue Audio o Video" +msgstr "Moinge Audio o Video" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 16:01+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:02+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439568080.000000\n" +"X-POOTLE-MTIME: 1445364167.000000\n" #: DocumentRenderer.src msgctxt "" @@ -356,7 +356,7 @@ "Tile sheet of paper with repeated pages\n" "itemlist.text" msgid "Tile sheet of paper with repeated pages" -msgstr "Mosaicos diapositivasndi ojerepetรญ va'ekue" +msgstr "Mosaicos diapositiva ndi ojerepetรญ va'ekue" #: DocumentRenderer.src msgctxt "" @@ -383,7 +383,7 @@ "_STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE\n" "string.text" msgid "Include" -msgstr "Moฤฉngue" +msgstr "Moinge" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/uiconfig/sdraw/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/uiconfig/sdraw/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/uiconfig/sdraw/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-20 17:20+0000\n" +"PO-Revision-Date: 2015-10-20 18:03+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091238.000000\n" +"X-POOTLE-MTIME: 1445364182.000000\n" #: breakdialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "Inserted drawing objects:" -msgstr "Mba'e kuรฉra dibรบjogui ojemoฤฉngue va'ekue:" +msgstr "Mba'e kuรฉra dibรบjogui ojemoinge va'ekue:" #: bulletsandnumbering.ui msgctxt "" @@ -626,7 +626,7 @@ "title\n" "string.text" msgid "Insert Layer" -msgstr "Moฤฉngue Ahoja" +msgstr "Moinge Ahoja" #: insertlayer.ui msgctxt "" @@ -689,7 +689,7 @@ "title\n" "string.text" msgid "Insert Slides/Objects" -msgstr "Moฤฉngue Diapositivas/Mba'ekuรฉra" +msgstr "Moinge Diapositivas/Mba'ekuรฉra" #: insertslidesdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-16 15:33+0000\n" +"PO-Revision-Date: 2015-10-20 18:03+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417622.000000\n" +"X-POOTLE-MTIME: 1445364204.000000\n" #: assistentdialog.ui msgctxt "" @@ -1472,7 +1472,7 @@ "label\n" "string.text" msgid "Include on Slide" -msgstr "Moฤฉngue Diapositivape" +msgstr "Moinge Diapositivape" #: headerfootertab.ui msgctxt "" @@ -1499,7 +1499,7 @@ "label\n" "string.text" msgid "Include on page" -msgstr "Moฤฉngue roguรฉpe" +msgstr "Moinge roguรฉpe" #: insertslides.ui msgctxt "" @@ -1508,7 +1508,7 @@ "title\n" "string.text" msgid "Insert Slides" -msgstr "Moฤฉngue Diapositivas" +msgstr "Moinge Diapositivas" #: insertslides.ui msgctxt "" @@ -1877,7 +1877,7 @@ "label\n" "string.text" msgid "Insert Slides" -msgstr "Moฤฉngue Diapositivas" +msgstr "Moinge Diapositivas" #: photoalbum.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/appl.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/appl.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/appl.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/appl.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-14 16:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:03+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439568323.000000\n" +"X-POOTLE-MTIME: 1445364207.000000\n" #: app.src msgctxt "" @@ -182,7 +182,7 @@ "GID_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: app.src msgctxt "" @@ -476,7 +476,7 @@ "RID_SECURITY_WARNING_TITLE\n" "string.text" msgid "Security Warning" -msgstr "" +msgstr "Ejatendรฉke Seguridad" #: app.src msgctxt "" @@ -590,7 +590,7 @@ "RID_SVXSTR_GRFILTER_OPENERROR\n" "string.text" msgid "Image file cannot be opened" -msgstr "" +msgstr "Nikatรบi ojeavri ta'anga" #: app.src msgctxt "" @@ -598,7 +598,7 @@ "RID_SVXSTR_GRFILTER_IOERROR\n" "string.text" msgid "Image file cannot be read" -msgstr "" +msgstr "Nikatรบi ojemoรฑe'แบฝ ta'anga " #: app.src msgctxt "" @@ -723,7 +723,7 @@ "STR_HELP_BUTTON_ADDBOOKMARK\n" "string.text" msgid "Add to Bookmarks..." -msgstr "" +msgstr "Moฤฉ Marcador kuรฉrape..." #: newhelp.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-08-20 17:20+0000\n" +"PO-Revision-Date: 2015-10-20 18:03+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440091243.000000\n" +"X-POOTLE-MTIME: 1445364236.000000\n" #: dialog.src msgctxt "" @@ -38,7 +38,7 @@ "STR_TABPAGE_INVALIDNAME\n" "string.text" msgid "This name is already in use." -msgstr "" +msgstr "Ko tรฉra ojepuruma." #: dialog.src msgctxt "" @@ -230,7 +230,7 @@ "Department\n" "stringlist.text" msgid "Department" -msgstr "" +msgstr "Departamento" #: dinfdlg.src msgctxt "" @@ -338,7 +338,7 @@ "Matter\n" "stringlist.text" msgid "Matter" -msgstr "" +msgstr "Asunto" #: dinfdlg.src msgctxt "" @@ -383,7 +383,7 @@ "Purpose\n" "stringlist.text" msgid "Purpose" -msgstr "" +msgstr "Propรณsito" #: dinfdlg.src msgctxt "" @@ -586,7 +586,7 @@ "STR_SFX_EXPLORERFILE_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: filedlghelper.src msgctxt "" @@ -594,7 +594,7 @@ "STR_SFX_EXPLORERFILE_BUTTONINSERT\n" "string.text" msgid "~Insert" -msgstr "~Moฤฉngue" +msgstr "~Moinge" #: filedlghelper.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/doc.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/doc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/doc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/doc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-09-07 00:24+0000\n" +"PO-Revision-Date: 2015-09-30 10:51+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441585487.000000\n" +"X-POOTLE-MTIME: 1443610313.000000\n" #: doc.src msgctxt "" @@ -349,7 +349,7 @@ "STR_MOVE_NEW\n" "string.text" msgid "New folder" -msgstr "Carpeta pyahu" +msgstr "Karpeta pyahu" #: doc.src msgctxt "" @@ -357,7 +357,7 @@ "STR_INPUT_NEW\n" "string.text" msgid "Enter folder name:" -msgstr "Emoฤฉ carpeta tรฉra:" +msgstr "Emoฤฉ karpeta tรฉra:" #: doc.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/menu.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/menu.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/source/menu.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/source/menu.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:22+0100\n" -"PO-Revision-Date: 2015-04-06 02:21+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-19 15:17+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1428286860.000000\n" +"X-POOTLE-MTIME: 1445267841.000000\n" #: menu.src msgctxt "" @@ -81,7 +81,7 @@ "STR_MENU_SYNONYMS\n" "string.text" msgid "Synonyms" -msgstr "Sinรณnimos" +msgstr "ร‘e'แบฝ Juehegua (Sinรณnimos)" #: menu.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sfx2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sfx2/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-23 04:02+0000\n" +"PO-Revision-Date: 2015-10-20 16:48+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440302547.000000\n" +"X-POOTLE-MTIME: 1445359739.000000\n" #: alienwarndialog.ui msgctxt "" @@ -1175,7 +1175,7 @@ "label\n" "string.text" msgid "Include transparent objects" -msgstr "Moฤฉgue mba'รฉkuรฉra tesakรฃva" +msgstr "Moinge mba'รฉkuรฉra tesakรฃva" #: optprintpage.ui msgctxt "" @@ -1670,7 +1670,7 @@ "label\n" "string.text" msgid "New Folder" -msgstr "Carpeta Pyahu" +msgstr "Karpeta Pyahu" #: templatedlg.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/starmath/uiconfig/smath/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/starmath/uiconfig/smath/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/starmath/uiconfig/smath/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-01 01:18+0000\n" +"PO-Revision-Date: 2015-10-20 18:04+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441070317.000000\n" +"X-POOTLE-MTIME: 1445364241.000000\n" #: alignmentdialog.ui msgctxt "" @@ -86,7 +86,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: catalogdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svl/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svl/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svl/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svl/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-30 10:52+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893811.000000\n" +"X-POOTLE-MTIME: 1443610333.000000\n" #: mediatyp.src msgctxt "" @@ -310,7 +310,7 @@ "STR_SVT_MIMETYPE_CNT_FSYSFLD\n" "string.text" msgid "Folder" -msgstr "Carpeta" +msgstr "Karpeta" #: mediatyp.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svtools/source/contnr.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svtools/source/contnr.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svtools/source/contnr.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svtools/source/contnr.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-30 10:52+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893811.000000\n" +"X-POOTLE-MTIME: 1443610342.000000\n" #: fileview.src msgctxt "" @@ -128,7 +128,7 @@ "STR_SVT_ACC_DESC_FOLDER\n" "string.text" msgid "Folder" -msgstr "Carpeta" +msgstr "Karpeta" #: svcontnr.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svtools/source/dialogs.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svtools/source/dialogs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svtools/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svtools/source/dialogs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-09 01:44+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893815.000000\n" +"X-POOTLE-MTIME: 1444355082.000000\n" #: addresstemplate.src msgctxt "" @@ -238,7 +238,7 @@ "STR_FIELD_PAGER\n" "string.text" msgid "Pager" -msgstr "" +msgstr "Beeper" #: addresstemplate.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svtools/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svtools/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svtools/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-06 20:43+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-30 10:52+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893826.000000\n" +"X-POOTLE-MTIME: 1443610347.000000\n" #: imagemgr.src msgctxt "" @@ -198,7 +198,7 @@ "STR_DESCRIPTION_FOLDER\n" "string.text" msgid "Folder" -msgstr "Carpeta" +msgstr "Karpeta" #: imagemgr.src msgctxt "" @@ -2814,7 +2814,7 @@ "LANGUAGE_GUARANI_PARAGUAY\n" "pairedlist.text" msgid "Guaranรญ, Paraguayan" -msgstr "Guaranรญ de Paraguay" +msgstr "Avaรฑe'แบฝ Paraguรกi" #: langtab.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-09-16 17:24+0000\n" +"PO-Revision-Date: 2015-10-20 18:04+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442424247.000000\n" +"X-POOTLE-MTIME: 1445364249.000000\n" #: bmpmask.src msgctxt "" @@ -399,7 +399,7 @@ "MN_FRAME_TO_BOTTOM\n" "menuitem.text" msgid "~Send to Back" -msgstr "" +msgstr "~Mondo Huguรกpe" #: imapdlg.src msgctxt "" @@ -442,7 +442,7 @@ "RID_SVXSTR_ERR_OLD_PASSWD\n" "string.text" msgid "Invalid password" -msgstr "" +msgstr "Password no valรฉi" #: passwd.src msgctxt "" @@ -917,7 +917,7 @@ "STR_INSERT_SOUND_TITLE\n" "string.text" msgid "Insert audio" -msgstr "Moฤฉngue audio" +msgstr "Moinge audio" #: sdstring.src msgctxt "" @@ -925,7 +925,7 @@ "STR_INSERT_VIDEO_TITLE\n" "string.text" msgid "Insert video" -msgstr "Moฤฉngue video" +msgstr "Moinge video" #: sdstring.src msgctxt "" @@ -1013,7 +1013,7 @@ "RID_SVXSTR_COLOR_YELLOWGREEN\n" "string.text" msgid "Yellow green" -msgstr "" +msgstr "Sa'yju aky" #: sdstring.src msgctxt "" @@ -4964,7 +4964,7 @@ "RID_SUBSETSTR_PHONETIC_EXTENSIONS\n" "string.text" msgid "Phonetic Extensions" -msgstr "" +msgstr "Extensiones Fonรฉticas" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/engine3d.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/engine3d.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/engine3d.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/engine3d.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-06 20:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:04+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893845.000000\n" +"X-POOTLE-MTIME: 1445364261.000000\n" #: float3d.src msgctxt "" @@ -86,7 +86,7 @@ "RID_SVX_3D_UNDO_EXCHANGE_PASTE\n" "string.text" msgid "Insert object(s)" -msgstr "Moฤฉngue Mba'e (kuรฉra)" +msgstr "Moinge Mba'e (kuรฉra)" #: string3d.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/fmcomp.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/fmcomp.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/fmcomp.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/fmcomp.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-23 04:04+0000\n" +"PO-Revision-Date: 2015-10-20 18:04+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440302690.000000\n" +"X-POOTLE-MTIME: 1445364268.000000\n" #: gridctrl.src msgctxt "" @@ -149,7 +149,7 @@ "SID_FM_INSERTCOL\n" "menuitem.text" msgid "Insert ~Column" -msgstr "Moฤฉngue ~Columna" +msgstr "Moinge ~Columna" #: gridctrl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/form.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/form.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/form.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/form.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-23 04:04+0000\n" +"PO-Revision-Date: 2015-09-19 21:26+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440302695.000000\n" +"X-POOTLE-MTIME: 1442697961.000000\n" #: datanavi.src msgctxt "" @@ -360,7 +360,7 @@ "RID_STR_ELEMENT\n" "string.text" msgid "Element" -msgstr "" +msgstr "Elemento" #: datanavi.src msgctxt "" @@ -573,7 +573,7 @@ "SID_FM_CONVERTTO_RADIOBUTTON\n" "menuitem.text" msgid "~Radio Button" -msgstr "" +msgstr "~Votรต Radiogua" #: fmexpl.src msgctxt "" @@ -815,7 +815,7 @@ "RID_STR_CONTROL\n" "string.text" msgid "Control" -msgstr "" +msgstr "ร‘emaรฑa" #: fmstring.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/gallery2.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/gallery2.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/gallery2.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/gallery2.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-17 02:15+0000\n" +"PO-Revision-Date: 2015-10-20 18:04+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439777736.000000\n" +"X-POOTLE-MTIME: 1445364290.000000\n" #: gallery.src msgctxt "" @@ -138,7 +138,7 @@ "RID_SVXSTR_GALLERY_IMPORTTHEME\n" "string.text" msgid "I~mport..." -msgstr "" +msgstr "G~ueru..." #: gallery.src msgctxt "" @@ -240,7 +240,7 @@ "MN_ADD\n" "menuitem.text" msgid "~Insert" -msgstr "~Moฤฉngue" +msgstr "~Moinge" #: gallery.src msgctxt "" @@ -294,7 +294,7 @@ "MN_PASTECLIPBOARD\n" "menuitem.text" msgid "~Insert" -msgstr "~Moฤฉngue" +msgstr "~Moinge" #: galtheme.src msgctxt "" @@ -302,7 +302,7 @@ "RID_GALLERYSTR_THEME_3D\n" "string.text" msgid "3D Effects" -msgstr "" +msgstr "Efectos 3D" #: galtheme.src msgctxt "" @@ -326,7 +326,7 @@ "RID_GALLERYSTR_THEME_OFFICE\n" "string.text" msgid "Office" -msgstr "" +msgstr "Oficina" #: galtheme.src msgctxt "" @@ -350,7 +350,7 @@ "RID_GALLERYSTR_THEME_EMOTICONS\n" "string.text" msgid "Emoticons" -msgstr "" +msgstr "Emoticonos" #: galtheme.src msgctxt "" @@ -358,7 +358,7 @@ "RID_GALLERYSTR_THEME_PHOTOS\n" "string.text" msgid "Pictures" -msgstr "" +msgstr "Ta'anga kuรฉra" #: galtheme.src msgctxt "" @@ -382,7 +382,7 @@ "RID_GALLERYSTR_THEME_INTERACTION\n" "string.text" msgid "Interaction" -msgstr "" +msgstr "Interacciรณn" #: galtheme.src msgctxt "" @@ -390,7 +390,7 @@ "RID_GALLERYSTR_THEME_MAPS\n" "string.text" msgid "Maps" -msgstr "" +msgstr "Mapas" #: galtheme.src msgctxt "" @@ -398,7 +398,7 @@ "RID_GALLERYSTR_THEME_PEOPLE\n" "string.text" msgid "People" -msgstr "" +msgstr "Avakuรฉra" #: galtheme.src msgctxt "" @@ -414,7 +414,7 @@ "RID_GALLERYSTR_THEME_COMPUTERS\n" "string.text" msgid "Computers" -msgstr "" +msgstr "Computadoras" #: galtheme.src msgctxt "" @@ -422,7 +422,7 @@ "RID_GALLERYSTR_THEME_DIAGRAMS\n" "string.text" msgid "Diagrams" -msgstr "" +msgstr "Diagramas" #: galtheme.src msgctxt "" @@ -438,7 +438,7 @@ "RID_GALLERYSTR_THEME_FINANCE\n" "string.text" msgid "Finance" -msgstr "" +msgstr "Finanzas" #: galtheme.src msgctxt "" @@ -470,7 +470,7 @@ "RID_GALLERYSTR_THEME_SYMBOLS\n" "string.text" msgid "Symbols" -msgstr "" +msgstr "Sรญmbolos" #: galtheme.src msgctxt "" @@ -510,7 +510,7 @@ "RID_GALLERYSTR_THEME_TIME\n" "string.text" msgid "Time" -msgstr "" +msgstr "Aravo" #: galtheme.src msgctxt "" @@ -550,7 +550,7 @@ "RID_GALLERYSTR_THEME_FINANCES\n" "string.text" msgid "Finances" -msgstr "" +msgstr "Finanzas" #: galtheme.src msgctxt "" @@ -558,7 +558,7 @@ "RID_GALLERYSTR_THEME_COMPUTER\n" "string.text" msgid "Computers" -msgstr "" +msgstr "Computadoras" #: galtheme.src msgctxt "" @@ -622,7 +622,7 @@ "RID_GALLERYSTR_THEME_ANIMALS\n" "string.text" msgid "Animals" -msgstr "" +msgstr "Mymba" #: galtheme.src msgctxt "" @@ -630,7 +630,7 @@ "RID_GALLERYSTR_THEME_CARS\n" "string.text" msgid "Cars" -msgstr "" +msgstr "Coches" #: galtheme.src msgctxt "" @@ -750,7 +750,7 @@ "RID_GALLERYSTR_THEME_PEOPLE_1\n" "string.text" msgid "People" -msgstr "" +msgstr "Avakuรฉra" #: galtheme.src msgctxt "" @@ -822,7 +822,7 @@ "RID_GALLERYSTR_THEME_FORALSTUDIOA\n" "string.text" msgid "Foral-StudioA" -msgstr "" +msgstr "Foral-StudioA" #: galtheme.src msgctxt "" @@ -830,7 +830,7 @@ "RID_GALLERYSTR_THEME_PHOTOS_FAUNA\n" "string.text" msgid "Photos - Fauna" -msgstr "" +msgstr "Fotos - Fauna" #: galtheme.src msgctxt "" @@ -902,7 +902,7 @@ "RID_GALLERYSTR_THEME_VECHILES\n" "string.text" msgid "Vehicles" -msgstr "" +msgstr "Vehรญculos" #: galtheme.src msgctxt "" @@ -950,7 +950,7 @@ "RID_GALLERYSTR_THEME_LOGOS\n" "string.text" msgid "Logos" -msgstr "" +msgstr "Logos" #: galtheme.src msgctxt "" @@ -958,7 +958,7 @@ "RID_GALLERYSTR_THEME_SMILES\n" "string.text" msgid "Smilies" -msgstr "" +msgstr "Emoticonos" #: galtheme.src msgctxt "" @@ -1102,7 +1102,7 @@ "RID_GALLERYSTR_THEME_COMPUTER_WIFI\n" "string.text" msgid "Computer - WIFI" -msgstr "" +msgstr "Computadora - WIFI" #: galtheme.src msgctxt "" @@ -1110,7 +1110,7 @@ "RID_GALLERYSTR_THEME_NUMBERS\n" "string.text" msgid "Numbers" -msgstr "" +msgstr "Papapy kuรฉra" #: galtheme.src msgctxt "" @@ -1134,7 +1134,7 @@ "RID_GALLERYSTR_THEME_MAPS_AFRICA\n" "string.text" msgid "Maps - Africa" -msgstr "" +msgstr "Mapas - รfrica" #: galtheme.src msgctxt "" @@ -1142,7 +1142,7 @@ "RID_GALLERYSTR_THEME_MAPS_UNITED_STATES_OF_AMERICA\n" "string.text" msgid "Maps - United States of America" -msgstr "" +msgstr "Mapas - Estados Unidos" #: galtheme.src msgctxt "" @@ -1150,7 +1150,7 @@ "RID_GALLERYSTR_THEME_MAPS_AUSTRALIA\n" "string.text" msgid "Maps - Australia" -msgstr "" +msgstr "Mapas - Australia" #: galtheme.src msgctxt "" @@ -1158,7 +1158,7 @@ "RID_GALLERYSTR_THEME_MAPS_ASIA\n" "string.text" msgid "Maps - Asia" -msgstr "" +msgstr "Mapas - Asia" #: galtheme.src msgctxt "" @@ -1166,7 +1166,7 @@ "RID_GALLERYSTR_THEME_MAPS_SOUTH_AMERICA\n" "string.text" msgid "Maps - South America" -msgstr "" +msgstr "Mapas - Sudamรฉrica" #: galtheme.src msgctxt "" @@ -1174,7 +1174,7 @@ "RID_GALLERYSTR_THEME_MAPS_EUROPE\n" "string.text" msgid "Maps - Europe" -msgstr "" +msgstr "Mapas - Europa" #: galtheme.src msgctxt "" @@ -1182,7 +1182,7 @@ "RID_GALLERYSTR_THEME_MAPS_EUROPE_1\n" "string.text" msgid "Maps - Europe 1" -msgstr "" +msgstr "Mapas - Europa 1" #: galtheme.src msgctxt "" @@ -1190,7 +1190,7 @@ "RID_GALLERYSTR_THEME_MAPS_FRANCE\n" "string.text" msgid "Maps - France" -msgstr "" +msgstr "Mapas - Francia" #: galtheme.src msgctxt "" @@ -1214,7 +1214,7 @@ "RID_GALLERYSTR_THEME_MAPS_CANADA\n" "string.text" msgid "Maps - Canada" -msgstr "" +msgstr "Mapas - Canadรก" #: galtheme.src msgctxt "" @@ -1222,7 +1222,7 @@ "RID_GALLERYSTR_THEME_MAPS_CONTINENTS\n" "string.text" msgid "Maps - Continents" -msgstr "" +msgstr "Mapas - Continentes" #: galtheme.src msgctxt "" @@ -1230,7 +1230,7 @@ "RID_GALLERYSTR_THEME_MAPS_MIDDLE_EAST\n" "string.text" msgid "Maps - Middle East" -msgstr "" +msgstr "Mapas - Medio Oriente" #: galtheme.src msgctxt "" @@ -1238,7 +1238,7 @@ "RID_GALLERYSTR_THEME_MAPS_MIDDLE_AMERICA\n" "string.text" msgid "Maps - Middle America" -msgstr "" +msgstr "Mapas - Centroamรฉrica" #: galtheme.src msgctxt "" @@ -1254,7 +1254,7 @@ "RID_GALLERYSTR_THEME_MAPS_MEXICO\n" "string.text" msgid "Maps - Mexico" -msgstr "" +msgstr "Mapas - Mรฉxico" #: galtheme.src msgctxt "" @@ -1270,7 +1270,7 @@ "RID_GALLERYSTR_THEME_MAPS_SYMBOLS\n" "string.text" msgid "Maps - symbols" -msgstr "" +msgstr "Mapas - sรญmbolos" #: galtheme.src msgctxt "" @@ -1278,7 +1278,7 @@ "RID_GALLERYSTR_THEME_MAPS_HISTORY_1900\n" "string.text" msgid "Maps - history - 1900" -msgstr "" +msgstr "Mapas - historia - 1900" #: galtheme.src msgctxt "" @@ -1286,7 +1286,7 @@ "RID_GALLERYSTR_THEME_MAPS_WORLD\n" "string.text" msgid "Maps - World" -msgstr "" +msgstr "Mapas - Mundo" #: galtheme.src msgctxt "" @@ -1302,7 +1302,7 @@ "RID_GALLERYSTR_THEME_FRACTIONS\n" "string.text" msgid "Fractions" -msgstr "" +msgstr "Fracciones" #: galtheme.src msgctxt "" @@ -1318,7 +1318,7 @@ "RID_GALLERYSTR_THEME_MUSIC_INSTRUMENTS\n" "string.text" msgid "Music - instruments" -msgstr "" +msgstr "Mรบsica - Instrumentos" #: galtheme.src msgctxt "" @@ -1398,7 +1398,7 @@ "RID_GALLERYSTR_THEME_RELIGION\n" "string.text" msgid "Religion" -msgstr "" +msgstr "Religiรณn" #: galtheme.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/items.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/items.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/items.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/items.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-01 01:18+0000\n" +"PO-Revision-Date: 2015-09-18 15:10+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441070337.000000\n" +"X-POOTLE-MTIME: 1442589006.000000\n" #: svxerr.src msgctxt "" @@ -327,7 +327,7 @@ "Shadowed\n" "itemlist.text" msgid "Shadowed" -msgstr "" +msgstr "Kuarahy va'ekue" #: svxitems.src msgctxt "" @@ -336,7 +336,7 @@ "Individual words\n" "itemlist.text" msgid "Individual words" -msgstr "" +msgstr "Palabras individuales" #: svxitems.src msgctxt "" @@ -489,7 +489,7 @@ "Page Break\n" "itemlist.text" msgid "Page Break" -msgstr "" +msgstr "Kytฤฉ Roguรฉgui" #: svxitems.src msgctxt "" @@ -498,7 +498,7 @@ "Hyphenation\n" "itemlist.text" msgid "Hyphenation" -msgstr "" +msgstr "Divisiรณn de Palabras" #: svxitems.src msgctxt "" @@ -633,7 +633,7 @@ "Size of Asian font\n" "itemlist.text" msgid "Size of Asian font" -msgstr "" +msgstr "Tamaรฑo de la Fuente Asiรกtica" #: svxitems.src msgctxt "" @@ -669,7 +669,7 @@ "CTL\n" "itemlist.text" msgid "CTL" -msgstr "" +msgstr "CTL" #: svxitems.src msgctxt "" @@ -714,7 +714,7 @@ "Double-lined\n" "itemlist.text" msgid "Double-lined" -msgstr "" +msgstr "Lรญnea-kรตi" #: svxitems.src msgctxt "" @@ -759,7 +759,7 @@ "Rotation\n" "itemlist.text" msgid "Rotation" -msgstr "" +msgstr "Ojapajerรฉi" #: svxitems.src msgctxt "" @@ -802,7 +802,7 @@ "RID_SVXITEMS_SEARCHCMD_FIND\n" "string.text" msgid "Search" -msgstr "" +msgstr "Heka" #: svxitems.src msgctxt "" @@ -826,7 +826,7 @@ "RID_SVXITEMS_SEARCHCMD_REPLACE_ALL\n" "string.text" msgid "Replace all" -msgstr "" +msgstr "Mbyekovia opavave" #: svxitems.src msgctxt "" @@ -986,7 +986,7 @@ "RID_SVXITEMS_ORI_STACKED\n" "string.text" msgid "Stacked" -msgstr "" +msgstr "Apilonรก" #: svxitems.src msgctxt "" @@ -1002,7 +1002,7 @@ "RID_SVXITEMS_BOXINF_TABLE_FALSE\n" "string.text" msgid "Not Table" -msgstr "" +msgstr "Tabla'แปนre" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/sidebar/area.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/sidebar/area.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/sidebar/area.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/sidebar/area.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-03-18 13:39+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-20 23:23+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1426685946.000000\n" +"X-POOTLE-MTIME: 1442791416.000000\n" #: AreaPropertyPanel.src msgctxt "" @@ -86,7 +86,7 @@ "FT_TRGR_START_VALUE\n" "fixedtext.text" msgid "~Start value:" -msgstr "" +msgstr "Valor ~oรฑepyrลฉha:" #: AreaPropertyPanel.src msgctxt "" @@ -104,7 +104,7 @@ "FT_TRGR_END_VALUE\n" "fixedtext.text" msgid "~End value:" -msgstr "" +msgstr "Valor ~paha:" #: AreaPropertyPanel.src msgctxt "" @@ -122,7 +122,7 @@ "FT_TRGR_BORDER\n" "fixedtext.text" msgid "~Border:" -msgstr "" +msgstr "~Borde:" #: AreaPropertyPanel.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/sidebar/line.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/sidebar/line.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/sidebar/line.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/sidebar/line.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-06 20:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 23:23+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893855.000000\n" +"X-POOTLE-MTIME: 1442791427.000000\n" #: LinePropertyPanel.src msgctxt "" @@ -59,4 +59,4 @@ "STR_PT\n" "string.text" msgid "pt" -msgstr "" +msgstr "pt" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/sidebar/text.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/sidebar/text.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/sidebar/text.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/sidebar/text.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-09-01 01:19+0000\n" +"PO-Revision-Date: 2015-09-20 23:24+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441070359.000000\n" +"X-POOTLE-MTIME: 1442791498.000000\n" #: TextPropertyPanel.src msgctxt "" @@ -50,7 +50,7 @@ "STR_DOUBLE\n" "string.text" msgid "Double" -msgstr "" +msgstr "Kรตi" #: TextPropertyPanel.src msgctxt "" @@ -59,7 +59,7 @@ "STR_BOLD\n" "string.text" msgid "Bold" -msgstr "" +msgstr "Hลฉ'i" #: TextPropertyPanel.src msgctxt "" @@ -194,7 +194,7 @@ "STR_TIGHT\n" "string.text" msgid "Tight" -msgstr "" +msgstr "Jopypapyre" #: TextPropertyPanel.src msgctxt "" @@ -302,4 +302,4 @@ "STR_PT\n" "string.text" msgid "pt" -msgstr "" +msgstr "pt" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-06 20:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 23:25+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893857.000000\n" +"X-POOTLE-MTIME: 1442791542.000000\n" #: errtxt.src msgctxt "" @@ -257,7 +257,7 @@ "ERRCODE_CLASS_UNKNOWN\n" "string.text" msgid "unknown" -msgstr "" +msgstr "jekuaa'แปนva" #: errtxt.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/stbctrls.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/stbctrls.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/stbctrls.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/stbctrls.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-14 16:17+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-09 01:45+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439569075.000000\n" +"X-POOTLE-MTIME: 1444355134.000000\n" #: stbctrls.src msgctxt "" @@ -235,7 +235,7 @@ "RID_SVXSTR_ZOOM_WHOLE_PAGE\n" "string.text" msgid "Entire Page" -msgstr "" +msgstr "Opavave Rogue" #: stbctrls.src msgctxt "" @@ -260,7 +260,7 @@ "ZOOM_WHOLE_PAGE\n" "menuitem.text" msgid "Entire Page" -msgstr "" +msgstr "Opavave Rogue" #: stbctrls.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/svdraw.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/svdraw.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/svdraw.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/svdraw.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-09-16 17:27+0000\n" +"PO-Revision-Date: 2015-10-20 18:09+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442424424.000000\n" +"X-POOTLE-MTIME: 1445364585.000000\n" #: svdstr.src msgctxt "" @@ -70,7 +70,7 @@ "STR_ObjNameSingulLINE\n" "string.text" msgid "Line" -msgstr "" +msgstr "Lรญnea" #: svdstr.src msgctxt "" @@ -102,7 +102,7 @@ "STR_ObjNamePluralLINE\n" "string.text" msgid "Lines" -msgstr "" +msgstr "Lรญnea kuรฉra" #: svdstr.src msgctxt "" @@ -110,7 +110,7 @@ "STR_ObjNameSingulRECT\n" "string.text" msgid "Rectangle" -msgstr "" +msgstr "Rectรกngulo" #: svdstr.src msgctxt "" @@ -118,7 +118,7 @@ "STR_ObjNamePluralRECT\n" "string.text" msgid "Rectangles" -msgstr "" +msgstr "Rectรกngulo kuรฉra" #: svdstr.src msgctxt "" @@ -126,7 +126,7 @@ "STR_ObjNameSingulQUAD\n" "string.text" msgid "Square" -msgstr "" +msgstr "Cuadrado" #: svdstr.src msgctxt "" @@ -134,7 +134,7 @@ "STR_ObjNamePluralQUAD\n" "string.text" msgid "Squares" -msgstr "" +msgstr "Cuadrado kuรฉra" #: svdstr.src msgctxt "" @@ -142,7 +142,7 @@ "STR_ObjNameSingulPARAL\n" "string.text" msgid "Parallelogram" -msgstr "" +msgstr "Paralelograma" #: svdstr.src msgctxt "" @@ -150,7 +150,7 @@ "STR_ObjNamePluralPARAL\n" "string.text" msgid "Parallelograms" -msgstr "" +msgstr "Paralelograma kuรฉra" #: svdstr.src msgctxt "" @@ -158,7 +158,7 @@ "STR_ObjNameSingulRAUTE\n" "string.text" msgid "Rhombus" -msgstr "" +msgstr "Rombo" #: svdstr.src msgctxt "" @@ -166,7 +166,7 @@ "STR_ObjNamePluralRAUTE\n" "string.text" msgid "Rhombuses" -msgstr "" +msgstr "Rombo kuรฉra" #: svdstr.src msgctxt "" @@ -302,7 +302,7 @@ "STR_ObjNameSingulCIRCE\n" "string.text" msgid "Ellipse" -msgstr "" +msgstr "Elipse" #: svdstr.src msgctxt "" @@ -310,7 +310,7 @@ "STR_ObjNamePluralCIRCE\n" "string.text" msgid "Ellipses" -msgstr "" +msgstr "Elipse kuรฉra" #: svdstr.src msgctxt "" @@ -366,7 +366,7 @@ "STR_ObjNameSingulPOLY\n" "string.text" msgid "Polygon" -msgstr "" +msgstr "Polรญgono" #: svdstr.src msgctxt "" @@ -382,7 +382,7 @@ "STR_ObjNamePluralPOLY\n" "string.text" msgid "Polygons" -msgstr "" +msgstr "Polรญgono kuรฉra" #: svdstr.src msgctxt "" @@ -390,7 +390,7 @@ "STR_ObjNameSingulPLIN\n" "string.text" msgid "Polyline" -msgstr "" +msgstr "Polilรญnea" #: svdstr.src msgctxt "" @@ -406,7 +406,7 @@ "STR_ObjNamePluralPLIN\n" "string.text" msgid "Polylines" -msgstr "" +msgstr "Polilรญnea kuรฉra" #: svdstr.src msgctxt "" @@ -846,7 +846,7 @@ "STR_ObjNameSingulGRAFSVG\n" "string.text" msgid "SVG" -msgstr "" +msgstr "SVG" #: svdstr.src msgctxt "" @@ -854,7 +854,7 @@ "STR_ObjNamePluralGRAFSVG\n" "string.text" msgid "SVGs" -msgstr "" +msgstr "SVG" #: svdstr.src msgctxt "" @@ -1022,7 +1022,7 @@ "STR_ObjNameAnd\n" "string.text" msgid "and" -msgstr "" +msgstr "ha" #: svdstr.src msgctxt "" @@ -1038,7 +1038,7 @@ "STR_ObjNameSingulCube3d\n" "string.text" msgid "3D cube" -msgstr "" +msgstr "Cubo 3D" #: svdstr.src msgctxt "" @@ -1046,7 +1046,7 @@ "STR_ObjNamePluralCube3d\n" "string.text" msgid "3D cubes" -msgstr "" +msgstr "Cubos 3D" #: svdstr.src msgctxt "" @@ -1118,7 +1118,7 @@ "STR_ObjNamePluralPoly3d\n" "string.text" msgid "3D polygons" -msgstr "" +msgstr "Polรญgonos 3D" #: svdstr.src msgctxt "" @@ -1126,7 +1126,7 @@ "STR_ObjNameSingulScene3d\n" "string.text" msgid "3D scene" -msgstr "" +msgstr "Escena 3D" #: svdstr.src msgctxt "" @@ -1134,7 +1134,7 @@ "STR_ObjNamePluralScene3d\n" "string.text" msgid "3D scenes" -msgstr "" +msgstr "Escenas 3D" #: svdstr.src msgctxt "" @@ -1142,7 +1142,7 @@ "STR_ObjNameSingulSphere3d\n" "string.text" msgid "sphere" -msgstr "" +msgstr "esfera" #: svdstr.src msgctxt "" @@ -1150,7 +1150,7 @@ "STR_ObjNamePluralSphere3d\n" "string.text" msgid "spheres" -msgstr "" +msgstr "esfera kuรฉra" #: svdstr.src msgctxt "" @@ -1158,7 +1158,7 @@ "STR_EditWithCopy\n" "string.text" msgid "with copy" -msgstr "" +msgstr "Kรณpiandi" #: svdstr.src msgctxt "" @@ -1302,7 +1302,7 @@ "STR_EditDistort\n" "string.text" msgid "Distort %1" -msgstr "" +msgstr "Distorcionar %1" #: svdstr.src msgctxt "" @@ -1542,7 +1542,7 @@ "STR_EditMergeSubstractPoly\n" "string.text" msgid "Subtract %1" -msgstr "" +msgstr "Sustraer %1" #: svdstr.src msgctxt "" @@ -1550,7 +1550,7 @@ "STR_EditMergeIntersectPoly\n" "string.text" msgid "Intersect %1" -msgstr "" +msgstr "Kytฤฉ %1" #: svdstr.src msgctxt "" @@ -1598,7 +1598,7 @@ "STR_ExchangePaste\n" "string.text" msgid "Insert object(s)" -msgstr "Moฤฉngue mba'e (kuรฉra)" +msgstr "Moinge mba'e (kuรฉra)" #: svdstr.src msgctxt "" @@ -1622,7 +1622,7 @@ "STR_ExchangeDD\n" "string.text" msgid "Drag and Drop %1" -msgstr "" +msgstr "Mbotyryry ha Poi %1" #: svdstr.src msgctxt "" @@ -1766,7 +1766,7 @@ "STR_DragMethDistort\n" "string.text" msgid "Distort %1" -msgstr "" +msgstr "Distorcionar %1" #: svdstr.src msgctxt "" @@ -1942,7 +1942,7 @@ "STR_UndoInsertObj\n" "string.text" msgid "Insert %1" -msgstr "Moฤฉngue %1" +msgstr "Moinge %1" #: svdstr.src msgctxt "" @@ -1974,7 +1974,7 @@ "STR_UndoNewPage\n" "string.text" msgid "Insert page" -msgstr "Moฤฉngue rogue" +msgstr "Moinge rogue" #: svdstr.src msgctxt "" @@ -2038,7 +2038,7 @@ "STR_UndoMergeModel\n" "string.text" msgid "Insert document" -msgstr "Moฤฉngue documento" +msgstr "Moinge documento" #: svdstr.src msgctxt "" @@ -2046,7 +2046,7 @@ "STR_UndoNewLayer\n" "string.text" msgid "Insert Layer" -msgstr "Moฤฉngue Ahoja" +msgstr "Moinge Ahoja" #: svdstr.src msgctxt "" @@ -2102,7 +2102,7 @@ "STR_ItemValON\n" "string.text" msgid "on" -msgstr "" +msgstr "myendy" #: svdstr.src msgctxt "" @@ -2110,7 +2110,7 @@ "STR_ItemValOFF\n" "string.text" msgid "off" -msgstr "" +msgstr "mbogue" #: svdstr.src msgctxt "" @@ -2126,7 +2126,7 @@ "STR_ItemValNO\n" "string.text" msgid "No" -msgstr "" +msgstr "Nahรกniri" #: svdstr.src msgctxt "" @@ -2182,7 +2182,7 @@ "STR_ItemValCAPTIONESCBESTFIT\n" "string.text" msgid "Automatic" -msgstr "" +msgstr "Automรกtico" #: svdstr.src msgctxt "" @@ -2190,7 +2190,7 @@ "STR_ItemValFITTOSIZENONE\n" "string.text" msgid "Off" -msgstr "" +msgstr "Mbogue" #: svdstr.src msgctxt "" @@ -2198,7 +2198,7 @@ "STR_ItemValFITTOSIZEPROP\n" "string.text" msgid "Proportional" -msgstr "" +msgstr "Proporcional" #: svdstr.src msgctxt "" @@ -2262,7 +2262,7 @@ "STR_ItemValTEXTHADJLEFT\n" "string.text" msgid "Left" -msgstr "" +msgstr "Asu" #: svdstr.src msgctxt "" @@ -2278,7 +2278,7 @@ "STR_ItemValTEXTHADJRIGHT\n" "string.text" msgid "Right" -msgstr "" +msgstr "Akatรบa" #: svdstr.src msgctxt "" @@ -2302,7 +2302,7 @@ "STR_ItemValTEXTANI_NONE\n" "string.text" msgid "off" -msgstr "" +msgstr "mbogue" #: svdstr.src msgctxt "" @@ -2342,7 +2342,7 @@ "STR_ItemValTEXTANI_LEFT\n" "string.text" msgid "left" -msgstr "" +msgstr "asu" #: svdstr.src msgctxt "" @@ -2350,7 +2350,7 @@ "STR_ItemValTEXTANI_UP\n" "string.text" msgid "up" -msgstr "" +msgstr "yvate" #: svdstr.src msgctxt "" @@ -2358,7 +2358,7 @@ "STR_ItemValTEXTANI_RIGHT\n" "string.text" msgid "right" -msgstr "" +msgstr "akatรบa" #: svdstr.src msgctxt "" @@ -2366,7 +2366,7 @@ "STR_ItemValTEXTANI_DOWN\n" "string.text" msgid "down" -msgstr "" +msgstr "yvรฝpe" #: svdstr.src msgctxt "" @@ -2406,7 +2406,7 @@ "STR_ItemValMEASURE_STD\n" "string.text" msgid "Standard" -msgstr "" +msgstr "Estรกndar" #: svdstr.src msgctxt "" @@ -2414,7 +2414,7 @@ "STR_ItemValMEASURE_RADIUS\n" "string.text" msgid "Radius" -msgstr "" +msgstr "Radio" #: svdstr.src msgctxt "" @@ -2422,7 +2422,7 @@ "STR_ItemValMEASURE_TEXTHAUTO\n" "string.text" msgid "automatic" -msgstr "" +msgstr "automรกtico" #: svdstr.src msgctxt "" @@ -2454,7 +2454,7 @@ "STR_ItemValMEASURE_TEXTVAUTO\n" "string.text" msgid "automatic" -msgstr "" +msgstr "automรกtico" #: svdstr.src msgctxt "" @@ -2486,7 +2486,7 @@ "STR_ItemValMEASURETEXT_VERTICALCEN\n" "string.text" msgid "centered" -msgstr "" +msgstr "mombyte" #: svdstr.src msgctxt "" @@ -2606,7 +2606,7 @@ "STR_ItemNam_CAPTIONGAP\n" "string.text" msgid "Gap" -msgstr "" +msgstr "Pa'ลฉ" #: svdstr.src msgctxt "" @@ -2814,7 +2814,7 @@ "STR_ItemNam_GRAFGAMMA\n" "string.text" msgid "Gamma" -msgstr "" +msgstr "Gamma" #: svdstr.src msgctxt "" @@ -2886,7 +2886,7 @@ "STR_ItemNam_LAYERNAME\n" "string.text" msgid "Le~vel" -msgstr "" +msgstr "Ni~vel" #: svdstr.src msgctxt "" @@ -2942,7 +2942,7 @@ "STR_ItemNam_SIZEHEIGHT\n" "string.text" msgid "Height" -msgstr "" +msgstr "Yvatekue" #: svdstr.src msgctxt "" @@ -3407,7 +3407,7 @@ "SIP_XA_FORMTXTSHADOW\n" "string.text" msgid "Fontwork shadow" -msgstr "" +msgstr "Kuarahy'รฃ Fontwork" #: svdstr.src msgctxt "" @@ -3503,7 +3503,7 @@ "SIP_SA_SHADOWCOLOR\n" "string.text" msgid "Shadow color" -msgstr "" +msgstr "Sa'y Kuarahy'รฃ" #: svdstr.src msgctxt "" @@ -4047,7 +4047,7 @@ "SIP_SA_MEASUREUNIT\n" "string.text" msgid "Measure unit" -msgstr "" +msgstr "Unidad de medida" #: svdstr.src msgctxt "" @@ -4111,7 +4111,7 @@ "SIP_SA_MEASUREDECIMALPLACES\n" "string.text" msgid "Decimal places" -msgstr "" +msgstr "Cifras decimales" #: svdstr.src msgctxt "" @@ -4479,7 +4479,7 @@ "SIP_EE_PARA_HYPHENATE\n" "string.text" msgid "Hyphenation" -msgstr "" +msgstr "Divisiรณn de Palabras" #: svdstr.src msgctxt "" @@ -4551,7 +4551,7 @@ "SIP_EE_PARA_TABS\n" "string.text" msgid "Tabulators" -msgstr "" +msgstr "Tabuladores" #: svdstr.src msgctxt "" @@ -4559,7 +4559,7 @@ "SIP_EE_CHAR_COLOR\n" "string.text" msgid "Font color" -msgstr "" +msgstr "Letra sa'y" #: svdstr.src msgctxt "" @@ -4679,7 +4679,7 @@ "SIP_EE_FEATURE_TAB\n" "string.text" msgid "Tabulator" -msgstr "" +msgstr "Tabulador" #: svdstr.src msgctxt "" @@ -4751,7 +4751,7 @@ "SIP_SA_GRAFGAMMA\n" "string.text" msgid "Gamma" -msgstr "" +msgstr "Gamma" #: svdstr.src msgctxt "" @@ -4823,7 +4823,7 @@ "STR_TABLE_INSCOL\n" "string.text" msgid "Insert column" -msgstr "Moฤฉngue columna" +msgstr "Moinge columna" #: svdstr.src msgctxt "" @@ -4831,7 +4831,7 @@ "STR_TABLE_INSROW\n" "string.text" msgid "Insert row" -msgstr "Moฤฉngue tysแปนi" +msgstr "Moinge tysแปนi" #: svdstr.src msgctxt "" @@ -4927,7 +4927,7 @@ "STR_ObjNameSingulFONTWORK\n" "string.text" msgid "font work" -msgstr "" +msgstr "font work" #: svdstr.src msgctxt "" @@ -4935,4 +4935,4 @@ "STR_ObjNamePluralFONTWORK\n" "string.text" msgid "font works" -msgstr "" +msgstr "font works" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/toolbars.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/toolbars.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/source/toolbars.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/source/toolbars.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-08 23:20+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-18 14:59+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1423437644.000000\n" +"X-POOTLE-MTIME: 1442588364.000000\n" #: extrusionbar.src msgctxt "" @@ -22,7 +22,7 @@ "RID_SVX_EXTRUSION_BAR\n" "string.text" msgid "Extrusion" -msgstr "" +msgstr "Extrusiรณn" #: extrusionbar.src msgctxt "" @@ -30,7 +30,7 @@ "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF\n" "string.text" msgid "Apply Extrusion On/Off" -msgstr "" +msgstr "Myendy/Mbogue Extrusiรณn" #: extrusionbar.src msgctxt "" @@ -126,7 +126,7 @@ "RID_SVX_FONTWORK_BAR\n" "string.text" msgid "Fontwork" -msgstr "" +msgstr "Fontwork" #: fontworkbar.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-16 15:39+0000\n" +"PO-Revision-Date: 2015-10-20 18:10+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417952.000000\n" +"X-POOTLE-MTIME: 1445364645.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -59,7 +59,7 @@ "label\n" "string.text" msgid "R_eject All" -msgstr "" +msgstr "M_botove Opavave" #: addconditiondialog.ui msgctxt "" @@ -284,7 +284,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Kundaha..." #: addinstancedialog.ui msgctxt "" @@ -422,13 +422,14 @@ msgstr "_Mรฉtodo:" #: addsubmissiondialog.ui +#, fuzzy msgctxt "" "addsubmissiondialog.ui\n" "label5\n" "label\n" "string.text" msgid "_Binding:" -msgstr "" +msgstr "_Joaju:" #: addsubmissiondialog.ui msgctxt "" @@ -1256,7 +1257,7 @@ "title\n" "string.text" msgid "3D Effects" -msgstr "" +msgstr "Efectos 3D" #: docking3deffects.ui msgctxt "" @@ -1301,7 +1302,7 @@ "label\n" "string.text" msgid "Geometry" -msgstr "" +msgstr "Geometrรญa" #: docking3deffects.ui msgctxt "" @@ -1346,7 +1347,7 @@ "tooltip_text\n" "string.text" msgid "Flat" -msgstr "" +msgstr "Plano" #: docking3deffects.ui msgctxt "" @@ -1355,7 +1356,7 @@ "tooltip_text\n" "string.text" msgid "Spherical" -msgstr "" +msgstr "Esfรฉrico" #: docking3deffects.ui msgctxt "" @@ -1391,7 +1392,7 @@ "label\n" "string.text" msgid "Normals" -msgstr "" +msgstr "Normales" #: docking3deffects.ui msgctxt "" @@ -1400,7 +1401,7 @@ "tooltip_text\n" "string.text" msgid "Convert to 3D" -msgstr "" +msgstr "Convertir en 3D" #: docking3deffects.ui msgctxt "" @@ -1427,7 +1428,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "3D Preview" -msgstr "" +msgstr "Techauka Mboyve 3D" #: docking3deffects.ui msgctxt "" @@ -1445,7 +1446,7 @@ "label\n" "string.text" msgid "_Mode" -msgstr "" +msgstr "_Modo" #: docking3deffects.ui msgctxt "" @@ -1454,7 +1455,7 @@ "0\n" "stringlist.text" msgid "Flat" -msgstr "" +msgstr "Plano" #: docking3deffects.ui msgctxt "" @@ -1463,7 +1464,7 @@ "1\n" "stringlist.text" msgid "Phong" -msgstr "" +msgstr "Phong" #: docking3deffects.ui msgctxt "" @@ -1472,7 +1473,7 @@ "2\n" "stringlist.text" msgid "Gouraud" -msgstr "" +msgstr "Gouraud" #: docking3deffects.ui msgctxt "" @@ -1481,7 +1482,7 @@ "label\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Oรฑemokuarahy va'ekue" #: docking3deffects.ui msgctxt "" @@ -1499,7 +1500,7 @@ "tooltip_text\n" "string.text" msgid "3D Shadowing On/Off" -msgstr "" +msgstr "Myendy/Mbogue Kuarahy'รฃ 3D" #: docking3deffects.ui msgctxt "" @@ -1508,7 +1509,7 @@ "label\n" "string.text" msgid "Shadow" -msgstr "" +msgstr "Kuarahy'รฃ" #: docking3deffects.ui msgctxt "" @@ -1526,7 +1527,7 @@ "label\n" "string.text" msgid "_Distance" -msgstr "" +msgstr "_Distancia" #: docking3deffects.ui msgctxt "" @@ -1535,7 +1536,7 @@ "label\n" "string.text" msgid "Camera" -msgstr "" +msgstr "Cรกmara" #: docking3deffects.ui msgctxt "" @@ -1661,7 +1662,7 @@ "label\n" "string.text" msgid "_Type" -msgstr "" +msgstr "_Tipo" #: docking3deffects.ui msgctxt "" @@ -1670,7 +1671,7 @@ "label\n" "string.text" msgid "_Mode" -msgstr "" +msgstr "_Modo" #: docking3deffects.ui msgctxt "" @@ -1679,7 +1680,7 @@ "label\n" "string.text" msgid "_Projection X" -msgstr "" +msgstr "_Proyecciรณn X" #: docking3deffects.ui msgctxt "" @@ -1688,7 +1689,7 @@ "label\n" "string.text" msgid "P_rojection Y" -msgstr "" +msgstr "P_royecciรณn Y" #: docking3deffects.ui msgctxt "" @@ -1706,7 +1707,7 @@ "tooltip_text\n" "string.text" msgid "Black & White" -msgstr "" +msgstr "Hลฉ ha Morotฤฉ" #: docking3deffects.ui msgctxt "" @@ -1724,7 +1725,7 @@ "tooltip_text\n" "string.text" msgid "Only Texture" -msgstr "" +msgstr "Moรฑe'แบฝrรฃ Aรฑo" #: docking3deffects.ui msgctxt "" @@ -1751,7 +1752,7 @@ "tooltip_text\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Paralelo" #: docking3deffects.ui msgctxt "" @@ -1760,7 +1761,7 @@ "tooltip_text\n" "string.text" msgid "Circular" -msgstr "" +msgstr "Circular" #: docking3deffects.ui msgctxt "" @@ -1778,7 +1779,7 @@ "tooltip_text\n" "string.text" msgid "Parallel" -msgstr "" +msgstr "Paralelo" #: docking3deffects.ui msgctxt "" @@ -1787,7 +1788,7 @@ "tooltip_text\n" "string.text" msgid "Circular" -msgstr "" +msgstr "Circular" #: docking3deffects.ui msgctxt "" @@ -1823,7 +1824,7 @@ "label\n" "string.text" msgid "_Favorites" -msgstr "" +msgstr "_Favoritos" #: docking3deffects.ui msgctxt "" @@ -1868,7 +1869,7 @@ "2\n" "stringlist.text" msgid "Gold" -msgstr "" +msgstr "Oro" #: docking3deffects.ui msgctxt "" @@ -1877,7 +1878,7 @@ "3\n" "stringlist.text" msgid "Chrome" -msgstr "" +msgstr "Cromo" #: docking3deffects.ui msgctxt "" @@ -1886,7 +1887,7 @@ "4\n" "stringlist.text" msgid "Plastic" -msgstr "" +msgstr "Plรกstico" #: docking3deffects.ui msgctxt "" @@ -1922,7 +1923,7 @@ "label\n" "string.text" msgid "Material" -msgstr "" +msgstr "Material" #: docking3deffects.ui msgctxt "" @@ -1976,7 +1977,7 @@ "tooltip_text\n" "string.text" msgid "Update" -msgstr "" +msgstr "Oรฑemoฤฉ al dรญa" #: docking3deffects.ui msgctxt "" @@ -1985,7 +1986,7 @@ "tooltip_text\n" "string.text" msgid "Material" -msgstr "" +msgstr "Material" #: docking3deffects.ui msgctxt "" @@ -2021,7 +2022,7 @@ "tooltip_text\n" "string.text" msgid "Geometry" -msgstr "" +msgstr "Geometrรญa" #: dockingcolorreplace.ui msgctxt "" @@ -2030,7 +2031,7 @@ "title\n" "string.text" msgid "Color Replacer" -msgstr "" +msgstr "Mbyekovia Sa'y" #: dockingcolorreplace.ui msgctxt "" @@ -2075,7 +2076,7 @@ "label\n" "string.text" msgid "Colors" -msgstr "" +msgstr "Sa'y kuรฉra" #: dockingcolorreplace.ui msgctxt "" @@ -2102,7 +2103,7 @@ "title\n" "string.text" msgid "Fontwork" -msgstr "" +msgstr "Fontwork" #: dockingfontwork.ui msgctxt "" @@ -2111,7 +2112,7 @@ "tooltip_text\n" "string.text" msgid "Off" -msgstr "" +msgstr "Mbogue" #: dockingfontwork.ui msgctxt "" @@ -2120,7 +2121,7 @@ "tooltip_text\n" "string.text" msgid "Rotate" -msgstr "" +msgstr "Japajerรฉi" #: dockingfontwork.ui msgctxt "" @@ -2219,7 +2220,7 @@ "tooltip_text\n" "string.text" msgid "Contour" -msgstr "" +msgstr "Contorno" #: dockingfontwork.ui msgctxt "" @@ -2255,7 +2256,7 @@ "tooltip_text\n" "string.text" msgid "Slant" -msgstr "" +msgstr "Jyke" #: dockingfontwork.ui msgctxt "" @@ -2264,7 +2265,7 @@ "tooltip_text\n" "string.text" msgid "Distance X" -msgstr "" +msgstr "Distancia X" #: dockingfontwork.ui msgctxt "" @@ -2273,7 +2274,7 @@ "tooltip_text\n" "string.text" msgid "Distance Y" -msgstr "" +msgstr "Distancia Y" #: dockingfontwork.ui msgctxt "" @@ -2282,7 +2283,7 @@ "tooltip_text\n" "string.text" msgid "Shadow Color" -msgstr "" +msgstr "Sa'y Kuarahy'รฃ" #: docrecoverybrokendialog.ui msgctxt "" @@ -2330,7 +2331,7 @@ "label\n" "string.text" msgid "_Save to:" -msgstr "" +msgstr "_ร‘ongatu en:" #: docrecoverybrokendialog.ui msgctxt "" @@ -2375,7 +2376,7 @@ "label\n" "string.text" msgid "_Start Recovery >" -msgstr "" +msgstr "_ร‘epyrลฉ Recovery >" #: docrecoveryrecoverdialog.ui msgctxt "" @@ -2560,7 +2561,7 @@ "label\n" "string.text" msgid "Replace A_ll" -msgstr "" +msgstr "Mbyekovia O_pavave" #: findreplacedialog.ui msgctxt "" @@ -2596,7 +2597,7 @@ "label\n" "string.text" msgid "Attri_butes..." -msgstr "" +msgstr "Te_ko kuรฉra..." #: findreplacedialog.ui msgctxt "" @@ -2695,7 +2696,7 @@ "label\n" "string.text" msgid "Sounds..." -msgstr "" +msgstr "Pukuรฉra..." #: findreplacedialog.ui msgctxt "" @@ -2722,7 +2723,7 @@ "label\n" "string.text" msgid "Search i_n:" -msgstr "" +msgstr "Heka e_n:" #: findreplacedialog.ui msgctxt "" @@ -2839,7 +2840,7 @@ "label\n" "string.text" msgid "Workspace" -msgstr "" +msgstr "Tembiapo tenda" #: floatingcontour.ui msgctxt "" @@ -2902,7 +2903,7 @@ "label\n" "string.text" msgid "Insert Points" -msgstr "Moฤฉngue Kyta kuรฉra" +msgstr "Moinge Kyta kuรฉra" #: floatingcontour.ui msgctxt "" @@ -3157,7 +3158,7 @@ "title\n" "string.text" msgid "ImageMap Editor" -msgstr "" +msgstr "Editor de ImageMap" #: imapdialog.ui msgctxt "" @@ -3256,7 +3257,7 @@ "label\n" "string.text" msgid "Insert Points" -msgstr "Moฤฉngue Kyta kuรฉra" +msgstr "Moinge Kyta kuรฉra" #: imapdialog.ui msgctxt "" @@ -3733,7 +3734,7 @@ "3\n" "stringlist.text" msgid "Proportional" -msgstr "" +msgstr "Proporcional" #: paralinespacingcontrol.ui msgctxt "" @@ -4194,7 +4195,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Start Date" -msgstr "" +msgstr "Arange ร‘epyrลฉ" #: redlinefilterpage.ui msgctxt "" @@ -4206,7 +4207,6 @@ msgstr "" #: redlinefilterpage.ui -#, fuzzy msgctxt "" "redlinefilterpage.ui\n" "startclock\n" @@ -4243,7 +4243,6 @@ msgstr "" #: redlinefilterpage.ui -#, fuzzy msgctxt "" "redlinefilterpage.ui\n" "endclock\n" @@ -5249,7 +5248,7 @@ "0\n" "stringlist.text" msgid "Flat" -msgstr "" +msgstr "Plano" #: sidebarline.ui msgctxt "" @@ -5573,7 +5572,7 @@ "label\n" "string.text" msgid "_Keep ratio" -msgstr "" +msgstr "_Mantener las proporciones" #: sidebarpossize.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/core/undo.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/core/undo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/core/undo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/core/undo.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 01:07+0000\n" +"PO-Revision-Date: 2015-10-20 18:44+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069627.000000\n" +"X-POOTLE-MTIME: 1445366650.000000\n" #: undo.src msgctxt "" @@ -38,7 +38,7 @@ "STR_INSERT_UNDO\n" "string.text" msgid "Insert $1" -msgstr "Moฤฉngue $1" +msgstr "Moinge $1" #: undo.src msgctxt "" @@ -102,7 +102,7 @@ "STR_INSERT_DOC_UNDO\n" "string.text" msgid "Insert file" -msgstr "Moฤฉngue รฑongatuha" +msgstr "Moinge รฑongatuha" #: undo.src msgctxt "" @@ -110,7 +110,7 @@ "STR_INSERT_GLOSSARY\n" "string.text" msgid "Insert AutoText" -msgstr "Moฤฉngue moรฑe'แบฝrรฃ automรกtico" +msgstr "Moinge moรฑe'แบฝrรฃ automรกtico" #: undo.src msgctxt "" @@ -126,7 +126,7 @@ "STR_INSBOOKMARK\n" "string.text" msgid "Insert bookmark: $1" -msgstr "Moฤฉngue marcador: $1" +msgstr "Moinge marcador: $1" #: undo.src msgctxt "" @@ -150,7 +150,7 @@ "STR_INSTABLE_UNDO\n" "string.text" msgid "Insert table: $1$2$3" -msgstr "Moฤฉngue tabla: $1$2$3" +msgstr "Moinge tabla: $1$2$3" #: undo.src msgctxt "" @@ -190,7 +190,7 @@ "STR_INSERT_PAGE_BREAK_UNDO\n" "string.text" msgid "Insert page break" -msgstr "Moฤฉngue togue รฑekytฤฉ" +msgstr "Moinge togue รฑekytฤฉ" #: undo.src msgctxt "" @@ -198,7 +198,7 @@ "STR_INSERT_COLUMN_BREAK_UNDO\n" "string.text" msgid "Insert column break" -msgstr "Moฤฉngue kytฤฉ columnagui" +msgstr "Moinge kytฤฉ columnagui" #: undo.src msgctxt "" @@ -214,7 +214,7 @@ "STR_INSERT_ENV_UNDO\n" "string.text" msgid "Insert Envelope" -msgstr "Moฤฉngue Sobre" +msgstr "Moinge Sobre" #: undo.src msgctxt "" @@ -238,7 +238,7 @@ "STR_INSERT_CHART\n" "string.text" msgid "Insert %PRODUCTNAME Chart" -msgstr "Moฤฉngue grรกfico %PRODUCTNAME" +msgstr "Moinge grรกfico %PRODUCTNAME" #: undo.src msgctxt "" @@ -246,7 +246,7 @@ "STR_INSERTFLY\n" "string.text" msgid "Insert frame" -msgstr "Moฤฉngue marco" +msgstr "Moinge marco" #: undo.src msgctxt "" @@ -286,7 +286,7 @@ "STR_INSERTSECTION\n" "string.text" msgid "Insert section" -msgstr "Moฤฉngue pehแบฝ" +msgstr "Moinge pehแบฝ" #: undo.src msgctxt "" @@ -366,7 +366,7 @@ "STR_INSNUM\n" "string.text" msgid "Insert numbering" -msgstr "Moฤฉngue numeraciรณn" +msgstr "Moinge numeraciรณn" #: undo.src msgctxt "" @@ -398,7 +398,7 @@ "STR_INSERTDRAW\n" "string.text" msgid "Insert drawing object: $1" -msgstr "Moฤฉngue mba'e dibรบjogui: $1" +msgstr "Moinge mba'e dibรบjogui: $1" #: undo.src msgctxt "" @@ -430,7 +430,7 @@ "STR_INSERTLABEL\n" "string.text" msgid "Insert caption: $1" -msgstr "Moฤฉngue subtรญtulo: $1" +msgstr "Moinge subtรญtulo: $1" #: undo.src msgctxt "" @@ -590,7 +590,7 @@ "STR_TABLE_INSCOL\n" "string.text" msgid "Insert Column" -msgstr "Moฤฉngue Columna" +msgstr "Moinge Columna" #: undo.src msgctxt "" @@ -598,7 +598,7 @@ "STR_TABLE_INSROW\n" "string.text" msgid "Insert Row" -msgstr "Moฤฉngue Tysแปนi" +msgstr "Moinge Tysแปนi" #: undo.src msgctxt "" @@ -654,7 +654,7 @@ "STR_INSERT_TOX\n" "string.text" msgid "Insert index/table" -msgstr "Moฤฉngue รญndice/tabla" +msgstr "Moinge รญndice/tabla" #: undo.src msgctxt "" @@ -758,7 +758,7 @@ "STR_INSERT_FOOTNOTE\n" "string.text" msgid "Insert footnote" -msgstr "Moฤฉngue nota" +msgstr "Moinge nota" #: undo.src msgctxt "" @@ -766,7 +766,7 @@ "STR_INSERT_URLBTN\n" "string.text" msgid "insert URL button" -msgstr "moฤฉngue votรต URL" +msgstr "moinge votรต URL" #: undo.src msgctxt "" @@ -774,7 +774,7 @@ "STR_INSERT_URLTXT\n" "string.text" msgid "Insert Hyperlink" -msgstr "Moฤฉngue Hiperenlace" +msgstr "Moinge Hiperenlace" #: undo.src msgctxt "" @@ -902,7 +902,7 @@ "STR_REDLINE_INSERT\n" "string.text" msgid "Insert $1" -msgstr "Moฤฉngue $1" +msgstr "Moinge $1" #: undo.src msgctxt "" @@ -1110,7 +1110,7 @@ "STR_UNDO_INDEX_ENTRY_INSERT\n" "string.text" msgid "Insert index entry" -msgstr "Moฤฉngue jeikeha รญndice gui" +msgstr "Moinge jeikeha รญndice gui" #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-09-16 15:34+0000\n" +"PO-Revision-Date: 2015-10-20 18:45+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417640.000000\n" +"X-POOTLE-MTIME: 1445366709.000000\n" #: app.src msgctxt "" @@ -623,7 +623,7 @@ "STR_STATSTR_TOX_INSERT\n" "string.text" msgid "Inserting Index..." -msgstr "Moฤฉngue รญndice..." +msgstr "Moinge รญndice..." #: app.src msgctxt "" @@ -989,7 +989,7 @@ "STR_AUTHMRK_INSERT\n" "string.text" msgid "Insert Bibliography Entry" -msgstr "Moฤฉngue Jeikeha Bibliogrรกfica" +msgstr "Moinge Jeikeha Bibliogrรกfica" #: app.src msgctxt "" @@ -1274,7 +1274,7 @@ "ERR_CODE ( ERRCODE_CLASS_NONE , ERR_TBLINSCOL_ERROR )\n" "string.text" msgid "Additional columns cannot be inserted." -msgstr "Nikatรบi moฤฉngue columnasve." +msgstr "Nikatรบi moinge columnasve." #: error.src msgctxt "" @@ -1566,7 +1566,7 @@ "FN_INSERT_CAPTION\n" "menuitem.text" msgid "Insert ~Caption..." -msgstr "Moฤฉngue ~Subtรญtulo..." +msgstr "Moinge ~Subtรญtulo..." #: mn.src msgctxt "" @@ -1575,7 +1575,7 @@ "FN_TABLE_INSERT_ROW_BEFORE\n" "menuitem.text" msgid "Rows Above" -msgstr "" +msgstr "Tysแปนi Hi'รกri" #: mn.src msgctxt "" @@ -1584,7 +1584,7 @@ "FN_TABLE_INSERT_ROW_AFTER\n" "menuitem.text" msgid "Rows Below" -msgstr "" +msgstr "Tysแปนi Vรฝpe" #: mn.src msgctxt "" @@ -1629,7 +1629,7 @@ "DUMMY\n" "menuitem.text" msgid "~Insert" -msgstr "~Moฤฉngue" +msgstr "~Moinge" #: mn.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/config.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/config.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/config.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/config.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-17 02:22+0000\n" +"PO-Revision-Date: 2015-10-20 18:45+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439778174.000000\n" +"X-POOTLE-MTIME: 1445366736.000000\n" #: optdlg.src msgctxt "" @@ -137,7 +137,7 @@ "Print ~automatically inserted blank pages\n" "itemlist.text" msgid "Print ~automatically inserted blank pages" -msgstr "Ojeimprimi rogue kuรฉra morotฤฉpe oรฑemoฤฉngue va'ekue ~automรกticamente" +msgstr "Ojeimprimi rogue kuรฉra morotฤฉpe oรฑemoinge va'ekue ~automรกticamente" #: optdlg.src msgctxt "" @@ -245,7 +245,7 @@ "Include\n" "itemlist.text" msgid "Include" -msgstr "Moฤฉngue" +msgstr "Moinge" #: optdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/dbui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/dbui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/dbui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/dbui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:45+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893894.000000\n" +"X-POOTLE-MTIME: 1445366740.000000\n" #: dbui.src msgctxt "" @@ -322,7 +322,7 @@ "ST_ADDRESSBLOCK\n" "string.text" msgid "Insert address block" -msgstr "Moฤฉngue bloque direcciรณn gui" +msgstr "Moinge bloque direcciรณn gui" #: mailmergewizard.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/dochdl.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/dochdl.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/dochdl.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/dochdl.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:44+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:45+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893895.000000\n" +"X-POOTLE-MTIME: 1445366752.000000\n" #: dochdl.src msgctxt "" @@ -30,7 +30,7 @@ "STR_NO_TABLE\n" "string.text" msgid "A table cannot be inserted into another table. However, you can paste the data into the document when the cursor is not in a table." -msgstr "Nikatรบi moฤฉngue peteฤฉ tabla ambue tablape. Sin embargo; ikatu ojemboja datos documentope, cursor noirฤฉ jave tablape." +msgstr "Nikatรบi moinge peteฤฉ tabla ambue tablape. Sin embargo; ikatu ojemboja datos documentope, cursor noirฤฉ jave tablape." #: dochdl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/fldui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/fldui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/fldui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/fldui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 01:08+0000\n" +"PO-Revision-Date: 2015-10-20 18:46+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069689.000000\n" +"X-POOTLE-MTIME: 1445366767.000000\n" #: fldui.src msgctxt "" @@ -118,7 +118,7 @@ "STR_FORMELFLD\n" "string.text" msgid "Insert Formula" -msgstr "Moฤฉngue Fรณrmula" +msgstr "Moinge Fรณrmula" #: fldui.src msgctxt "" @@ -238,7 +238,7 @@ "STR_GETREFFLD\n" "string.text" msgid "Insert Reference" -msgstr "Moฤฉngue Referencia" +msgstr "Moinge Referencia" #: fldui.src msgctxt "" @@ -950,7 +950,7 @@ "STR_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: fldui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/frmdlg.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/frmdlg.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/frmdlg.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/frmdlg.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:45+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:46+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893900.000000\n" +"X-POOTLE-MTIME: 1445366771.000000\n" #: frmui.src msgctxt "" @@ -134,7 +134,7 @@ "STR_OLE_INSERT\n" "string.text" msgid "Insert object" -msgstr "Moฤฉngue mba'e" +msgstr "Moinge mba'e" #: frmui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/index.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/index.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/index.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/index.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-06 20:45+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 18:46+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893901.000000\n" +"X-POOTLE-MTIME: 1445366775.000000\n" #: cnttab.src msgctxt "" @@ -323,7 +323,7 @@ "STR_IDXMRK_INSERT\n" "string.text" msgid "Insert Index Entry" -msgstr "Moฤฉngue jeikeha รญndice" +msgstr "Moinge jeikeha รญndice" #: idxmrk.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/shells.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/shells.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/shells.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/shells.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 01:08+0000\n" +"PO-Revision-Date: 2015-10-20 18:46+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069692.000000\n" +"X-POOTLE-MTIME: 1445366791.000000\n" #: shells.src msgctxt "" @@ -62,7 +62,7 @@ "STR_GRFILTER_TOOBIG\n" "string.text" msgid "Not enough memory to insert the image." -msgstr "Naipรณri heta porรฃ mandu'a emoingue haguรฃ ta'anga." +msgstr "Naipรณri heta porรฃ mandu'a emoinge haguรฃ ta'anga." #: shells.src msgctxt "" @@ -70,7 +70,7 @@ "STR_INSERT_GRAPHIC\n" "string.text" msgid "Insert Image" -msgstr "Moฤฉngue Ta'anga" +msgstr "Moinge Ta'anga" #: shells.src msgctxt "" @@ -204,7 +204,7 @@ "STR_PAGE_COUNT_CUSTOM\n" "string.text" msgid "Page %1 of %2 (Page %3)" -msgstr "Rogue %1 of %2 (Rogue %3)" +msgstr "Rogue %1 de %2 (Rogue %3)" #: shells.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1658,7 +1658,7 @@ "STR_EVENT_START_INS_GLOSSARY\n" "string.text" msgid "Before inserting AutoText" -msgstr "Moฤฉngue mboyve moรฑe'แบฝrรฃ automรกtico" +msgstr "Moinge mboyve moรฑe'แบฝrรฃ automรกtico" #: utlui.src msgctxt "" @@ -1666,7 +1666,7 @@ "STR_EVENT_END_INS_GLOSSARY\n" "string.text" msgid "After inserting AutoText" -msgstr "Moฤฉngue rire moรฑe'แบฝrรฃ automรกtico" +msgstr "Moinge rire moรฑe'แบฝrรฃ automรกtico" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/uibase/docvw.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/uibase/docvw.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/uibase/docvw.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/uibase/docvw.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-01 01:08+0000\n" +"PO-Revision-Date: 2015-10-20 18:47+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069731.000000\n" +"X-POOTLE-MTIME: 1445366871.000000\n" #: docvw.src msgctxt "" @@ -294,7 +294,7 @@ "STR_REDLINE_INSERT\n" "string.text" msgid "Inserted" -msgstr "Ojemoฤฉngue va'ekue" +msgstr "Ojemoinge va'ekue" #: docvw.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/uibase/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/uibase/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/source/uibase/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/source/uibase/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-09-01 01:09+0000\n" +"PO-Revision-Date: 2015-10-20 18:48+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441069787.000000\n" +"X-POOTLE-MTIME: 1445366921.000000\n" #: attrdesc.src msgctxt "" @@ -1643,7 +1643,7 @@ "FN_GLOBAL_OPEN\n" "toolboxitem.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: navipi.src msgctxt "" @@ -1694,7 +1694,7 @@ "ST_HYPERLINK\n" "string.text" msgid "Insert as Hyperlink" -msgstr "Moฤฉngue hiperenlace icha" +msgstr "Moinge hiperenlace icha" #: navipi.src msgctxt "" @@ -1702,7 +1702,7 @@ "ST_LINK_REGION\n" "string.text" msgid "Insert as Link" -msgstr "Moฤฉngue lรญnkcha" +msgstr "Moinge lรญnkcha" #: navipi.src msgctxt "" @@ -1710,7 +1710,7 @@ "ST_COPY_REGION\n" "string.text" msgid "Insert as Copy" -msgstr "Moฤฉngue Kรณpiaicha" +msgstr "Moinge Kรณpiaicha" #: navipi.src msgctxt "" @@ -1790,7 +1790,7 @@ "ST_INSERT\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: navipi.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-09-16 15:34+0000\n" +"PO-Revision-Date: 2015-10-20 19:17+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417651.000000\n" +"X-POOTLE-MTIME: 1445368644.000000\n" #: abstractdialog.ui msgctxt "" @@ -32,7 +32,7 @@ "label\n" "string.text" msgid "Included outline levels" -msgstr "Niveles trazado gui oรฑemoฤฉngue va'ekue" +msgstr "Niveles trazado gui oรฑemoinge va'ekue" #: abstractdialog.ui msgctxt "" @@ -50,7 +50,7 @@ "label\n" "string.text" msgid "The abstract contains the selected number of paragraphs from the included outline levels." -msgstr "Resumen oguereko papapy ojeporavo va'ekue pรกrrafosgui niveles de esquema oรฑemoฤฉngue va'ekue." +msgstr "Resumen oguereko papapy ojeporavo va'ekue pรกrrafosgui niveles de esquema oรฑemoinge va'ekue." #: abstractdialog.ui msgctxt "" @@ -653,7 +653,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: autotext.ui msgctxt "" @@ -842,7 +842,7 @@ "title\n" "string.text" msgid "Insert Bibliography Entry" -msgstr "Moฤฉngue Jeikeha Bibliogrรกfica" +msgstr "Moinge Jeikeha Bibliogrรกfica" #: bibliographyentry.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: bibliographyentry.ui msgctxt "" @@ -1400,7 +1400,7 @@ "tooltip_markup\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: cardmediumpage.ui msgctxt "" @@ -2687,7 +2687,7 @@ "label\n" "string.text" msgid "_Embed fonts in the document" -msgstr "_ร‘emoingue letra hรกicha documentope" +msgstr "_ร‘emoinge letra hรกicha documentope" #: dropcapspage.ui msgctxt "" @@ -3173,7 +3173,7 @@ "tooltip_markup\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: envaddresspage.ui msgctxt "" @@ -3218,7 +3218,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: envdialog.ui msgctxt "" @@ -3699,7 +3699,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: fielddialog.ui msgctxt "" @@ -4176,7 +4176,7 @@ "label\n" "string.text" msgid "Insert _reference to" -msgstr "Moฤฉngue _referencia en" +msgstr "Moinge _referencia en" #: fldrefpage.ui msgctxt "" @@ -5823,7 +5823,7 @@ "title\n" "string.text" msgid "Insert Index Entry" -msgstr "Moฤฉngue รndice Jeikeha" +msgstr "Moinge รndice Jeikeha" #: indexentry.ui msgctxt "" @@ -5832,7 +5832,7 @@ "label\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: indexentry.ui msgctxt "" @@ -6030,7 +6030,7 @@ "title\n" "string.text" msgid "Insert AutoText" -msgstr "Moฤฉngue Moรฑe'แบฝrรฃ Automรกtico" +msgstr "Moinge Moรฑe'แบฝrรฃ Automรกtico" #: insertautotextdialog.ui msgctxt "" @@ -6048,7 +6048,7 @@ "title\n" "string.text" msgid "Insert Bookmark" -msgstr "Moฤฉngue Marcador" +msgstr "Moinge Marcador" #: insertbookmark.ui msgctxt "" @@ -6066,7 +6066,7 @@ "title\n" "string.text" msgid "Insert Break" -msgstr "Moฤฉngue Kytฤฉ" +msgstr "Moinge Kytฤฉ" #: insertbreak.ui msgctxt "" @@ -6138,7 +6138,7 @@ "title\n" "string.text" msgid "Insert Caption" -msgstr "Moฤฉngue Subtรญtulo" +msgstr "Moinge Subtรญtulo" #: insertcaption.ui msgctxt "" @@ -6264,7 +6264,7 @@ "title\n" "string.text" msgid "Insert Database Columns" -msgstr "Moฤฉngue columnas de base de datos" +msgstr "Moinge columnas de base de datos" #: insertdbcolumnsdialog.ui msgctxt "" @@ -6273,7 +6273,7 @@ "label\n" "string.text" msgid "Insert data as:" -msgstr "Moฤฉngue dato icha:" +msgstr "Moinge dato icha:" #: insertdbcolumnsdialog.ui msgctxt "" @@ -6327,7 +6327,7 @@ "label\n" "string.text" msgid "Insert table heading" -msgstr "Moฤฉngue oรฑemoakรฃva tablagui" +msgstr "Moinge oรฑemoakรฃva tablagui" #: insertdbcolumnsdialog.ui msgctxt "" @@ -6408,7 +6408,7 @@ "title\n" "string.text" msgid "Insert Footnote/Endnote" -msgstr "Moฤฉngue Nota/Nota Paha" +msgstr "Moinge Nota/Nota Paha" #: insertfootnote.ui msgctxt "" @@ -6489,7 +6489,7 @@ "title\n" "string.text" msgid "Insert Script" -msgstr "Moฤฉngue Script" +msgstr "Moinge Script" #: insertscript.ui msgctxt "" @@ -6543,7 +6543,7 @@ "title\n" "string.text" msgid "Insert Section" -msgstr "Moฤฉngue Pehแบฝ" +msgstr "Moinge Pehแบฝ" #: insertsectiondialog.ui msgctxt "" @@ -6552,7 +6552,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: insertsectiondialog.ui msgctxt "" @@ -6606,7 +6606,7 @@ "title\n" "string.text" msgid "Insert Table" -msgstr "Moฤฉngue Tabla" +msgstr "Moinge Tabla" #: inserttable.ui msgctxt "" @@ -6615,7 +6615,7 @@ "label\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: inserttable.ui msgctxt "" @@ -7119,7 +7119,7 @@ "label\n" "string.text" msgid "Include header and footer" -msgstr "Moฤฉngue omoakรฃ ha py roguรฉgui" +msgstr "Moinge omoakรฃ ha py roguรฉgui" #: linenumbering.ui msgctxt "" @@ -7803,7 +7803,7 @@ "label\n" "string.text" msgid "Insert Address Block" -msgstr "Moฤฉngue bloque direcciรณn gui" +msgstr "Moinge bloque direcciรณn gui" #: mmcreatingdialog.ui msgctxt "" @@ -8073,7 +8073,7 @@ "label\n" "string.text" msgid "Insert personalized salutation" -msgstr "Moฤฉngue maitei myatyrรต ava rehegua" +msgstr "Moinge maitei myatyrรต ava rehegua" #: mmmergepage.ui msgctxt "" @@ -8736,7 +8736,7 @@ "label\n" "string.text" msgid "Insert personalized salutation" -msgstr "Moฤฉngue maitei myatyrรต ava rehegua" +msgstr "Moinge maitei myatyrรต ava rehegua" #: mmsalutationpage.ui msgctxt "" @@ -9459,8 +9459,8 @@ "Add captions automatically\n" "when inserting:" msgstr "" -"Moฤฉngue subtรญtulo\n" -"automรกticamente remoingue jave:" +"Moinge subtรญtulo\n" +"automรกticamente remoinge jave:" #: optcaptionpage.ui msgctxt "" @@ -9577,7 +9577,7 @@ "1\n" "stringlist.text" msgid "Add spacing between paragraphs and tables (in current document)" -msgstr "Moฤฉngue pa'ลฉ pรกrrafos ha tablas mbytรฉpe (ko รฃgagua documento)" +msgstr "Moinge pa'ลฉ pรกrrafos ha tablas mbytรฉpe (ko รฃgagua documento)" #: optcompatpage.ui msgctxt "" @@ -9586,7 +9586,7 @@ "2\n" "stringlist.text" msgid "Add paragraph and table spacing at tops of pages (in current document)" -msgstr "Moฤฉngue pa'ลฉ pรกrrafo ha tabla oรฑepแปนruhรกpe (ko'รฃgagua documento)" +msgstr "Moinge pa'ลฉ pรกrrafo ha tabla oรฑepแปนruhรกpe (ko'รฃgagua documento)" #: optcompatpage.ui msgctxt "" @@ -9622,7 +9622,7 @@ "6\n" "stringlist.text" msgid "Add paragraph and table spacing at bottom of table cells" -msgstr "Moฤฉngue pa'ลฉ pรกrrafogui ha tabla yvรฝpe koty'i tablasgui" +msgstr "Moinge pa'ลฉ pรกrrafogui ha tabla yvรฝpe koty'i tablasgui" #: optcompatpage.ui msgctxt "" @@ -9901,7 +9901,7 @@ "label\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: optformataidspage.ui msgctxt "" @@ -10243,16 +10243,17 @@ "text\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: optredlinepage.ui +#, fuzzy msgctxt "" "optredlinepage.ui\n" "label2\n" "label\n" "string.text" msgid "Insertions" -msgstr "Moฤฉngue kuรฉra" +msgstr "Moinge kuรฉra" #: optredlinepage.ui msgctxt "" @@ -10603,7 +10604,7 @@ "label\n" "string.text" msgid "Insert cell" -msgstr "Moฤฉngue koty'i" +msgstr "Moinge koty'i" #: opttablepage.ui msgctxt "" @@ -11390,7 +11391,7 @@ "label\n" "string.text" msgid "Print automatically inserted blank pages" -msgstr "Imprimir rogue kuรฉra morotฤฉpe ojemoฤฉngue va'ekue automรกticamente" +msgstr "Imprimir rogue kuรฉra morotฤฉpe ojemoinge va'ekue automรกticamente" #: printeroptions.ui msgctxt "" @@ -11624,7 +11625,7 @@ "label\n" "string.text" msgid "Print _automatically inserted blank pages" -msgstr "Imprimir rogue kuรฉra morotฤฉpe ojemoฤฉngue va'ekue _automรกticamente" +msgstr "Imprimir rogue kuรฉra morotฤฉpe ojemoinge va'ekue _automรกticamente" #: printoptionspage.ui msgctxt "" @@ -12533,7 +12534,7 @@ "label\n" "string.text" msgid "N_ever include the country/region" -msgstr "A_raka'eve moฤฉngue Tetรฃ/Region" +msgstr "A_raka'eve moinge Tetรฃ/Region" #: selectblockdialog.ui msgctxt "" @@ -12542,7 +12543,7 @@ "label\n" "string.text" msgid "_Always include the country/region" -msgstr "_Tapia moฤฉngue Tetรฃ/Region" +msgstr "_Tapia moinge Tetรฃ/Region" #: selectblockdialog.ui msgctxt "" @@ -12551,7 +12552,7 @@ "label\n" "string.text" msgid "Only _include the country/region if it is not:" -msgstr "_Moingue'aรฑo Tetรฃ/Region ndahaeฤฉro:" +msgstr "_Moinge aรฑo Tetรฃ/Region ndahaeฤฉro:" #: selectblockdialog.ui msgctxt "" @@ -14288,7 +14289,7 @@ "label\n" "string.text" msgid "Insert new title pages" -msgstr "Moฤฉngue rogue pyahu tรญtulogui" +msgstr "Moinge rogue pyahu tรญtulogui" #: titlepage.ui msgctxt "" @@ -14396,7 +14397,7 @@ "title\n" "string.text" msgid "Insert Index/Table" -msgstr "Moฤฉngue รndice/Tabla" +msgstr "Moinge รndice/Tabla" #: tocdialog.ui msgctxt "" @@ -14612,7 +14613,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "_Moฤฉngue" +msgstr "_Moinge" #: tocentriespage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/uui/source.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/uui/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/uui/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/uui/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-06 20:46+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 19:17+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438893971.000000\n" +"X-POOTLE-MTIME: 1445368647.000000\n" #: alreadyopen.src msgctxt "" @@ -501,7 +501,7 @@ "(ERRCODE_UUI_IO_NOTEXISTS_FOLDER & ERRCODE_RES_MASK)\n" "string.text" msgid "Folder $(ARG1) does not exist." -msgstr "Carpeta $(ARG1) naipรณri." +msgstr "Karpeta $(ARG1) naipรณri." #: ids.src msgctxt "" @@ -591,7 +591,7 @@ "(ERRCODE_UUI_WRONGMEDIUM & ERRCODE_RES_MASK)\n" "string.text" msgid "Please insert disk $(ARG1)." -msgstr "Moฤฉngue el disco $(ARG1)." +msgstr "Moinge el disco $(ARG1)." #: ids.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/uui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/uui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/uui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/uui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-16 15:34+0000\n" +"PO-Revision-Date: 2015-10-07 19:05+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442417688.000000\n" +"X-POOTLE-MTIME: 1444244701.000000\n" #: authfallback.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "_Browseโ€ฆ" -msgstr "" +msgstr "_Kundaha..." #: logindialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/vcl/source/edit.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/vcl/source/edit.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/vcl/source/edit.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/vcl/source/edit.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-04-11 02:17+0000\n" -"Last-Translator: Giovanni \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-20 19:17+0000\n" +"Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" -"Language: gn\n" +"Language: gug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1428718656.000000\n" +"X-POOTLE-MTIME: 1445368658.000000\n" #: textundo.src msgctxt "" @@ -38,7 +38,7 @@ "STR_TEXTUNDO_SPLITPARA\n" "string.text" msgid "insert multiple lines" -msgstr "moฤฉngue lรญneas mรบltiples" +msgstr "moinge lรญneas mรบltiples" #: textundo.src msgctxt "" @@ -46,7 +46,7 @@ "STR_TEXTUNDO_INSERTCHARS\n" "string.text" msgid "insert '$1'" -msgstr "moฤฉngue '$1'" +msgstr "moinge '$1'" #: textundo.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/vcl/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/vcl/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/vcl/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-08-17 01:49+0000\n" +"PO-Revision-Date: 2015-10-20 19:17+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439776191.000000\n" +"X-POOTLE-MTIME: 1445368662.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -314,7 +314,7 @@ "STR_FPICKER_INSERT_AS_LINK\n" "string.text" msgid "Insert as ~Link" -msgstr "Moฤฉngue ~Lรญnkcha" +msgstr "Moinge ~Lรญnkcha" #: fpicker.src msgctxt "" @@ -378,7 +378,7 @@ "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION\n" "string.text" msgid "Please select a folder." -msgstr "Eiporavo peteฤฉ carpeta." +msgstr "Eiporavo peteฤฉ karpeta." #: fpicker.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/gug/wizards/source/formwizard.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/wizards/source/formwizard.po --- libreoffice-l10n-5.0.2~rc2/translations/source/gug/wizards/source/formwizard.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/gug/wizards/source/formwizard.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-16 17:27+0000\n" +"PO-Revision-Date: 2015-10-20 19:17+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: LANGUAGE \n" "Language: gug\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442424452.000000\n" +"X-POOTLE-MTIME: 1445368666.000000\n" #: dbwizres.src msgctxt "" @@ -5698,7 +5698,7 @@ "RID_AGENDAWIZARDDIALOG_START +68\n" "string.text" msgid "Insert" -msgstr "Moฤฉngue" +msgstr "Moinge" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/he/desktop/source/deployment/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/he/desktop/source/deployment/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/he/desktop/source/deployment/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/he/desktop/source/deployment/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2014-12-16 06:40+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"PO-Revision-Date: 2015-09-24 23:10+0000\n" +"Last-Translator: Lior Kaplan \n" "Language-Team: LANGUAGE \n" "Language: he\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418712001.000000\n" +"X-POOTLE-MTIME: 1443136240.000000\n" #: dp_misc.src msgctxt "" @@ -41,10 +41,9 @@ msgstr "ื”ื”ืจื—ื‘ื” ืœื ืชื•ืžื›ืช ื‘-OpenOffice.org ืžื’ืจืกืื•ืช ื’ื“ื•ืœื•ืช ืž-%VERSION" #: dp_misc.src -#, fuzzy msgctxt "" "dp_misc.src\n" "RID_DEPLOYMENT_DEPENDENCIES_LO_MIN\n" "string.text" msgid "Extension requires at least %PRODUCTNAME version %VERSION" -msgstr "ื”ืจื—ื‘ื” ื–ืงื•ืงื” ืœืคื—ื•ืช ืœ-LibreOffice ืžื’ืจืกื” %VERSION" +msgstr "ื”ืจื—ื‘ื” ื–ืงื•ืงื” ืœืคื—ื•ืช ืœ-%PRODUCTNAME ืžื’ืจืกื” %VERSION" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2013-12-30 10:14+0000\n" -"Last-Translator: Yaron \n" +"PO-Revision-Date: 2015-09-24 23:15+0000\n" +"Last-Translator: Lior Kaplan \n" "Language-Team: LANGUAGE \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388398492.0\n" +"X-POOTLE-MTIME: 1443136505.000000\n" #: ActionTe.ulf msgctxt "" @@ -3342,7 +3342,7 @@ "OOO_ERROR_70\n" "LngText.text" msgid "The file [2][3] is being held in use {by the following process: Name: [4], ID: [5], Window Title: [6]}. Close that application and retry." -msgstr "ื”ืงื•ื‘ืฅ โ€โ€ช[2][3]โ€ฌโ€ ื ืขื•ืœ {ืขืœ ื™ื“ื™ ื”ืชื”ืœื™ืš: [4] โ€โ€ชIDโ€ฌโ€: [5], ื›ื•ืชืจืช ื—ืœื•ืŸ : [6]}. ื ื ืœืกื’ื•ืจ ืืช ื”ื™ื™ืฉื•ื ื”ื–ื” ื•ืœื ืกื•ืช ืฉื•ื‘.โ€" +msgstr "ื”ืงื•ื‘ืฅ โ€โ€ช[2][3]โ€ฌโ€ ื ืขื•ืœ {ืขืœ ื™ื“ื™ ื”ืชื”ืœื™ืš: [4], โ€ชIDโ€ฌโ€: [5], ื›ื•ืชืจืช ื—ืœื•ืŸ: [6]}. ื ื ืœืกื’ื•ืจ ืืช ื”ื™ื™ืฉื•ื ื”ื–ื” ื•ืœื ืกื•ืช ืฉื•ื‘.โ€" #: Error.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/he/svtools/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/he/svtools/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/he/svtools/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/he/svtools/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 15:18+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-24 23:15+0000\n" +"Last-Translator: Lior Kaplan \n" "Language-Team: none\n" "Language: he\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431443902.000000\n" +"X-POOTLE-MTIME: 1443136532.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -136,14 +136,13 @@ msgstr "ื”ืฉืžืช ืฉื“ื•ืช" #: graphicexport.ui -#, fuzzy msgctxt "" "graphicexport.ui\n" "GraphicExportDialog\n" "title\n" "string.text" msgid "%1 Options" -msgstr " ืืคืฉืจื•ื™ื•ืช" +msgstr "%1 ืืคืฉืจื•ื™ื•ืช" #: graphicexport.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/hi/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/hi/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/hi/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/hi/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/hi/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/hi/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/hi/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/hi/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/hu/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/hu/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/hu/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/hu/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.0.3~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/hu/helpcontent2/source/text/scalc/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" "PO-Revision-Date: 2015-08-23 17:12+0000\n" -"Last-Translator: Christian Lohmaier \n" +"Last-Translator: system user <>\n" "Language-Team: Magyar \n" "Language: hu\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/inc.po libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/inc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/inc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/inc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-12 17:24+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-10 15:09+0000\n" +"Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431451478.000000\n" +"X-POOTLE-MTIME: 1444489794.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -382,7 +382,7 @@ "ITEM_OBJECT_CROP\n" "#define.text" msgid "Crop I~mage" -msgstr "" +msgstr "Pa~ngkas Citra" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-05-12 17:25+0000\n" +"PO-Revision-Date: 2015-10-11 02:36+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431451535.000000\n" +"X-POOTLE-MTIME: 1444530974.000000\n" #: bmpmask.src msgctxt "" @@ -2879,13 +2879,12 @@ msgstr "Kunci pencarian tidak ditemukan" #: srchdlg.src -#, fuzzy msgctxt "" "srchdlg.src\n" "RID_SVXSTR_SEARCH_START\n" "string.text" msgid "Reached the beginning of the document" -msgstr "Mencapai akhir dokumen" +msgstr "Mencapai awal dokumen" #: svxbmpnumvalueset.src msgctxt "" @@ -6210,7 +6209,7 @@ "RID_SUBSETSTR_GEOMETRIC_SHAPES_EXTENDED\n" "string.text" msgid "Geometric Shapes Extended" -msgstr "" +msgstr "Bentuk Geometri Diperluas" #: ucsubset.src msgctxt "" @@ -6219,7 +6218,7 @@ "RID_SUBSETSTR_GRANTHA\n" "string.text" msgid "Grantha" -msgstr "" +msgstr "Grantha" #: ucsubset.src msgctxt "" @@ -6228,7 +6227,7 @@ "RID_SUBSETSTR_KHOJKI\n" "string.text" msgid "Khojki" -msgstr "" +msgstr "Khojki" #: ucsubset.src msgctxt "" @@ -6237,7 +6236,7 @@ "RID_SUBSETSTR_KHUDAWADI\n" "string.text" msgid "Khudawadi" -msgstr "" +msgstr "Khudawadi" #: ucsubset.src #, fuzzy @@ -6256,7 +6255,7 @@ "RID_SUBSETSTR_LINEAR_A\n" "string.text" msgid "Linear A" -msgstr "" +msgstr "Linear A" #: ucsubset.src msgctxt "" @@ -6265,7 +6264,7 @@ "RID_SUBSETSTR_MAHAJANI\n" "string.text" msgid "Mahajani" -msgstr "" +msgstr "Mahajani" #: ucsubset.src msgctxt "" @@ -6274,7 +6273,7 @@ "RID_SUBSETSTR_MANICHAEAN\n" "string.text" msgid "Manichaean" -msgstr "" +msgstr "Manichaean" #: ucsubset.src msgctxt "" @@ -6283,7 +6282,7 @@ "RID_SUBSETSTR_MENDE_KIKAKUI\n" "string.text" msgid "Mende Kikakui" -msgstr "" +msgstr "Mende Kikakui" #: ucsubset.src msgctxt "" @@ -6292,7 +6291,7 @@ "RID_SUBSETSTR_MODI\n" "string.text" msgid "Modi" -msgstr "" +msgstr "Modi" #: ucsubset.src msgctxt "" @@ -6301,7 +6300,7 @@ "RID_SUBSETSTR_MRO\n" "string.text" msgid "Mro" -msgstr "" +msgstr "Mro" #: ucsubset.src #, fuzzy @@ -6320,10 +6319,9 @@ "RID_SUBSETSTR_NABATAEAN\n" "string.text" msgid "Nabataean" -msgstr "" +msgstr "Nabataean" #: ucsubset.src -#, fuzzy msgctxt "" "ucsubset.src\n" "RID_SUBSETMAP\n" @@ -6357,7 +6355,7 @@ "RID_SUBSETSTR_PAHAWH_HMONG\n" "string.text" msgid "Pahawh Hmong" -msgstr "" +msgstr "Pahawh Hmong" #: ucsubset.src msgctxt "" @@ -6366,7 +6364,7 @@ "RID_SUBSETSTR_PALMYRENE\n" "string.text" msgid "Palmyrene" -msgstr "" +msgstr "Palmyrene" #: ucsubset.src msgctxt "" @@ -6375,7 +6373,7 @@ "RID_SUBSETSTR_PAU_CIN_HAU\n" "string.text" msgid "Pau Cin Hau" -msgstr "" +msgstr "Pau Cin Hau" #: ucsubset.src msgctxt "" @@ -6384,7 +6382,7 @@ "RID_SUBSETSTR_PSALTER_PAHLAVI\n" "string.text" msgid "Psalter Pahlavi" -msgstr "" +msgstr "Psalter Pahlavi" #: ucsubset.src msgctxt "" @@ -6402,7 +6400,7 @@ "RID_SUBSETSTR_SIDDHAM\n" "string.text" msgid "Siddham" -msgstr "" +msgstr "Siddham" #: ucsubset.src msgctxt "" @@ -6430,7 +6428,7 @@ "RID_SUBSETSTR_TIRHUTA\n" "string.text" msgid "Tirhuta" -msgstr "" +msgstr "Tirhuta" #: ucsubset.src msgctxt "" @@ -6439,4 +6437,4 @@ "RID_SUBSETSTR_WARANG_CITI\n" "string.text" msgid "Warang Citi" -msgstr "" +msgstr "Warang Citi" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/source/items.po libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/source/items.po --- libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/source/items.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/source/items.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2014-07-30 11:03+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 02:37+0000\n" +"Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406718231.000000\n" +"X-POOTLE-MTIME: 1444531026.000000\n" #: svxerr.src msgctxt "" @@ -550,7 +550,7 @@ "Paragraph indent\n" "itemlist.text" msgid "Paragraph indent" -msgstr "" +msgstr "Indentasi paragraf" #: svxitems.src msgctxt "" @@ -775,7 +775,7 @@ "Character scaling\n" "itemlist.text" msgid "Character scaling" -msgstr "" +msgstr "Penskalaan karakter" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/source/stbctrls.po libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/source/stbctrls.po --- libreoffice-l10n-5.0.2~rc2/translations/source/id/svx/source/stbctrls.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/source/stbctrls.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-05-12 17:26+0000\n" +"PO-Revision-Date: 2015-10-11 02:38+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431451619.000000\n" +"X-POOTLE-MTIME: 1444531088.000000\n" #: stbctrls.src msgctxt "" @@ -187,7 +187,7 @@ "RID_SVXSTR_ZOOM_25\n" "string.text" msgid "25%" -msgstr "" +msgstr "25%" #: stbctrls.src msgctxt "" @@ -195,7 +195,7 @@ "RID_SVXSTR_ZOOM_50\n" "string.text" msgid "50%" -msgstr "" +msgstr "50%" #: stbctrls.src msgctxt "" @@ -203,7 +203,7 @@ "RID_SVXSTR_ZOOM_75\n" "string.text" msgid "75%" -msgstr "" +msgstr "75%" #: stbctrls.src msgctxt "" @@ -211,7 +211,7 @@ "RID_SVXSTR_ZOOM_100\n" "string.text" msgid "100%" -msgstr "" +msgstr "100%" #: stbctrls.src msgctxt "" @@ -219,7 +219,7 @@ "RID_SVXSTR_ZOOM_150\n" "string.text" msgid "150%" -msgstr "" +msgstr "150%" #: stbctrls.src msgctxt "" @@ -227,7 +227,7 @@ "RID_SVXSTR_ZOOM_200\n" "string.text" msgid "200%" -msgstr "" +msgstr "200%" #: stbctrls.src msgctxt "" @@ -287,7 +287,7 @@ "ZOOM_50\n" "menuitem.text" msgid "50%" -msgstr "" +msgstr "50%" #: stbctrls.src msgctxt "" @@ -296,7 +296,7 @@ "ZOOM_75\n" "menuitem.text" msgid "75%" -msgstr "" +msgstr "75%" #: stbctrls.src msgctxt "" @@ -305,7 +305,7 @@ "ZOOM_100\n" "menuitem.text" msgid "100%" -msgstr "" +msgstr "100%" #: stbctrls.src msgctxt "" @@ -314,7 +314,7 @@ "ZOOM_150\n" "menuitem.text" msgid "150%" -msgstr "" +msgstr "150%" #: stbctrls.src msgctxt "" @@ -323,7 +323,7 @@ "ZOOM_200\n" "menuitem.text" msgid "200%" -msgstr "" +msgstr "200%" #: stbctrls.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/id/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/id/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/id/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/id/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/connectivity/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/is/connectivity/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/connectivity/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/connectivity/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: resource\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-17 16:54+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-14 10:36+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439830440.000000\n" +"X-POOTLE-MTIME: 1444819003.000000\n" #: conn_error_message.src msgctxt "" @@ -360,7 +360,7 @@ "STR_WRONG_PARAM_INDEX\n" "string.text" msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source." -msgstr "รžรบ reyndir aรฐ setja breytu รญ sรฆti '$pos$' en aรฐeins eru leyfรฐar '$count$' breytur. Ein รกstรฆรฐa fyrir รพvรญ gรฆti veriรฐ aรฐ breyta \"ParameterNameSubstitution\" sรฉ ekki skilgreindur sem TRUE รญ gagnagjafanum." +msgstr "รžรบ reyndir aรฐ setja breytu รญ sรฆti '$pos$' en aรฐeins eru leyfรฐar '$count$' breytur. Ein รกstรฆรฐa fyrir รพvรญ gรฆti veriรฐ aรฐ breyta \"ParameterNameSubstitution\" sรฉ ekki skilgreindur sem SATT รญ gagnagjafanum." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-17 16:58+0000\n" +"PO-Revision-Date: 2015-10-16 12:51+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439830709.000000\n" +"X-POOTLE-MTIME: 1444999870.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -185,7 +185,7 @@ "label\n" "string.text" msgid "Copyright ยฉ 2000 - 2015 LibreOffice contributors." -msgstr "Hรถfundarrรฉttur ยฉ 2000 - 2015 รพรกttakendur รญ LibreOffice." +msgstr "Hรถfundarrรฉttur ยฉ 2000 - 2015 รพรกtttakendur รญ LibreOffice." #: aboutdialog.ui msgctxt "" @@ -293,7 +293,7 @@ "label\n" "string.text" msgid "_Function" -msgstr "_Fall" +msgstr "Aรฐ_gerรฐ" #: accelconfigpage.ui msgctxt "" @@ -311,7 +311,7 @@ "label\n" "string.text" msgid "Functions" -msgstr "Fรถll" +msgstr "Virkni" #: acorexceptpage.ui msgctxt "" @@ -1904,7 +1904,7 @@ "label\n" "string.text" msgid "Distan_ce:" -msgstr "Veg_alengd:" +msgstr "_Fjarlรฆgรฐ:" #: borderpage.ui msgctxt "" @@ -9757,7 +9757,7 @@ "label\n" "string.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: optappearancepage.ui msgctxt "" @@ -11584,7 +11584,7 @@ "label\n" "string.text" msgid "OpenCL whitelist" -msgstr "OpenCL hvรญtlisti:" +msgstr "OpenCL hvรญtlisti" #: optopenclpage.ui msgctxt "" @@ -11962,7 +11962,7 @@ "2\n" "stringlist.text" msgid "Master document" -msgstr "Aรฐalskjal" +msgstr "Stรฝriskjal" #: optsavepage.ui msgctxt "" @@ -12025,7 +12025,7 @@ "label\n" "string.text" msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export." -msgstr "Halda utan um lista meรฐ slรณรฐum รก รบtgefendur TSA tรญmastimpils (Time Stamping Authority) sem notaรฐ er viรฐ stafrรฆna undirritun viรฐ รบtflutning รก PDF-skjรถlum." +msgstr "Halda utan um lista meรฐ slรณรฐum รก รบtgefendur TSA-tรญmastimpils (Time Stamping Authority) sem notaรฐ er viรฐ stafrรฆna undirritun viรฐ รบtflutning รก PDF-skjรถlum." #: optsecuritypage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/dbaccess/source/ui/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/is/dbaccess/source/ui/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/dbaccess/source/ui/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/dbaccess/source/ui/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-03-16 12:04+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-14 14:49+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1426507492.000000\n" +"X-POOTLE-MTIME: 1444834169.000000\n" #: WizardPages.src msgctxt "" @@ -183,7 +183,7 @@ "STR_REDO_COLON\n" "string.text" msgid "Redo:" -msgstr "Endurtaka:" +msgstr "Gera aftur:" #: dbumiscres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/dictionaries/hu_HU/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/is/dictionaries/hu_HU/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/dictionaries/hu_HU/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/dictionaries/hu_HU/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2014-03-25 09:24+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-16 07:47+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\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: Lokalize 1.5\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1359233739.0\n" +"X-POOTLE-MTIME: 1444981664.000000\n" #: hu_HU_en_US.properties msgctxt "" @@ -46,7 +46,7 @@ "wordpart\n" "property.text" msgid "Word parts of compounds" -msgstr "" +msgstr "Orรฐhlutar samsetninga" #: hu_HU_en_US.properties msgctxt "" @@ -78,7 +78,7 @@ "compound\n" "property.text" msgid "Underline typo-like compound words" -msgstr "" +msgstr "Undirstrika samsett orรฐ sem lรญklega eru rangt stafsett" #: hu_HU_en_US.properties msgctxt "" @@ -86,7 +86,7 @@ "allcompound\n" "property.text" msgid "Underline all generated compound words" -msgstr "" +msgstr "Undirstrika รถll tilbรบin samsett orรฐ" #: hu_HU_en_US.properties msgctxt "" @@ -102,7 +102,7 @@ "money\n" "property.text" msgid "Consistency of money amounts" -msgstr "" +msgstr "Samrรฆmi รญ peningaupphรฆรฐum" #: hu_HU_en_US.properties msgctxt "" @@ -126,7 +126,7 @@ "dup\n" "property.text" msgid "Duplication within clauses" -msgstr "" +msgstr "Tvรญtekning innan setningahluta" #: hu_HU_en_US.properties msgctxt "" @@ -134,7 +134,7 @@ "dup2\n" "property.text" msgid "Duplication within sentences" -msgstr "" +msgstr "Tvรญtekning innan setninga" #: hu_HU_en_US.properties msgctxt "" @@ -142,7 +142,7 @@ "dup3\n" "property.text" msgid "Allow previous checkings with affixes" -msgstr "" +msgstr "Leyfa fyrri athuganir meรฐ aรฐskeytum" #: hu_HU_en_US.properties msgctxt "" @@ -198,7 +198,7 @@ "ligature\n" "property.text" msgid "Ligature suggestion" -msgstr "" +msgstr "Stinga upp รก samtengdum stรถfum (ligatures)" #: hu_HU_en_US.properties msgctxt "" @@ -206,7 +206,7 @@ "noligature\n" "property.text" msgid "Underline ligatures" -msgstr "" +msgstr "Undirstrika samtengingar stafa (ligatures)" #: hu_HU_en_US.properties msgctxt "" @@ -270,4 +270,4 @@ "hyphen\n" "property.text" msgid "Hyphenation of ambiguous words" -msgstr "" +msgstr "Orรฐaskipting vafasamra orรฐa" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/dictionaries/ru_RU/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/is/dictionaries/ru_RU/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/dictionaries/ru_RU/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/dictionaries/ru_RU/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2014-03-25 09:17+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-16 07:47+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\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: Lokalize 1.5\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1359233748.0\n" +"X-POOTLE-MTIME: 1444981671.000000\n" #: ru_RU_en_US.properties msgctxt "" @@ -94,7 +94,7 @@ "typographica\n" "property.text" msgid "Typographica" -msgstr "" +msgstr "Stafsetningaryfirferรฐ - Typographica" #: ru_RU_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/is/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-17 17:20+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-15 10:36+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439832044.000000\n" +"X-POOTLE-MTIME: 1444905373.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -23,17 +23,16 @@ "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "sent" #. ยฃ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "POUND_SIGN\n" "LngText.text" msgid "pound" -msgstr "_Hljรณรฐ:" +msgstr "pund" #. ยฅ (U+000A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -42,17 +41,16 @@ "YEN_SIGN\n" "LngText.text" msgid "yen" -msgstr "" +msgstr "yen" #. ยง (U+000A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SECTION_SIGN\n" "LngText.text" msgid "section" -msgstr "Hluti" +msgstr "hluti" #. ยฉ (U+000A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -61,11 +59,10 @@ "COPYRIGHT_SIGN\n" "LngText.text" msgid "copyright" -msgstr "" +msgstr "hรถfundarrรฉttur" #. ยฌ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_SIGN\n" @@ -80,17 +77,16 @@ "REGISTERED_SIGN\n" "LngText.text" msgid "registered" -msgstr "" +msgstr "opinber skrรกning" #. ยฐ (U+000B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DEGREE_SIGN\n" "LngText.text" msgid "degree" -msgstr "Grรกรฐur" +msgstr "grรกรฐa" #. ยฑ (U+000B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -99,7 +95,7 @@ "PLUS-MINUS_SIGN\n" "LngText.text" msgid "+-" -msgstr "" +msgstr "+-" #. ยท (U+000B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -108,21 +104,19 @@ "MIDDLE_DOT\n" "LngText.text" msgid "middle dot" -msgstr "" +msgstr "miรฐjupunktur" #. ร— (U+000D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "X" +msgstr "x" #. ฮ‘ (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_ALPHA\n" @@ -132,167 +126,150 @@ #. ฮ’ (U+00392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_BETA\n" "LngText.text" msgid "Beta" -msgstr "beta" +msgstr "Beta" #. ฮ“ (U+00393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_GAMMA\n" "LngText.text" msgid "Gamma" -msgstr "Litrรณf (gamma)" +msgstr "Gamma" #. ฮ” (U+00394), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_DELTA\n" "LngText.text" msgid "Delta" -msgstr "DELTA" +msgstr "Delta" #. ฮ• (U+00395), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_EPSILON\n" "LngText.text" msgid "Epsilon" -msgstr "epsilon" +msgstr "Epsilon" #. ฮ– (U+00396), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_ZETA\n" "LngText.text" msgid "Zeta" -msgstr "zeta" +msgstr "Zeta" #. ฮ— (U+00397), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_ETA\n" "LngText.text" msgid "Eta" -msgstr "eta" +msgstr "Eta" #. ฮ˜ (U+00398), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_THETA\n" "LngText.text" msgid "Theta" -msgstr "รพeta" +msgstr "รžeta" #. ฮ™ (U+00399), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_IOTA\n" "LngText.text" msgid "Iota" -msgstr "jรณta" +msgstr "Jรณta" #. ฮš (U+0039A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_KAPPA\n" "LngText.text" msgid "Kappa" -msgstr "kappa" +msgstr "Kappa" #. ฮ› (U+0039B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_LAMDA\n" "LngText.text" msgid "Lambda" -msgstr "lambda" +msgstr "Lambda" #. ฮœ (U+0039C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_MU\n" "LngText.text" msgid "Mu" -msgstr "mu" +msgstr "Mu" #. ฮ (U+0039D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_NU\n" "LngText.text" msgid "Nu" -msgstr "nu" +msgstr "Nu" #. ฮž (U+0039E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_XI\n" "LngText.text" msgid "Xi" -msgstr "xi" +msgstr "Xi" #. ฮŸ (U+0039F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_OMICRON\n" "LngText.text" msgid "Omicron" -msgstr "omicron" +msgstr "Omicron" #. ฮ  (U+003A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_PI\n" "LngText.text" msgid "Pi" -msgstr "PI" +msgstr "Pรญ" #. ฮก (U+003A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_RHO\n" "LngText.text" msgid "Rho" -msgstr "rho" +msgstr "Rho" #. ฮฃ (U+003A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_SIGMA\n" @@ -302,67 +279,60 @@ #. ฮค (U+003A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_TAU\n" "LngText.text" msgid "Tau" -msgstr "tau" +msgstr "Tau" #. ฮฅ (U+003A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_UPSILON\n" "LngText.text" msgid "Upsilon" -msgstr "upsilon" +msgstr "Ypsilon" #. ฮฆ (U+003A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_PHI\n" "LngText.text" msgid "Phi" -msgstr "PHI" +msgstr "Phi" #. ฮง (U+003A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_CHI\n" "LngText.text" msgid "Chi" -msgstr "chi" +msgstr "Chi" #. ฮจ (U+003A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_PSI\n" "LngText.text" msgid "Psi" -msgstr "psi" +msgstr "Psi" #. ฮฉ (U+003A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_CAPITAL_LETTER_OMEGA\n" "LngText.text" msgid "Omega" -msgstr "omega" +msgstr "ร“mega" #. ฮฑ (U+003B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_ALPHA\n" @@ -372,7 +342,6 @@ #. ฮฒ (U+003B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_BETA\n" @@ -382,7 +351,6 @@ #. ฮณ (U+003B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_GAMMA\n" @@ -392,7 +360,6 @@ #. ฮด (U+003B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_DELTA\n" @@ -402,7 +369,6 @@ #. ฮต (U+003B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_EPSILON\n" @@ -412,7 +378,6 @@ #. ฮถ (U+003B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_ZETA\n" @@ -422,7 +387,6 @@ #. ฮท (U+003B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_ETA\n" @@ -432,7 +396,6 @@ #. ฮธ (U+003B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_THETA\n" @@ -442,7 +405,6 @@ #. ฮน (U+003B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_IOTA\n" @@ -452,7 +414,6 @@ #. ฮบ (U+003BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_KAPPA\n" @@ -462,7 +423,6 @@ #. ฮป (U+003BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_LAMDA\n" @@ -472,7 +432,6 @@ #. ฮผ (U+003BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_MU\n" @@ -482,7 +441,6 @@ #. ฮฝ (U+003BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_NU\n" @@ -492,7 +450,6 @@ #. ฮพ (U+003BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_XI\n" @@ -502,7 +459,6 @@ #. ฮฟ (U+003BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_OMICRON\n" @@ -512,17 +468,15 @@ #. ฯ€ (U+003C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_PI\n" "LngText.text" msgid "pi" -msgstr "pi" +msgstr "pรญ" #. ฯ (U+003C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_RHO\n" @@ -532,17 +486,15 @@ #. ฯ‚ (U+003C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_FINAL_SIGMA\n" "LngText.text" msgid "sigma2" -msgstr "sigma" +msgstr "sigma2" #. ฯƒ (U+003C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_SIGMA\n" @@ -552,7 +504,6 @@ #. ฯ„ (U+003C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_TAU\n" @@ -562,17 +513,15 @@ #. ฯ… (U+003C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_UPSILON\n" "LngText.text" msgid "upsilon" -msgstr "upsilon" +msgstr "ypsilon" #. ฯ† (U+003C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_PHI\n" @@ -582,7 +531,6 @@ #. ฯ‡ (U+003C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_CHI\n" @@ -592,7 +540,6 @@ #. ฯˆ (U+003C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_PSI\n" @@ -602,13 +549,12 @@ #. ฯ‰ (U+003C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SMALL_LETTER_OMEGA\n" "LngText.text" msgid "omega" -msgstr "omega" +msgstr "รณmega" #. เธฟ (U+00E3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -617,11 +563,10 @@ "THAI_CURRENCY_SYMBOL_BAHT\n" "LngText.text" msgid "baht" -msgstr "" +msgstr "baht" #. โ€“ (U+02013), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EN_DASH\n" @@ -631,7 +576,6 @@ #. โ€” (U+02014), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EM_DASH\n" @@ -641,7 +585,6 @@ #. โ€™ (U+02019), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHT_SINGLE_QUOTATION_MARK\n" @@ -656,7 +599,7 @@ "DAGGER\n" "LngText.text" msgid "dagger" -msgstr "" +msgstr "rรฝtingur" #. โ€ก (U+02021), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -665,31 +608,28 @@ "DOUBLE_DAGGER\n" "LngText.text" msgid "dagger2" -msgstr "" +msgstr "rรฝtingur2" #. โ€ข (U+02022), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BULLET\n" "LngText.text" msgid "bullet" -msgstr "รherslumerki" +msgstr "รกherslumerki" #. โ€ฃ (U+02023), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TRIANGULAR_BULLET\n" "LngText.text" msgid "bullet2" -msgstr "รherslumerki" +msgstr "รกherslumerki2" #. โ€ฆ (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HORIZONTAL_ELLIPSIS\n" @@ -704,7 +644,7 @@ "PER_MILLE_SIGN\n" "LngText.text" msgid "per mille" -msgstr "" +msgstr "prรณmill" #. โ€ฑ (U+02031), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -713,7 +653,7 @@ "PER_TEN_THOUSAND_SIGN\n" "LngText.text" msgid "basis point" -msgstr "" +msgstr "grunnpunktur" #. โ€ฒ (U+02032), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -722,11 +662,10 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "prรญmtala" #. โ€ณ (U+02033), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_PRIME\n" @@ -736,7 +675,6 @@ #. โ€ผ (U+0203C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_EXCLAMATION_MARK\n" @@ -746,7 +684,6 @@ #. โ‰ (U+02049), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EXCLAMATION_QUESTION_MARK\n" @@ -761,7 +698,7 @@ "LIRA_SIGN\n" "LngText.text" msgid "lira" -msgstr "" +msgstr "lรญra" #. โ‚ฉ (U+020A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -770,7 +707,7 @@ "WON_SIGN\n" "LngText.text" msgid "won" -msgstr "" +msgstr "won" #. โ‚ช (U+020AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -779,7 +716,7 @@ "NEW_SHEQEL_SIGN\n" "LngText.text" msgid "shekel" -msgstr "" +msgstr "shekel" #. โ‚ฌ (U+020AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -788,7 +725,7 @@ "EURO_SIGN\n" "LngText.text" msgid "euro" -msgstr "" +msgstr "evra" #. โ‚ฑ (U+020B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -797,7 +734,7 @@ "PESO_SIGN\n" "LngText.text" msgid "peso" -msgstr "" +msgstr "pesรณ" #. โ‚ด (U+020B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -806,7 +743,7 @@ "HRYVNIA_SIGN\n" "LngText.text" msgid "hryvnia" -msgstr "" +msgstr "hryvnia" #. โ‚น (U+020B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -815,7 +752,7 @@ "INDIAN_RUPEE_SIGN\n" "LngText.text" msgid "rupee" -msgstr "" +msgstr "rรบpรญa" #. โ‚บ (U+020BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -824,7 +761,7 @@ "TURKISH_LIRA_SIGN\n" "LngText.text" msgid "Turkish lira" -msgstr "" +msgstr "tyrknesk lรญra" #. โ„ข (U+02122), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -833,31 +770,28 @@ "TRADE_MARK_SIGN\n" "LngText.text" msgid "tm" -msgstr "" +msgstr "tm" #. โ„น (U+02139), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INFORMATION_SOURCE\n" "LngText.text" msgid "information" -msgstr "Upplรฝsingar" +msgstr "upplรฝsingar" #. โ† (U+02190), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LEFTWARDS_ARROW\n" "LngText.text" msgid "W" -msgstr "'W', ','" +msgstr "V" #. โ†‘ (U+02191), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "UPWARDS_ARROW\n" @@ -867,23 +801,21 @@ #. โ†’ (U+02192), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "E" +msgstr "A" #. โ†“ (U+02193), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOWNWARDS_ARROW\n" "LngText.text" msgid "S" -msgstr "U" +msgstr "S" #. โ†” (U+02194), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -892,7 +824,7 @@ "LEFT_RIGHT_ARROW\n" "LngText.text" msgid "EW" -msgstr "" +msgstr "AV" #. โ†• (U+02195), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -901,7 +833,7 @@ "UP_DOWN_ARROW\n" "LngText.text" msgid "NS" -msgstr "" +msgstr "NS" #. โ†– (U+02196), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -910,7 +842,7 @@ "NORTH_WEST_ARROW\n" "LngText.text" msgid "NW" -msgstr "" +msgstr "NV" #. โ†— (U+02197), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -919,7 +851,7 @@ "NORTH_EAST_ARROW\n" "LngText.text" msgid "NE" -msgstr "" +msgstr "NA" #. โ†˜ (U+02198), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -928,7 +860,7 @@ "SOUTH_EAST_ARROW\n" "LngText.text" msgid "SE" -msgstr "" +msgstr "SA" #. โ†™ (U+02199), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -937,47 +869,43 @@ "SOUTH_WEST_ARROW\n" "LngText.text" msgid "SW" -msgstr "" +msgstr "SV" #. โ‡ (U+021D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LEFTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "W2" -msgstr "'W', ','" +msgstr "V2" #. โ‡‘ (U+021D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "UPWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "N2" -msgstr "N" +msgstr "N2" #. โ‡’ (U+021D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "E2" -msgstr "E" +msgstr "A2" #. โ‡“ (U+021D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOWNWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "S2" -msgstr "U" +msgstr "S2" #. โ‡” (U+021D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -986,7 +914,7 @@ "LEFT_RIGHT_DOUBLE_ARROW\n" "LngText.text" msgid "EW2" -msgstr "" +msgstr "AV2" #. โ‡• (U+021D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -995,7 +923,7 @@ "UP_DOWN_DOUBLE_ARROW\n" "LngText.text" msgid "NS2" -msgstr "" +msgstr "NS2" #. โ‡– (U+021D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1004,7 +932,7 @@ "NORTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "NW2" -msgstr "" +msgstr "NV2" #. โ‡— (U+021D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1013,7 +941,7 @@ "NORTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "NE2" -msgstr "" +msgstr "NA2" #. โ‡˜ (U+021D8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1022,7 +950,7 @@ "SOUTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "SE2" -msgstr "" +msgstr "SA2" #. โ‡™ (U+021D9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1031,27 +959,25 @@ "SOUTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "SW2" -msgstr "" +msgstr "SV2" #. โˆ€ (U+02200), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FOR_ALL\n" "LngText.text" msgid "for all" -msgstr "Fyrir allt" +msgstr "fyrir allt" #. โˆ‚ (U+02202), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PARTIAL_DIFFERENTIAL\n" "LngText.text" msgid "partial" -msgstr "Hluti" +msgstr "aรฐ hluta" #. โˆƒ (U+02203), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1060,7 +986,7 @@ "THERE_EXISTS\n" "LngText.text" msgid "exists" -msgstr "" +msgstr "er til" #. โˆ„ (U+02204), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1069,11 +995,10 @@ "THERE_DOES_NOT_EXIST\n" "LngText.text" msgid "not exists" -msgstr "" +msgstr "er ekki til" #. โˆ… (U+02205), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EMPTY_SET\n" @@ -1083,13 +1008,12 @@ #. โˆˆ (U+02208), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ELEMENT_OF\n" "LngText.text" msgid "in" -msgstr "in" +msgstr "รญ" #. โˆ‰ (U+02209), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1098,7 +1022,7 @@ "NOT_AN_ELEMENT_OF\n" "LngText.text" msgid "not in" -msgstr "" +msgstr "ekki รญ" #. โˆŠ (U+0220A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1147,27 +1071,24 @@ #. โˆ (U+0220F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "N-ARY_PRODUCT\n" "LngText.text" msgid "product" -msgstr "PRODUCT" +msgstr "margfeldi" #. โˆ‘ (U+02211), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "N-ARY_SUMMATION\n" "LngText.text" msgid "sum" -msgstr "Summa" +msgstr "summa" #. โˆ’ (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MINUS_SIGN\n" @@ -1182,11 +1103,10 @@ "MINUS-OR-PLUS_SIGN\n" "LngText.text" msgid "-+" -msgstr "" +msgstr "-+" #. โˆ• (U+02215), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DIVISION_SLASH\n" @@ -1196,7 +1116,6 @@ #. โˆ– (U+02216), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SET_MINUS\n" @@ -1206,13 +1125,12 @@ #. โˆš (U+0221A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SQUARE_ROOT\n" "LngText.text" msgid "sqrt" -msgstr "kvaรฐratr" +msgstr "kvaรฐratrรณt" #. โˆ› (U+0221B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1221,7 +1139,7 @@ "CUBE_ROOT\n" "LngText.text" msgid "cube root" -msgstr "" +msgstr "ferningsrรณt" #. โˆœ (U+0221C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1234,17 +1152,15 @@ #. โˆž (U+0221E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INFINITY\n" "LngText.text" msgid "infinity" -msgstr "ร“endan~leg" +msgstr "รณendanleiki" #. โˆ  (U+02220), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ANGLE\n" @@ -1254,23 +1170,21 @@ #. โˆก (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "Horn" +msgstr "horn2" #. โˆฃ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DIVIDES\n" "LngText.text" msgid "divides" -msgstr "deilar" +msgstr "deilir" #. โˆค (U+02224), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1279,31 +1193,28 @@ "DOES_NOT_DIVIDE\n" "LngText.text" msgid "not divides" -msgstr "" +msgstr "deilir ekki" #. โˆฅ (U+02225), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PARALLEL_TO\n" "LngText.text" msgid "parallel" -msgstr "Samsรญรฐa" +msgstr "samsรญรฐa" #. โˆฆ (U+02226), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_PARALLEL_TO\n" "LngText.text" msgid "nparallel" -msgstr "Samsรญรฐa" +msgstr "" #. โˆง (U+02227), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LOGICAL_AND\n" @@ -1313,7 +1224,6 @@ #. โˆจ (U+02228), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LOGICAL_OR\n" @@ -1323,73 +1233,66 @@ #. โˆฉ (U+02229), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INTERSECTION\n" "LngText.text" msgid "intersection" -msgstr "Skurรฐflรถtur" +msgstr "skurรฐflรถtur" #. โˆช (U+0222A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "UNION\n" "LngText.text" msgid "union" -msgstr "Sameina" +msgstr "sameining" #. โˆซ (U+0222B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INTEGRAL\n" "LngText.text" msgid "integral" -msgstr "Heildi" +msgstr "heildi" #. โˆฌ (U+0222C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_INTEGRAL\n" "LngText.text" msgid "integral2" -msgstr "Heildi" +msgstr "heildi2" #. โˆญ (U+0222D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TRIPLE_INTEGRAL\n" "LngText.text" msgid "integral3" -msgstr "Heildi" +msgstr "heildi3" #. โˆฎ (U+0222E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CONTOUR_INTEGRAL\n" "LngText.text" msgid "integral4" -msgstr "Heildi" +msgstr "heildi4" #. โˆฐ (U+02230), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "VOLUME_INTEGRAL\n" "LngText.text" msgid "integral5" -msgstr "Heildi" +msgstr "heildi5" #. โ‰ˆ (U+02248), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1398,11 +1301,10 @@ "ALMOST_EQUAL_TO\n" "LngText.text" msgid "~" -msgstr "" +msgstr "~" #. โ‰  (U+02260), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_EQUAL_TO\n" @@ -1417,7 +1319,7 @@ "LESS-THAN_OR_EQUAL_TO\n" "LngText.text" msgid "<=" -msgstr "" +msgstr "<=" #. โ‰ฅ (U+02265), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1426,11 +1328,10 @@ "GREATER-THAN_OR_EQUAL_TO\n" "LngText.text" msgid ">=" -msgstr "" +msgstr ">=" #. โ‰ช (U+0226A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUCH_LESS-THAN\n" @@ -1440,7 +1341,6 @@ #. โ‰ซ (U+0226B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUCH_GREATER-THAN\n" @@ -1450,27 +1350,24 @@ #. โŠ‚ (U+02282), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSET_OF\n" "LngText.text" msgid "subset" -msgstr "Undirnet" +msgstr "hlutmengi" #. โŠƒ (U+02283), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSET_OF\n" "LngText.text" msgid "superset" -msgstr "Yfirmengi" +msgstr "yfirmengi" #. โŠ„ (U+02284), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_A_SUBSET_OF\n" @@ -1480,7 +1377,6 @@ #. โŠ… (U+02285), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOT_A_SUPERSET_OF\n" @@ -1490,23 +1386,21 @@ #. โŠฟ (U+022BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHT_TRIANGLE\n" "LngText.text" msgid "right triangle" -msgstr "Rรฉttur รพrรญhyrningur" +msgstr "rรฉttur รพrรญhyrningur" #. โŒš (U+0231A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WATCH\n" "LngText.text" msgid "watch" -msgstr "Fylgjast meรฐ" +msgstr "รบr" #. โŒ› (U+0231B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1515,17 +1409,16 @@ "HOURGLASS\n" "LngText.text" msgid "hourglass" -msgstr "" +msgstr "stundaglas" #. โŒจ (U+02328), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "Lyklaborรฐ" +msgstr "lyklaborรฐ" #. โข (U+023E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1534,7 +1427,7 @@ "WHITE_TRAPEZIUM\n" "LngText.text" msgid "trapezium" -msgstr "" +msgstr "trapisulaga" #. โฐ (U+023F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1543,7 +1436,7 @@ "ALARM_CLOCK\n" "LngText.text" msgid "alarm clock" -msgstr "" +msgstr "vekjaraklukka" #. โฑ (U+023F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1552,7 +1445,7 @@ "STOPWATCH\n" "LngText.text" msgid "stopwatch" -msgstr "" +msgstr "skeiรฐklukka" #. โฒ (U+023F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1561,7 +1454,7 @@ "TIMER_CLOCK\n" "LngText.text" msgid "timer clock" -msgstr "" +msgstr "niรฐurteljari" #. โณ (U+023F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1570,21 +1463,19 @@ "HOURGLASS_WITH_FLOWING_SAND\n" "LngText.text" msgid "hourglass2" -msgstr "" +msgstr "stundaglas2" #. โ–  (U+025A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SQUARE\n" "LngText.text" msgid "square2" -msgstr "Ferningur" +msgstr "ferningur2" #. โ–ก (U+025A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SQUARE\n" @@ -1599,7 +1490,7 @@ "BLACK_SMALL_SQUARE\n" "LngText.text" msgid "small square2" -msgstr "" +msgstr "lรญtill ferningur2" #. โ–ซ (U+025AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1608,21 +1499,19 @@ "WHITE_SMALL_SQUARE\n" "LngText.text" msgid "small square" -msgstr "" +msgstr "lรญtill ferningur" #. โ–ฌ (U+025AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_RECTANGLE\n" "LngText.text" msgid "rectangle2" -msgstr "Rรฉtthyrningur" +msgstr "rรฉtthyrningur2" #. โ–ญ (U+025AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_RECTANGLE\n" @@ -1632,23 +1521,21 @@ #. โ–ฐ (U+025B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram2" -msgstr "Samsรญรฐungur" +msgstr "samsรญรฐungur2" #. โ–ฑ (U+025B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram" -msgstr "Samsรญรฐungur" +msgstr "samsรญรฐungur" #. โ–ฒ (U+025B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1657,7 +1544,7 @@ "BLACK_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle2" -msgstr "" +msgstr "รพrรญhyrningur2" #. โ–ณ (U+025B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1666,7 +1553,7 @@ "WHITE_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle" -msgstr "" +msgstr "รพrรญhyrningur" #. โ—Š (U+025CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1675,11 +1562,10 @@ "LOZENGE\n" "LngText.text" msgid "lozenge" -msgstr "" +msgstr "tรญgull" #. โ—‹ (U+025CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_CIRCLE\n" @@ -1689,23 +1575,21 @@ #. โ— (U+025CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_CIRCLE\n" "LngText.text" msgid "circle2" -msgstr "Hringur" +msgstr "hringur2" #. โ—ฆ (U+025E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_BULLET\n" "LngText.text" msgid "bullet3" -msgstr "รherslumerki" +msgstr "รกherslumerki3" #. โ—ฏ (U+025EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1714,7 +1598,7 @@ "LARGE_CIRCLE\n" "LngText.text" msgid "large circle" -msgstr "" +msgstr "stรณr hringur" #. โ—ป (U+025FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1723,7 +1607,7 @@ "WHITE_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square" -msgstr "" +msgstr "miรฐlungs ferningur" #. โ—ผ (U+025FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1732,7 +1616,7 @@ "BLACK_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square2" -msgstr "" +msgstr "miรฐlungs ferningur2" #. โ—ฝ (U+025FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1741,7 +1625,7 @@ "WHITE_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square" -msgstr "" +msgstr "minni ferningur" #. โ—พ (U+025FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1750,7 +1634,7 @@ "BLACK_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square2" -msgstr "" +msgstr "minni ferningur2" #. โ˜€ (U+02600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1759,17 +1643,16 @@ "BLACK_SUN_WITH_RAYS\n" "LngText.text" msgid "sunny" -msgstr "" +msgstr "sรณlskin" #. โ˜ (U+02601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOUD\n" "LngText.text" msgid "cloud" -msgstr "Skรฝ" +msgstr "skรฝ" #. โ˜‚ (U+02602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1778,7 +1661,7 @@ "UMBRELLA\n" "LngText.text" msgid "umbrella" -msgstr "" +msgstr "regnhlรญf" #. โ˜ƒ (U+02603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1787,7 +1670,7 @@ "SNOWMAN\n" "LngText.text" msgid "snowman" -msgstr "" +msgstr "snjรณkall" #. โ˜„ (U+02604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1796,7 +1679,7 @@ "COMET\n" "LngText.text" msgid "comet" -msgstr "" +msgstr "halastjarna" #. โ˜… (U+02605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1805,7 +1688,7 @@ "BLACK_STAR\n" "LngText.text" msgid "star" -msgstr "" +msgstr "stjarna" #. โ˜† (U+02606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1814,17 +1697,16 @@ "WHITE_STAR\n" "LngText.text" msgid "star2" -msgstr "" +msgstr "stjarna2" #. โ˜‡ (U+02607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LIGHTNING\n" "LngText.text" msgid "lighting" -msgstr "Lรฝsing" +msgstr "elding" #. โ˜ˆ (U+02608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1833,11 +1715,10 @@ "THUNDERSTORM\n" "LngText.text" msgid "storm" -msgstr "" +msgstr "stormur" #. โ˜‰ (U+02609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUN\n" @@ -1847,23 +1728,21 @@ #. โ˜Ž (U+0260E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "Sรญmi" +msgstr "sรญmi" #. โ˜ (U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_TELEPHONE\n" "LngText.text" msgid "phone2" -msgstr "Sรญmi" +msgstr "sรญmi2" #. โ˜ (U+02610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1872,7 +1751,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "" +msgstr "hakreitur" #. โ˜‘ (U+02611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1881,7 +1760,7 @@ "BALLOT_BOX_WITH_CHECK\n" "LngText.text" msgid "checkbox2" -msgstr "" +msgstr "hakreitur2" #. โ˜’ (U+02612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1890,7 +1769,7 @@ "BALLOT_BOX_WITH_X\n" "LngText.text" msgid "checkbox3" -msgstr "" +msgstr "hakreitur3" #. โ˜“ (U+02613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1899,7 +1778,7 @@ "SALTIRE\n" "LngText.text" msgid "saltire" -msgstr "" +msgstr "skรกkross" #. โ˜” (U+02614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1908,7 +1787,7 @@ "UMBRELLA_WITH_RAIN_DROPS\n" "LngText.text" msgid "rain" -msgstr "" +msgstr "rigning" #. โ˜• (U+02615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1917,31 +1796,28 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "kaffi" #. โ˜š (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left3" -msgstr "Vinstri" +msgstr "vinstri3" #. โ˜› (U+0261B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right3" -msgstr "Hรฆgri" +msgstr "hรฆgri3" #. โ˜œ (U+0261C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_LEFT_POINTING_INDEX\n" @@ -1951,7 +1827,6 @@ #. โ˜ (U+0261D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_UP_POINTING_INDEX\n" @@ -1961,7 +1836,6 @@ #. โ˜ž (U+0261E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_RIGHT_POINTING_INDEX\n" @@ -1971,7 +1845,6 @@ #. โ˜Ÿ (U+0261F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_DOWN_POINTING_INDEX\n" @@ -1986,7 +1859,7 @@ "SKULL_AND_CROSSBONES\n" "LngText.text" msgid "poison" -msgstr "" +msgstr "eitur" #. โ˜ก (U+02621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1995,7 +1868,7 @@ "CAUTION_SIGN\n" "LngText.text" msgid "caution" -msgstr "" +msgstr "varรบรฐ" #. โ˜ข (U+02622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2004,7 +1877,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "geislavirkni" #. โ˜ฃ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2013,7 +1886,7 @@ "BIOHAZARD_SIGN\n" "LngText.text" msgid "biohazard" -msgstr "" +msgstr "lรญfsรฝnahรฆtta" #. โ˜ค (U+02624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2022,7 +1895,7 @@ "CADUCEUS\n" "LngText.text" msgid "caduceus" -msgstr "" +msgstr "hermesarsproti" #. โ˜ฅ (U+02625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2031,7 +1904,7 @@ "ANKH\n" "LngText.text" msgid "ankh" -msgstr "" +msgstr "ankh fleygrรบn" #. โ˜ฆ (U+02626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2040,7 +1913,7 @@ "ORTHODOX_CROSS\n" "LngText.text" msgid "orthodox cross" -msgstr "" +msgstr "rรฉtttrรบnaรฐarkirkjukross" #. โ˜ง (U+02627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2049,7 +1922,7 @@ "CHI_RHO\n" "LngText.text" msgid "chi rho" -msgstr "" +msgstr "chi-rho tรกkn" #. โ˜จ (U+02628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2058,7 +1931,7 @@ "CROSS_OF_LORRAINE\n" "LngText.text" msgid "cross of Lorraine" -msgstr "" +msgstr "lorrainekross" #. โ˜ฉ (U+02629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2067,7 +1940,7 @@ "CROSS_OF_JERUSALEM\n" "LngText.text" msgid "cross of Jerusalem" -msgstr "" +msgstr "jerรบsalemkross" #. โ˜ช (U+0262A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2076,11 +1949,10 @@ "STAR_AND_CRESCENT\n" "LngText.text" msgid "star and crescent" -msgstr "" +msgstr "stjarna og vaxandi tungl" #. โ˜ซ (U+0262B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FARSI_SYMBOL\n" @@ -2095,7 +1967,7 @@ "ADI_SHAKTI\n" "LngText.text" msgid "Adi Shakti" -msgstr "" +msgstr "Adi Shakti" #. โ˜ญ (U+0262D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2104,7 +1976,7 @@ "HAMMER_AND_SICKLE\n" "LngText.text" msgid "hammer and sickle" -msgstr "" +msgstr "hamar og sigรฐ" #. โ˜ฎ (U+0262E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2113,7 +1985,7 @@ "PEACE_SYMBOL\n" "LngText.text" msgid "peace" -msgstr "" +msgstr "friรฐur" #. โ˜ฏ (U+0262F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2122,7 +1994,7 @@ "YIN_YANG\n" "LngText.text" msgid "yin yang" -msgstr "" +msgstr "yin yang" #. โ˜น (U+02639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2131,7 +2003,7 @@ "WHITE_FROWNING_FACE\n" "LngText.text" msgid "frown" -msgstr "" +msgstr "gretta" #. โ˜บ (U+0263A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2140,7 +2012,7 @@ "WHITE_SMILING_FACE\n" "LngText.text" msgid "smiling" -msgstr "" +msgstr "brosandi" #. โ˜ป (U+0263B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2149,21 +2021,19 @@ "BLACK_SMILING_FACE\n" "LngText.text" msgid "smiling2" -msgstr "" +msgstr "brosandi2" #. โ˜ผ (U+0263C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SUN_WITH_RAYS\n" "LngText.text" msgid "Sun2" -msgstr "Sรณl" +msgstr "Sรณl2" #. โ˜ฝ (U+0263D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FIRST_QUARTER_MOON\n" @@ -2173,33 +2043,30 @@ #. โ˜พ (U+0263E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LAST_QUARTER_MOON\n" "LngText.text" msgid "Moon2" -msgstr "Tungl" +msgstr "Tungl2" #. โ˜ฟ (U+0263F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "Kvikasilfur" +msgstr "Merkรบr" #. โ™€ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "K_venkyns" +msgstr "kvenkyns" #. โ™ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2208,17 +2075,16 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Jรถrรฐin" #. โ™‚ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "_Karlkyns" +msgstr "karlkyns" #. โ™ƒ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2227,7 +2093,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Jรบpรญter" #. โ™„ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2236,7 +2102,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Satรบrnus" #. โ™… (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2245,7 +2111,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "รšranus" #. โ™† (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2254,7 +2120,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Neptรบnus" #. โ™‡ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2263,7 +2129,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Plรบtรณ" #. โ™ˆ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2272,7 +2138,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Hrรบtur" #. โ™‰ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2281,7 +2147,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "Naut" #. โ™Š (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2290,7 +2156,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "Tvรญburi" #. โ™‹ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2299,7 +2165,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "Krabbi" #. โ™Œ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2308,7 +2174,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "Ljรณn" #. โ™ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2317,7 +2183,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "Meyja" #. โ™Ž (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2326,7 +2192,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Vog" #. โ™ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2335,7 +2201,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Sporรฐdreki" #. โ™ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2344,7 +2210,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "Bogmaรฐur" #. โ™‘ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2353,7 +2219,7 @@ "CAPRICORN\n" "LngText.text" msgid "Capricorn" -msgstr "" +msgstr "Steingeit" #. โ™’ (U+02652), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2362,7 +2228,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "Vatnsberi" #. โ™“ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2371,7 +2237,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Fiskar" #. โ™” (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2380,7 +2246,7 @@ "WHITE_CHESS_KING\n" "LngText.text" msgid "white king" -msgstr "" +msgstr "hvรญtur kรณngur" #. โ™• (U+02655), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2389,7 +2255,7 @@ "WHITE_CHESS_QUEEN\n" "LngText.text" msgid "white queen" -msgstr "" +msgstr "hvรญt drottning" #. โ™– (U+02656), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2398,7 +2264,7 @@ "WHITE_CHESS_ROOK\n" "LngText.text" msgid "white rook" -msgstr "" +msgstr "hvรญtur hrรณkur" #. โ™— (U+02657), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2407,7 +2273,7 @@ "WHITE_CHESS_BISHOP\n" "LngText.text" msgid "white bishop" -msgstr "" +msgstr "hvรญtur biskup" #. โ™˜ (U+02658), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2416,7 +2282,7 @@ "WHITE_CHESS_KNIGHT\n" "LngText.text" msgid "white knight" -msgstr "" +msgstr "hvรญtur riddari" #. โ™™ (U+02659), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2425,7 +2291,7 @@ "WHITE_CHESS_PAWN\n" "LngText.text" msgid "white pawn" -msgstr "" +msgstr "hvรญtt peรฐ" #. โ™š (U+0265A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2434,7 +2300,7 @@ "BLACK_CHESS_KING\n" "LngText.text" msgid "black king" -msgstr "" +msgstr "svartur kรณngur" #. โ™› (U+0265B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2443,7 +2309,7 @@ "BLACK_CHESS_QUEEN\n" "LngText.text" msgid "black queen" -msgstr "" +msgstr "svรถrt drottning" #. โ™œ (U+0265C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2452,7 +2318,7 @@ "BLACK_CHESS_ROOK\n" "LngText.text" msgid "black rook" -msgstr "" +msgstr "svartur hrรณkur" #. โ™ (U+0265D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2461,7 +2327,7 @@ "BLACK_CHESS_BISHOP\n" "LngText.text" msgid "black bishop" -msgstr "" +msgstr "svartur biskup" #. โ™ž (U+0265E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2470,7 +2336,7 @@ "BLACK_CHESS_KNIGHT\n" "LngText.text" msgid "black knight" -msgstr "" +msgstr "svartur riddari" #. โ™Ÿ (U+0265F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2479,7 +2345,7 @@ "BLACK_CHESS_PAWN\n" "LngText.text" msgid "black pawn" -msgstr "" +msgstr "svart peรฐ" #. โ™  (U+02660), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2488,7 +2354,7 @@ "BLACK_SPADE_SUIT\n" "LngText.text" msgid "spades" -msgstr "" +msgstr "spaรฐar" #. โ™ก (U+02661), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2497,7 +2363,7 @@ "WHITE_HEART_SUIT\n" "LngText.text" msgid "hearts2" -msgstr "" +msgstr "hjรถrtu2" #. โ™ข (U+02662), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2506,7 +2372,7 @@ "WHITE_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds2" -msgstr "" +msgstr "tรญglar2" #. โ™ฃ (U+02663), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2515,7 +2381,7 @@ "BLACK_CLUB_SUIT\n" "LngText.text" msgid "clubs" -msgstr "" +msgstr "lauf" #. โ™ค (U+02664), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2524,17 +2390,16 @@ "WHITE_SPADE_SUIT\n" "LngText.text" msgid "spades2" -msgstr "" +msgstr "spaรฐar2" #. โ™ฅ (U+02665), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_HEART_SUIT\n" "LngText.text" msgid "hearts" -msgstr "Hjarta" +msgstr "hjรถrtu" #. โ™ฆ (U+02666), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2543,7 +2408,7 @@ "BLACK_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds" -msgstr "" +msgstr "tรญglar" #. โ™ง (U+02667), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2552,7 +2417,7 @@ "WHITE_CLUB_SUIT\n" "LngText.text" msgid "clubs2" -msgstr "" +msgstr "lauf2" #. โ™จ (U+02668), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2561,67 +2426,61 @@ "HOT_SPRINGS\n" "LngText.text" msgid "hot springs" -msgstr "" +msgstr "heitar uppsprettur" #. โ™ฉ (U+02669), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "QUARTER_NOTE\n" "LngText.text" msgid "note" -msgstr "Athugasemd" +msgstr "athugasemd" #. โ™ช (U+0266A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EIGHTH_NOTE\n" "LngText.text" msgid "note2" -msgstr "Athugasemd" +msgstr "athugasemd2" #. โ™ซ (U+0266B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BEAMED_EIGHTH_NOTES\n" "LngText.text" msgid "notes" -msgstr "Athugasemdir" +msgstr "minnispunktar" #. โ™ฌ (U+0266C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BEAMED_SIXTEENTH_NOTES\n" "LngText.text" msgid "notes2" -msgstr "Athugasemdir" +msgstr "minnispunktar2" #. โ™ญ (U+0266D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "Flatt" +msgstr "flatt" #. โ™ฎ (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUSIC_NATURAL_SIGN\n" "LngText.text" msgid "natural" -msgstr "Nรกttรบruleg" +msgstr "nรกttรบrulegt" #. โ™ฏ (U+0266F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2630,7 +2489,7 @@ "MUSIC_SHARP_SIGN\n" "LngText.text" msgid "sharp" -msgstr "" +msgstr "skarpt" #. โ™ฒ (U+02672), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2639,7 +2498,7 @@ "UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling" -msgstr "" +msgstr "endurvinnsla" #. โ™ป (U+0267B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2648,7 +2507,7 @@ "BLACK_UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling2" -msgstr "" +msgstr "endurvinnsla2" #. โ™ผ (U+0267C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2657,7 +2516,7 @@ "RECYCLED_PAPER\n" "LngText.text" msgid "recycled paper" -msgstr "" +msgstr "endurunninn pappรญr" #. โ™พ (U+0267E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2666,7 +2525,7 @@ "PERMANENT_PAPER\n" "LngText.text" msgid "permanent paper" -msgstr "" +msgstr "skjalageymslupappรญr" #. โ™ฟ (U+0267F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2675,7 +2534,7 @@ "WHEELCHAIR_SYMBOL\n" "LngText.text" msgid "wheelchair" -msgstr "" +msgstr "hjรณlastรณll" #. โš€ (U+02680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2684,7 +2543,7 @@ "DIE_FACE-1\n" "LngText.text" msgid "dice1" -msgstr "" +msgstr "teningur1" #. โš (U+02681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2693,7 +2552,7 @@ "DIE_FACE-2\n" "LngText.text" msgid "dice2" -msgstr "" +msgstr "teningur2" #. โš‚ (U+02682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2702,7 +2561,7 @@ "DIE_FACE-3\n" "LngText.text" msgid "dice3" -msgstr "" +msgstr "teningur3" #. โšƒ (U+02683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2711,7 +2570,7 @@ "DIE_FACE-4\n" "LngText.text" msgid "dice4" -msgstr "" +msgstr "teningur4" #. โš„ (U+02684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2720,7 +2579,7 @@ "DIE_FACE-5\n" "LngText.text" msgid "dice5" -msgstr "" +msgstr "teningur5" #. โš… (U+02685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2729,27 +2588,25 @@ "DIE_FACE-6\n" "LngText.text" msgid "dice6" -msgstr "" +msgstr "teningur6" #. โš (U+02690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "Flรถgg" +msgstr "flagg" #. โš‘ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "Flรถgg" +msgstr "flagg2" #. โš’ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2758,17 +2615,16 @@ "HAMMER_AND_PICK\n" "LngText.text" msgid "hammer and pick" -msgstr "" +msgstr "hamar og meitill" #. โš“ (U+02693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "Festipunktur" +msgstr "akkeri" #. โš” (U+02694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2777,7 +2633,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "sverรฐ" #. โš• (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2786,7 +2642,7 @@ "STAFF_OF_AESCULAPIUS\n" "LngText.text" msgid "medical" -msgstr "" +msgstr "lรฆkningar" #. โš– (U+02696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2795,7 +2651,7 @@ "SCALES\n" "LngText.text" msgid "scales" -msgstr "" +msgstr "vogir" #. โš— (U+02697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2804,17 +2660,16 @@ "ALEMBIC\n" "LngText.text" msgid "alembic" -msgstr "" +msgstr "eimingarflaska" #. โš˜ (U+02698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FLOWER\n" "LngText.text" msgid "flower" -msgstr "Blรณm" +msgstr "blรณm" #. โš™ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2823,7 +2678,7 @@ "GEAR\n" "LngText.text" msgid "gear" -msgstr "" +msgstr "gรญrhjรณl" #. โšš (U+0269A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2832,7 +2687,7 @@ "STAFF_OF_HERMES\n" "LngText.text" msgid "staff" -msgstr "" +msgstr "hermesarstafur" #. โš› (U+0269B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2841,7 +2696,7 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "atรณm" #. โšœ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2850,17 +2705,16 @@ "FLEUR-DE-LIS\n" "LngText.text" msgid "fleur de lis" -msgstr "" +msgstr "liljutรกkniรฐ" #. โš  (U+026A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "Aรฐvรถrun" +msgstr "aรฐvรถrun" #. โšก (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2869,7 +2723,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "hรกspenna" #. โšช (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2878,7 +2732,7 @@ "MEDIUM_WHITE_CIRCLE\n" "LngText.text" msgid "white circle" -msgstr "" +msgstr "hvรญtur hringur" #. โšซ (U+026AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2887,7 +2741,7 @@ "MEDIUM_BLACK_CIRCLE\n" "LngText.text" msgid "black circle" -msgstr "" +msgstr "svartur hringur" #. โšญ (U+026AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2896,7 +2750,7 @@ "MARRIAGE_SYMBOL\n" "LngText.text" msgid "marriage" -msgstr "" +msgstr "gifting" #. โšฎ (U+026AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2905,7 +2759,7 @@ "DIVORCE_SYMBOL\n" "LngText.text" msgid "divorce" -msgstr "" +msgstr "skilnaรฐur" #. โšฐ (U+026B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2914,7 +2768,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "kista" #. โšฑ (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2923,7 +2777,7 @@ "FUNERAL_URN\n" "LngText.text" msgid "urn" -msgstr "" +msgstr "duftker" #. โšฝ (U+026BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2932,7 +2786,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "knattspyrna" #. โšพ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2941,7 +2795,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "hornabolti" #. โ›„ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2950,17 +2804,16 @@ "SNOWMAN_WITHOUT_SNOW\n" "LngText.text" msgid "snowman2" -msgstr "" +msgstr "snjรณkall2" #. โ›… (U+026C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "Skรฝ" +msgstr "skรฝ2" #. โ›† (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2969,17 +2822,16 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "rigning2" #. โ›ˆ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "THUNDER_CLOUD_AND_RAIN\n" "LngText.text" msgid "cloud3" -msgstr "Skรฝ" +msgstr "skรฝ3" #. โ›Ž (U+026CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2988,17 +2840,16 @@ "OPHIUCHUS\n" "LngText.text" msgid "ophiuchus" -msgstr "" +msgstr "naรฐurvaldi" #. โ› (U+026CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PICK\n" "LngText.text" msgid "pick" -msgstr "_Velduโ€ฆ" +msgstr "meitill" #. โ› (U+026D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3007,7 +2858,7 @@ "CAR_SLIDING\n" "LngText.text" msgid "sliding car" -msgstr "" +msgstr "hรกlka" #. โ›‘ (U+026D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3016,7 +2867,7 @@ "HELMET_WITH_WHITE_CROSS\n" "LngText.text" msgid "helmet" -msgstr "" +msgstr "hjรกlmur" #. โ›“ (U+026D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3025,17 +2876,16 @@ "CHAINS\n" "LngText.text" msgid "chains" -msgstr "" +msgstr "keรฐjur" #. โ›” (U+026D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NO_ENTRY\n" "LngText.text" msgid "no entry" -msgstr "Engin fรฆrsla" +msgstr "engin inngangur" #. โ›Ÿ (U+026DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3044,7 +2894,7 @@ "BLACK_TRUCK\n" "LngText.text" msgid "truck" -msgstr "" +msgstr "trukkur" #. โ›ค (U+026E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3053,7 +2903,7 @@ "PENTAGRAM\n" "LngText.text" msgid "pentagram" -msgstr "" +msgstr "fimmrรถndungur" #. โ›จ (U+026E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3062,7 +2912,7 @@ "BLACK_CROSS_ON_SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "skjรถldur" #. โ›ช (U+026EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3071,7 +2921,7 @@ "CHURCH\n" "LngText.text" msgid "church" -msgstr "" +msgstr "kirkja" #. โ›ฐ (U+026F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3080,7 +2930,7 @@ "MOUNTAIN\n" "LngText.text" msgid "mountain" -msgstr "" +msgstr "fjall" #. โ›ฑ (U+026F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3089,7 +2939,7 @@ "UMBRELLA_ON_GROUND\n" "LngText.text" msgid "umbrella3" -msgstr "" +msgstr "regnhlรญf3" #. โ›ฒ (U+026F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3098,7 +2948,7 @@ "FOUNTAIN\n" "LngText.text" msgid "fountain" -msgstr "" +msgstr "gosbrunnur" #. โ›ณ (U+026F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3107,7 +2957,7 @@ "FLAG_IN_HOLE\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "golf" #. โ›ด (U+026F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3116,7 +2966,7 @@ "FERRY\n" "LngText.text" msgid "ferry" -msgstr "" +msgstr "ferja" #. โ›ต (U+026F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3125,7 +2975,7 @@ "SAILBOAT\n" "LngText.text" msgid "sailboat" -msgstr "" +msgstr "seglbรกtur" #. โ›บ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3134,7 +2984,7 @@ "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "tjald" #. โ›ท (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3143,7 +2993,7 @@ "SKIER\n" "LngText.text" msgid "skier" -msgstr "" +msgstr "skรญรฐamaรฐur" #. โ›ธ (U+026F8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3152,7 +3002,7 @@ "ICE_SKATE\n" "LngText.text" msgid "skate" -msgstr "" +msgstr "skauti" #. โ›น (U+026F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3161,7 +3011,7 @@ "PERSON_WITH_BALL\n" "LngText.text" msgid "ball" -msgstr "" +msgstr "bolti" #. โ›ฝ (U+026FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3170,7 +3020,7 @@ "FUEL_PUMP\n" "LngText.text" msgid "fuelpump" -msgstr "" +msgstr "eldsneytisdรฆla" #. โœ (U+02701), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3179,7 +3029,7 @@ "UPPER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors3" -msgstr "" +msgstr "skรฆri3" #. โœ‚ (U+02702), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3188,7 +3038,7 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "skรฆri" #. โœƒ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3197,7 +3047,7 @@ "LOWER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors4" -msgstr "" +msgstr "skรฆri4" #. โœ„ (U+02704), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3206,7 +3056,7 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "skรฆri2" #. โœ… (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3215,7 +3065,7 @@ "WHITE_HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark3" -msgstr "" +msgstr "hakmerki3" #. โœ† (U+02706), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3224,7 +3074,7 @@ "TELEPHONE_LOCATION\n" "LngText.text" msgid "telephone" -msgstr "" +msgstr "sรญmi" #. โœˆ (U+02708), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3233,17 +3083,16 @@ "AIRPLANE\n" "LngText.text" msgid "airplane" -msgstr "" +msgstr "flugvรฉl" #. โœ‰ (U+02709), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ENVELOPE\n" "LngText.text" msgid "envelope" -msgstr "Umslag" +msgstr "umslag" #. โœŠ (U+0270A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3252,17 +3101,16 @@ "RAISED_FIST\n" "LngText.text" msgid "fist" -msgstr "" +msgstr "hnefi" #. โœ‹ (U+0270B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RAISED_HAND\n" "LngText.text" msgid "hand" -msgstr "og" +msgstr "hรถnd" #. โœŒ (U+0270C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3271,17 +3119,16 @@ "VICTORY_HAND\n" "LngText.text" msgid "victory" -msgstr "" +msgstr "sigur" #. โœ (U+0270D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WRITING_HAND\n" "LngText.text" msgid "writing" -msgstr "Skrifa texta" +msgstr "skrifa" #. โœŽ (U+0270E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3290,7 +3137,7 @@ "LOWER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil" -msgstr "" +msgstr "blรฝantur" #. โœ (U+0270F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3299,7 +3146,7 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "blรฝantur2" #. โœ (U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3308,7 +3155,7 @@ "UPPER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil3" -msgstr "" +msgstr "blรฝantur3" #. โœ‘ (U+02711), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3317,7 +3164,7 @@ "WHITE_NIB\n" "LngText.text" msgid "nib" -msgstr "" +msgstr "pennaoddur" #. โœ’ (U+02712), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3326,7 +3173,7 @@ "BLACK_NIB\n" "LngText.text" msgid "nib2" -msgstr "" +msgstr "pennaoddur2" #. โœ“ (U+02713), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3335,7 +3182,7 @@ "CHECK_MARK\n" "LngText.text" msgid "check mark" -msgstr "" +msgstr "hakmerki" #. โœ” (U+02714), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3344,7 +3191,7 @@ "HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark2" -msgstr "" +msgstr "hakmerki2" #. โœ– (U+02716), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3353,7 +3200,7 @@ "HEAVY_MULTIPLICATION_X\n" "LngText.text" msgid "times2" -msgstr "" +msgstr "margfรถldun2" #. โœ™ (U+02719), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3362,7 +3209,7 @@ "OUTLINED_GREEK_CROSS\n" "LngText.text" msgid "Greek cross2" -msgstr "" +msgstr "grรญskur kross2" #. โœš (U+0271A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3371,7 +3218,7 @@ "HEAVY_GREEK_CROSS\n" "LngText.text" msgid "Greek cross" -msgstr "" +msgstr "grรญskur kross" #. โœ (U+0271D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3380,7 +3227,7 @@ "LATIN_CROSS\n" "LngText.text" msgid "Latin cross" -msgstr "" +msgstr "latneskur kross" #. โœ  (U+02720), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3389,7 +3236,7 @@ "MALTESE_CROSS\n" "LngText.text" msgid "Maltese cross" -msgstr "" +msgstr "mรถltukross" #. โœก (U+02721), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3398,7 +3245,7 @@ "STAR_OF_DAVID\n" "LngText.text" msgid "star of David" -msgstr "" +msgstr "davรญรฐsstjarna" #. โœจ (U+02728), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3407,7 +3254,7 @@ "SPARKLES\n" "LngText.text" msgid "sparkles" -msgstr "" +msgstr "neistar" #. โ„ (U+02744), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3416,7 +3263,7 @@ "SNOWFLAKE\n" "LngText.text" msgid "snowflake" -msgstr "" +msgstr "snjรณkorn" #. โ‡ (U+02747), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3425,31 +3272,28 @@ "SPARKLE\n" "LngText.text" msgid "sparkle" -msgstr "" +msgstr "neisti" #. โŒ (U+0274C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "X" +msgstr "x2" #. โŽ (U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NEGATIVE_SQUARED_CROSS_MARK\n" "LngText.text" msgid "x3" -msgstr "X" +msgstr "x3" #. โ“ (U+02753), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_QUESTION_MARK_ORNAMENT\n" @@ -3464,11 +3308,10 @@ "WHITE_QUESTION_MARK_ORNAMENT\n" "LngText.text" msgid "?2" -msgstr "" +msgstr "?2" #. โ• (U+02755), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_EXCLAMATION_MARK_ORNAMENT\n" @@ -3483,37 +3326,34 @@ "HEAVY_EXCLAMATION_MARK_SYMBOL\n" "LngText.text" msgid "!2" -msgstr "" +msgstr "!2" #. โค (U+02764), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HEAVY_BLACK_HEART\n" "LngText.text" msgid "heart" -msgstr "Hjarta" +msgstr "hjarta" #. โžฐ (U+027B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CURLY_LOOP\n" "LngText.text" msgid "loop" -msgstr "Loop" +msgstr "lykkja" #. โžฟ (U+027BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_CURLY_LOOP\n" "LngText.text" msgid "loop2" -msgstr "Loop" +msgstr "lykkja2" #. โฌ› (U+02B1B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3522,7 +3362,7 @@ "BLACK_LARGE_SQUARE\n" "LngText.text" msgid "large square2" -msgstr "" +msgstr "stรณr ferningur2" #. โฌœ (U+02B1C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3531,47 +3371,43 @@ "WHITE_LARGE_SQUARE\n" "LngText.text" msgid "large square" -msgstr "" +msgstr "stรณr ferningur" #. โฌŸ (U+02B1F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_PENTAGON\n" "LngText.text" msgid "pentagon2" -msgstr "Fimmhyrningur" +msgstr "fimmhyrningur2" #. โฌ  (U+02B20), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_PENTAGON\n" "LngText.text" msgid "pentagon" -msgstr "Fimmhyrningur" +msgstr "fimmhyrningur" #. โฌก (U+02B21), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_HEXAGON\n" "LngText.text" msgid "hexagon" -msgstr "Sexhyrningur" +msgstr "sexhyrningur" #. โฌข (U+02B22), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_HEXAGON\n" "LngText.text" msgid "hexagon2" -msgstr "Sexhyrningur" +msgstr "sexhyrningur2" #. โฌค (U+02B24), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3580,17 +3416,16 @@ "BLACK_LARGE_CIRCLE\n" "LngText.text" msgid "large circle2" -msgstr "" +msgstr "stรณr hringur2" #. โฌญ (U+02B2D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_HORIZONTAL_ELLIPSE\n" "LngText.text" msgid "ellipse" -msgstr "Sporbaugur" +msgstr "sporbaugur" #. โญ (U+02B50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3599,7 +3434,7 @@ "WHITE_MEDIUM_STAR\n" "LngText.text" msgid "medium star" -msgstr "" +msgstr "miรฐlungs stjarna" #. โญ‘ (U+02B51), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3608,7 +3443,7 @@ "BLACK_SMALL_STAR\n" "LngText.text" msgid "small star2" -msgstr "" +msgstr "lรญtil stjarna2" #. โญ’ (U+02B52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3617,7 +3452,7 @@ "WHITE_SMALL_STAR\n" "LngText.text" msgid "small star" -msgstr "" +msgstr "lรญtil stjarna" #. ๏ฌ€ (U+0FB00), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3626,7 +3461,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. ๏ฌ (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3635,7 +3470,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. ๏ฌ‚ (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3644,7 +3479,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ๏ฌƒ (U+0FB03), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3653,7 +3488,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ๏ฌ„ (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3662,7 +3497,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. ๐„ž (U+1D11E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3671,7 +3506,7 @@ "MUSICAL_SYMBOL_G_CLEF\n" "LngText.text" msgid "clef" -msgstr "" +msgstr "G-lykill" #. ๐„ช (U+1D12A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3734,7 +3569,7 @@ "MUSICAL_SYMBOL_WHOLE_NOTE\n" "LngText.text" msgid "whole note" -msgstr "" +msgstr "heilnรณta" #. ๐…ž (U+1D15E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3743,7 +3578,7 @@ "MUSICAL_SYMBOL_HALF_NOTE\n" "LngText.text" msgid "half note" -msgstr "" +msgstr "hรกlfnรณta" #. ๐…Ÿ (U+1D15F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3752,7 +3587,7 @@ "MUSICAL_SYMBOL_QUARTER_NOTE\n" "LngText.text" msgid "quarter note" -msgstr "" +msgstr "fjรณrรฐapartsnรณta" #. ๐…  (U+1D160), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3761,7 +3596,7 @@ "MUSICAL_SYMBOL_EIGHTH_NOTE\n" "LngText.text" msgid "eighth note" -msgstr "" +msgstr "รกttundapartsnรณta" #. ๐…ก (U+1D161), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3770,7 +3605,7 @@ "MUSICAL_SYMBOL_SIXTEENTH_NOTE\n" "LngText.text" msgid "sixteenth note" -msgstr "" +msgstr "sextรกndapartsnรณta" #. ๐Ÿ€„ (U+1F004), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3779,7 +3614,7 @@ "MAHJONG_TILE_RED_DRAGON\n" "LngText.text" msgid "mahjong" -msgstr "" +msgstr "mahjong" #. ๐Ÿ  (U+1F060), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3788,7 +3623,7 @@ "DOMINO_TILE_HORIZONTAL-06-05\n" "LngText.text" msgid "domino" -msgstr "" +msgstr "dรณmรญnรณ" #. ๐Ÿ‚ก (U+1F0A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3797,7 +3632,7 @@ "PLAYING_CARD_ACE_OF_SPADES\n" "LngText.text" msgid "ace" -msgstr "" +msgstr "รกs" #. ๐Ÿ‚ซ (U+1F0AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3806,7 +3641,7 @@ "PLAYING_CARD_JACK_OF_SPADES\n" "LngText.text" msgid "jack" -msgstr "" +msgstr "gosi" #. ๐Ÿ‚ญ (U+1F0AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3815,17 +3650,16 @@ "PLAYING_CARD_QUEEN_OF_SPADES\n" "LngText.text" msgid "queen" -msgstr "" +msgstr "drottning" #. ๐Ÿ‚ฎ (U+1F0AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PLAYING_CARD_KING_OF_SPADES\n" "LngText.text" msgid "king" -msgstr "Hringur" +msgstr "kรณngur" #. ๐Ÿƒ (U+1F0CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3834,7 +3668,7 @@ "PLAYING_CARD_BLACK_JOKER\n" "LngText.text" msgid "joker" -msgstr "" +msgstr "jรณker" #. ๐ŸŒ€ (U+1F300), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3843,7 +3677,7 @@ "CYCLONE\n" "LngText.text" msgid "cyclone" -msgstr "" +msgstr "hvirfilbylur" #. ๐ŸŒ (U+1F301), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3852,7 +3686,7 @@ "FOGGY\n" "LngText.text" msgid "fog" -msgstr "" +msgstr "รพoka" #. ๐ŸŒ‚ (U+1F302), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3861,17 +3695,16 @@ "CLOSED_UMBRELLA\n" "LngText.text" msgid "umbrella2" -msgstr "" +msgstr "regnhlรญf2" #. ๐ŸŒƒ (U+1F303), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NIGHT_WITH_STARS\n" "LngText.text" msgid "night" -msgstr "Nรณtt" +msgstr "nรณtt" #. ๐ŸŒ„ (U+1F304), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3880,7 +3713,7 @@ "SUNRISE_OVER_MOUNTAINS\n" "LngText.text" msgid "sunrise2" -msgstr "" +msgstr "sรณlarupprรกs2" #. ๐ŸŒ… (U+1F305), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3889,17 +3722,16 @@ "SUNRISE\n" "LngText.text" msgid "sunrise" -msgstr "" +msgstr "sรณlarupprรกs" #. ๐ŸŒ† (U+1F306), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CITYSCAPE_AT_DUSK\n" "LngText.text" msgid "sunset" -msgstr "Sรณlsetur" +msgstr "sรณlsetur" #. ๐ŸŒ‡ (U+1F307), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3908,7 +3740,7 @@ "SUNSET_OVER_BUILDINGS\n" "LngText.text" msgid "sunrise3" -msgstr "" +msgstr "sรณlarupprรกs3" #. ๐ŸŒˆ (U+1F308), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3917,7 +3749,7 @@ "RAINBOW\n" "LngText.text" msgid "rainbow" -msgstr "" +msgstr "regnbogi" #. ๐ŸŒ‰ (U+1F309), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3926,7 +3758,7 @@ "BRIDGE_AT_NIGHT\n" "LngText.text" msgid "bridge" -msgstr "" +msgstr "brรบ" #. ๐ŸŒŠ (U+1F30A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3935,7 +3767,7 @@ "WATER_WAVE\n" "LngText.text" msgid "ocean" -msgstr "" +msgstr "รบthaf" #. ๐ŸŒ‹ (U+1F30B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3944,7 +3776,7 @@ "VOLCANO\n" "LngText.text" msgid "volcano" -msgstr "" +msgstr "eldfjall" #. ๐ŸŒŒ (U+1F30C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3953,7 +3785,7 @@ "MILKY_WAY\n" "LngText.text" msgid "Milky way" -msgstr "" +msgstr "vetrarbrautin" #. ๐ŸŒ (U+1F30D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3962,7 +3794,7 @@ "EARTH_GLOBE_EUROPE-AFRICA\n" "LngText.text" msgid "globe" -msgstr "" +msgstr "hnรถttur" #. ๐ŸŒŽ (U+1F30E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3971,7 +3803,7 @@ "EARTH_GLOBE_AMERICAS\n" "LngText.text" msgid "globe2" -msgstr "" +msgstr "hnรถttur2" #. ๐ŸŒ (U+1F30F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3980,7 +3812,7 @@ "EARTH_GLOBE_ASIA-AUSTRALIA\n" "LngText.text" msgid "globe3" -msgstr "" +msgstr "hnรถttur3" #. ๐ŸŒ (U+1F310), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3989,7 +3821,7 @@ "GLOBE_WITH_MERIDIANS\n" "LngText.text" msgid "globe4" -msgstr "" +msgstr "hnรถttur4" #. ๐ŸŒ‘ (U+1F311), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3998,7 +3830,7 @@ "NEW_MOON_SYMBOL\n" "LngText.text" msgid "new moon" -msgstr "" +msgstr "nรฝtt tungl" #. ๐ŸŒ’ (U+1F312), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4007,7 +3839,7 @@ "WAXING_CRESCENT_MOON_SYMBOL\n" "LngText.text" msgid "waxing crescent moon" -msgstr "" +msgstr "vaxandi sigรฐmรกni" #. ๐ŸŒ“ (U+1F313), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4016,7 +3848,7 @@ "FIRST_QUARTER_MOON_SYMBOL\n" "LngText.text" msgid "first quarter" -msgstr "" +msgstr "fyrsta kvartil" #. ๐ŸŒ” (U+1F314), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4025,7 +3857,7 @@ "WAXING_GIBBOUS_MOON_SYMBOL\n" "LngText.text" msgid "waxing gibbous moon" -msgstr "" +msgstr "vaxandi gleiรฐmรกni" #. ๐ŸŒ• (U+1F315), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4034,7 +3866,7 @@ "FULL_MOON_SYMBOL\n" "LngText.text" msgid "full moon" -msgstr "" +msgstr "fullt tungl" #. ๐ŸŒ– (U+1F316), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4043,7 +3875,7 @@ "WANING_GIBBOUS_MOON_SYMBOL\n" "LngText.text" msgid "waning gibbous moon" -msgstr "" +msgstr "minnkandi gleiรฐmรกni" #. ๐ŸŒ— (U+1F317), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4052,7 +3884,7 @@ "LAST_QUARTER_MOON_SYMBOL\n" "LngText.text" msgid "last quarter" -msgstr "" +msgstr "sรญรฐasta kvartil" #. ๐ŸŒ˜ (U+1F318), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4061,17 +3893,16 @@ "WANING_CRESCENT_MOON_SYMBOL\n" "LngText.text" msgid "waning crescent moon" -msgstr "" +msgstr "minnkandi sigรฐmรกni" #. ๐ŸŒ™ (U+1F319), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CRESCENT_MOON\n" "LngText.text" msgid "crescent moon" -msgstr "Vaxandi tungl" +msgstr "vaxandi tungl" #. ๐ŸŒš (U+1F31A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4080,27 +3911,25 @@ "NEW_MOON_WITH_FACE\n" "LngText.text" msgid "new moon2" -msgstr "" +msgstr "nรฝtt tungl2" #. ๐ŸŒ› (U+1F31B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FIRST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon" -msgstr "Tungl" +msgstr "tungl" #. ๐ŸŒœ (U+1F31C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LAST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon2" -msgstr "Tungl" +msgstr "tungl2" #. ๐ŸŒ (U+1F31D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4109,17 +3938,16 @@ "FULL_MOON_WITH_FACE\n" "LngText.text" msgid "full moon2" -msgstr "" +msgstr "fullt tungl2" #. ๐ŸŒž (U+1F31E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUN_WITH_FACE\n" "LngText.text" msgid "sun" -msgstr "Sรณl" +msgstr "sรณl" #. ๐ŸŒŸ (U+1F31F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4128,7 +3956,7 @@ "GLOWING_STAR\n" "LngText.text" msgid "star3" -msgstr "" +msgstr "stjarna3" #. ๐ŸŒ  (U+1F320), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4137,7 +3965,7 @@ "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "" +msgstr "stjarna4" #. ๐ŸŒฐ (U+1F330), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4146,7 +3974,7 @@ "CHESTNUT\n" "LngText.text" msgid "chestnut" -msgstr "" +msgstr "kastanรญa" #. ๐ŸŒฑ (U+1F331), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4155,7 +3983,7 @@ "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "" +msgstr "spรญrun" #. ๐ŸŒฒ (U+1F332), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4164,7 +3992,7 @@ "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "" +msgstr "fura" #. ๐ŸŒณ (U+1F333), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4173,7 +4001,7 @@ "DECIDUOUS_TREE\n" "LngText.text" msgid "tree" -msgstr "" +msgstr "trรฉ" #. ๐ŸŒด (U+1F334), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4182,7 +4010,7 @@ "PALM_TREE\n" "LngText.text" msgid "palm" -msgstr "" +msgstr "pรกlmi" #. ๐ŸŒต (U+1F335), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4191,7 +4019,7 @@ "CACTUS\n" "LngText.text" msgid "cactus" -msgstr "" +msgstr "kaktus" #. ๐ŸŒท (U+1F337), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4200,7 +4028,7 @@ "TULIP\n" "LngText.text" msgid "tulip" -msgstr "" +msgstr "tรบlรญpani" #. ๐ŸŒธ (U+1F338), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4209,7 +4037,7 @@ "CHERRY_BLOSSOM\n" "LngText.text" msgid "cherry blossom" -msgstr "" +msgstr "kirsuberjablรณm" #. ๐ŸŒน (U+1F339), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4218,7 +4046,7 @@ "ROSE\n" "LngText.text" msgid "rose" -msgstr "" +msgstr "rรณs" #. ๐ŸŒบ (U+1F33A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4236,7 +4064,7 @@ "SUNFLOWER\n" "LngText.text" msgid "sunflower" -msgstr "" +msgstr "sรณlblรณm" #. ๐ŸŒผ (U+1F33C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4245,7 +4073,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "blรณmi" #. ๐ŸŒฝ (U+1F33D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4254,7 +4082,7 @@ "EAR_OF_MAIZE\n" "LngText.text" msgid "corn" -msgstr "" +msgstr "maรญs" #. ๐ŸŒพ (U+1F33E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4263,7 +4091,7 @@ "EAR_OF_RICE\n" "LngText.text" msgid "grass" -msgstr "" +msgstr "gras" #. ๐ŸŒฟ (U+1F33F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4272,17 +4100,16 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "jurt" #. ๐Ÿ€ (U+1F340), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FOUR_LEAF_CLOVER\n" "LngText.text" msgid "clover" -msgstr "Smรกri" +msgstr "smรกri" #. ๐Ÿ (U+1F341), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4291,7 +4118,7 @@ "MAPLE_LEAF\n" "LngText.text" msgid "leaf" -msgstr "" +msgstr "lauf" #. ๐Ÿ‚ (U+1F342), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4300,7 +4127,7 @@ "FALLEN_LEAF\n" "LngText.text" msgid "leaf2" -msgstr "" +msgstr "lauf2" #. ๐Ÿƒ (U+1F343), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4309,7 +4136,7 @@ "LEAF_FLUTTERING_IN_WIND\n" "LngText.text" msgid "leaf3" -msgstr "" +msgstr "lauf3" #. ๐Ÿ„ (U+1F344), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4318,11 +4145,10 @@ "MUSHROOM\n" "LngText.text" msgid "mushroom" -msgstr "" +msgstr "sveppur" #. ๐Ÿ… (U+1F345), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TOMATO\n" @@ -4337,7 +4163,7 @@ "AUBERGINE\n" "LngText.text" msgid "eggplant" -msgstr "" +msgstr "eggaldin" #. ๐Ÿ‡ (U+1F347), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4346,7 +4172,7 @@ "GRAPES\n" "LngText.text" msgid "grapes" -msgstr "" +msgstr "vรญnber" #. ๐Ÿˆ (U+1F348), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4355,7 +4181,7 @@ "MELON\n" "LngText.text" msgid "melon" -msgstr "" +msgstr "melรณna" #. ๐Ÿ‰ (U+1F349), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4364,7 +4190,7 @@ "WATERMELON\n" "LngText.text" msgid "watermelon" -msgstr "" +msgstr "vatnsmelรณna" #. ๐ŸŠ (U+1F34A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4373,7 +4199,7 @@ "TANGERINE\n" "LngText.text" msgid "tangerine" -msgstr "" +msgstr "tangerรญna" #. ๐Ÿ‹ (U+1F34B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4382,7 +4208,7 @@ "LEMON\n" "LngText.text" msgid "lemon" -msgstr "" +msgstr "sรญtrรณna" #. ๐ŸŒ (U+1F34C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4391,7 +4217,7 @@ "BANANA\n" "LngText.text" msgid "banana" -msgstr "" +msgstr "banani" #. ๐Ÿ (U+1F34D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4400,7 +4226,7 @@ "PINEAPPLE\n" "LngText.text" msgid "pineapple" -msgstr "" +msgstr "ananas" #. ๐ŸŽ (U+1F34E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4409,7 +4235,7 @@ "RED_APPLE\n" "LngText.text" msgid "apple" -msgstr "" +msgstr "epli" #. ๐Ÿ (U+1F34F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4418,7 +4244,7 @@ "GREEN_APPLE\n" "LngText.text" msgid "green apple" -msgstr "" +msgstr "grรฆnt epli" #. ๐Ÿ (U+1F350), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4427,7 +4253,7 @@ "PEAR\n" "LngText.text" msgid "pear" -msgstr "" +msgstr "pera" #. ๐Ÿ‘ (U+1F351), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4436,7 +4262,7 @@ "PEACH\n" "LngText.text" msgid "peach" -msgstr "" +msgstr "ferskja" #. ๐Ÿ’ (U+1F352), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4445,7 +4271,7 @@ "CHERRIES\n" "LngText.text" msgid "cherries" -msgstr "" +msgstr "kirsuber" #. ๐Ÿ“ (U+1F353), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4454,7 +4280,7 @@ "STRAWBERRY\n" "LngText.text" msgid "strawberry" -msgstr "" +msgstr "jarรฐarber" #. ๐Ÿ” (U+1F354), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4463,7 +4289,7 @@ "HAMBURGER\n" "LngText.text" msgid "hamburger" -msgstr "" +msgstr "hamborgari" #. ๐Ÿ• (U+1F355), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4472,7 +4298,7 @@ "SLICE_OF_PIZZA\n" "LngText.text" msgid "pizza" -msgstr "" +msgstr "flatbaka" #. ๐Ÿ– (U+1F356), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4481,7 +4307,7 @@ "MEAT_ON_BONE\n" "LngText.text" msgid "meat" -msgstr "" +msgstr "kjรถt" #. ๐Ÿ— (U+1F357), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4490,7 +4316,7 @@ "POULTRY_LEG\n" "LngText.text" msgid "poultry leg" -msgstr "" +msgstr "kjรบklingaleggur" #. ๐Ÿ˜ (U+1F358), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4499,7 +4325,7 @@ "RICE_CRACKER\n" "LngText.text" msgid "rice cracker" -msgstr "" +msgstr "hrรญskaka" #. ๐Ÿ™ (U+1F359), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4508,7 +4334,7 @@ "RICE_BALL\n" "LngText.text" msgid "rice ball" -msgstr "" +msgstr "hrรญskรบla" #. ๐Ÿš (U+1F35A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4517,7 +4343,7 @@ "COOKED_RICE\n" "LngText.text" msgid "rice" -msgstr "" +msgstr "hrรญsgrjรณn" #. ๐Ÿ› (U+1F35B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4526,7 +4352,7 @@ "CURRY_AND_RICE\n" "LngText.text" msgid "curry" -msgstr "" +msgstr "karrรฝ" #. ๐Ÿœ (U+1F35C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4535,7 +4361,7 @@ "STEAMING_BOWL\n" "LngText.text" msgid "ramen" -msgstr "" +msgstr "nรบรฐluskรกl" #. ๐Ÿ (U+1F35D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4544,7 +4370,7 @@ "SPAGHETTI\n" "LngText.text" msgid "spaghetti" -msgstr "" +msgstr "spaghetti" #. ๐Ÿž (U+1F35E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4553,7 +4379,7 @@ "BREAD\n" "LngText.text" msgid "bread" -msgstr "" +msgstr "brauรฐ" #. ๐ŸŸ (U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4562,7 +4388,7 @@ "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "" +msgstr "franskar" #. ๐Ÿ  (U+1F360), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4571,7 +4397,7 @@ "ROASTED_SWEET_POTATO\n" "LngText.text" msgid "sweet potato" -msgstr "" +msgstr "sรฆt kartafla" #. ๐Ÿก (U+1F361), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4580,7 +4406,7 @@ "DANGO\n" "LngText.text" msgid "dango" -msgstr "" +msgstr "kjรถtspjรณt" #. ๐Ÿข (U+1F362), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4589,7 +4415,7 @@ "ODEN\n" "LngText.text" msgid "oden" -msgstr "" +msgstr "sjรกvarrรฉttaspjรณt" #. ๐Ÿฃ (U+1F363), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4598,7 +4424,7 @@ "SUSHI\n" "LngText.text" msgid "sushi" -msgstr "" +msgstr "sushi" #. ๐Ÿค (U+1F364), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4607,7 +4433,7 @@ "FRIED_SHRIMP\n" "LngText.text" msgid "fried shrimp" -msgstr "" +msgstr "steikt rรฆkja" #. ๐Ÿฅ (U+1F365), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4616,7 +4442,7 @@ "FISH_CAKE_WITH_SWIRL_DESIGN\n" "LngText.text" msgid "fish cake" -msgstr "" +msgstr "fiskiklatti" #. ๐Ÿฆ (U+1F366), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4625,7 +4451,7 @@ "SOFT_ICE_CREAM\n" "LngText.text" msgid "icecream" -msgstr "" +msgstr "rjรณmaรญs" #. ๐Ÿง (U+1F367), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4634,7 +4460,7 @@ "SHAVED_ICE\n" "LngText.text" msgid "shaved ice" -msgstr "" +msgstr "skafรญs" #. ๐Ÿจ (U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4643,7 +4469,7 @@ "ICE_CREAM\n" "LngText.text" msgid "ice cream" -msgstr "" +msgstr "rjรณmaรญs" #. ๐Ÿฉ (U+1F369), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4652,7 +4478,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "kleinuhringur" #. ๐Ÿช (U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4661,11 +4487,10 @@ "COOKIE\n" "LngText.text" msgid "cookie" -msgstr "" +msgstr "smรกkaka" #. ๐Ÿซ (U+1F36B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHOCOLATE_BAR\n" @@ -4680,7 +4505,7 @@ "CANDY\n" "LngText.text" msgid "candy" -msgstr "" +msgstr "nammi" #. ๐Ÿญ (U+1F36D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4689,7 +4514,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "sleikjรณ" #. ๐Ÿฎ (U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4707,7 +4532,7 @@ "HONEY_POT\n" "LngText.text" msgid "honey" -msgstr "" +msgstr "hunang" #. ๐Ÿฐ (U+1F370), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4716,7 +4541,7 @@ "SHORTCAKE\n" "LngText.text" msgid "cake" -msgstr "" +msgstr "kaka" #. ๐Ÿฑ (U+1F371), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4725,7 +4550,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "matarbakki" #. ๐Ÿฒ (U+1F372), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4734,7 +4559,7 @@ "POT_OF_FOOD\n" "LngText.text" msgid "stew" -msgstr "" +msgstr "kรกssa" #. ๐Ÿณ (U+1F373), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4743,7 +4568,7 @@ "COOKING\n" "LngText.text" msgid "egg" -msgstr "" +msgstr "egg" #. ๐Ÿด (U+1F374), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4752,7 +4577,7 @@ "FORK_AND_KNIFE\n" "LngText.text" msgid "restaurant" -msgstr "" +msgstr "veitingastaรฐur" #. ๐Ÿต (U+1F375), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4761,7 +4586,7 @@ "TEACUP_WITHOUT_HANDLE\n" "LngText.text" msgid "tea" -msgstr "" +msgstr "te" #. ๐Ÿถ (U+1F376), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4770,7 +4595,7 @@ "SAKE_BOTTLE_AND_CUP\n" "LngText.text" msgid "sake" -msgstr "" +msgstr "sakรญ" #. ๐Ÿท (U+1F377), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4779,7 +4604,7 @@ "WINE_GLASS\n" "LngText.text" msgid "wine glass" -msgstr "" +msgstr "vรญnglas" #. ๐Ÿธ (U+1F378), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4788,7 +4613,7 @@ "COCKTAIL_GLASS\n" "LngText.text" msgid "cocktail" -msgstr "" +msgstr "kokkteill" #. ๐Ÿน (U+1F379), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4797,7 +4622,7 @@ "TROPICAL_DRINK\n" "LngText.text" msgid "tropical drink" -msgstr "" +msgstr "hitabeltisdrykkur" #. ๐Ÿบ (U+1F37A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4806,7 +4631,7 @@ "BEER_MUG\n" "LngText.text" msgid "beer" -msgstr "" +msgstr "bjรณr" #. ๐Ÿป (U+1F37B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4815,7 +4640,7 @@ "CLINKING_BEER_MUGS\n" "LngText.text" msgid "beer2" -msgstr "" +msgstr "bjรณr2" #. ๐Ÿผ (U+1F37C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4824,7 +4649,7 @@ "BABY_BOTTLE\n" "LngText.text" msgid "baby bottle" -msgstr "" +msgstr "peli" #. ๐ŸŽ€ (U+1F380), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4833,7 +4658,7 @@ "RIBBON\n" "LngText.text" msgid "ribbon" -msgstr "" +msgstr "borรฐi" #. ๐ŸŽ (U+1F381), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4842,7 +4667,7 @@ "WRAPPED_PRESENT\n" "LngText.text" msgid "gift" -msgstr "" +msgstr "gjรถf" #. ๐ŸŽ‚ (U+1F382), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4851,7 +4676,7 @@ "BIRTHDAY_CAKE\n" "LngText.text" msgid "birthday" -msgstr "" +msgstr "afmรฆli" #. ๐ŸŽƒ (U+1F383), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4860,7 +4685,7 @@ "JACK-O-LANTERN\n" "LngText.text" msgid "Halloween" -msgstr "" +msgstr "hrekkjavaka" #. ๐ŸŽ„ (U+1F384), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4869,7 +4694,7 @@ "CHRISTMAS_TREE\n" "LngText.text" msgid "Christmas" -msgstr "" +msgstr "Jรณl" #. ๐ŸŽ… (U+1F385), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4878,7 +4703,7 @@ "FATHER_CHRISTMAS\n" "LngText.text" msgid "Santa" -msgstr "" +msgstr "jรณlasveinn" #. ๐ŸŽ† (U+1F386), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4887,7 +4712,7 @@ "FIREWORKS\n" "LngText.text" msgid "fireworks" -msgstr "" +msgstr "flugeldar" #. ๐ŸŽ‡ (U+1F387), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4896,7 +4721,7 @@ "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "" +msgstr "stjรถrnuljรณs" #. ๐ŸŽˆ (U+1F388), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4905,7 +4730,7 @@ "BALLOON\n" "LngText.text" msgid "balloon" -msgstr "" +msgstr "blaรฐra" #. ๐ŸŽ‰ (U+1F389), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4914,7 +4739,7 @@ "PARTY_POPPER\n" "LngText.text" msgid "party" -msgstr "" +msgstr "partรฝ" #. ๐ŸŽŠ (U+1F38A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4936,13 +4761,12 @@ #. ๐ŸŽŒ (U+1F38C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "Flรถgg" +msgstr "flรถgg" #. ๐ŸŽ (U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4951,7 +4775,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "bambus" #. ๐ŸŽŽ (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4960,17 +4784,16 @@ "JAPANESE_DOLLS\n" "LngText.text" msgid "dolls" -msgstr "" +msgstr "dรบkkur" #. ๐ŸŽ (U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "Flรถgg" +msgstr "flรถgg2" #. ๐ŸŽ (U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4979,7 +4802,7 @@ "WIND_CHIME\n" "LngText.text" msgid "wind chime" -msgstr "" +msgstr "vindรณrรณi" #. ๐ŸŽ‘ (U+1F391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4997,7 +4820,7 @@ "SCHOOL_SATCHEL\n" "LngText.text" msgid "school satchel" -msgstr "" +msgstr "skรณlataska" #. ๐ŸŽ“ (U+1F393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5006,7 +4829,7 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "รบtskrift" #. ๐ŸŽ  (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5015,7 +4838,7 @@ "CAROUSEL_HORSE\n" "LngText.text" msgid "carousel horse" -msgstr "" +msgstr "hringekjuhestur" #. ๐ŸŽก (U+1F3A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5024,7 +4847,7 @@ "FERRIS_WHEEL\n" "LngText.text" msgid "ferris wheel" -msgstr "" +msgstr "parรญsarhjรณl" #. ๐ŸŽข (U+1F3A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5033,7 +4856,7 @@ "ROLLER_COASTER\n" "LngText.text" msgid "roller coaster" -msgstr "" +msgstr "rรบssรญbani" #. ๐ŸŽฃ (U+1F3A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5042,7 +4865,7 @@ "FISHING_POLE_AND_FISH\n" "LngText.text" msgid "fishing" -msgstr "" +msgstr "fiskveiรฐi" #. ๐ŸŽค (U+1F3A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5051,7 +4874,7 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "hljรณรฐnemi" #. ๐ŸŽฅ (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5060,17 +4883,16 @@ "MOVIE_CAMERA\n" "LngText.text" msgid "movie camera" -msgstr "" +msgstr "kvikmyndavรฉl" #. ๐ŸŽฆ (U+1F3A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "Kvikmynd" +msgstr "bรญรณ" #. ๐ŸŽง (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5079,7 +4901,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "heyrnartรณl" #. ๐ŸŽจ (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5088,7 +4910,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "list" #. ๐ŸŽฉ (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5097,7 +4919,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "pรญpuhattur" #. ๐ŸŽช (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5106,7 +4928,7 @@ "CIRCUS_TENT\n" "LngText.text" msgid "circus tent" -msgstr "" +msgstr "sirkustjald" #. ๐ŸŽซ (U+1F3AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5115,7 +4937,7 @@ "TICKET\n" "LngText.text" msgid "ticket" -msgstr "" +msgstr "miรฐi" #. ๐ŸŽฌ (U+1F3AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5124,7 +4946,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "klappspjald" #. ๐ŸŽญ (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5133,7 +4955,7 @@ "PERFORMING_ARTS\n" "LngText.text" msgid "theatre" -msgstr "" +msgstr "leikhรบs" #. ๐ŸŽฎ (U+1F3AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5142,7 +4964,7 @@ "VIDEO_GAME\n" "LngText.text" msgid "video game" -msgstr "" +msgstr "vรญdeรณleikur" #. ๐ŸŽฏ (U+1F3AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5151,7 +4973,7 @@ "DIRECT_HIT\n" "LngText.text" msgid "hit" -msgstr "" +msgstr "รญ mark" #. ๐ŸŽฐ (U+1F3B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5160,7 +4982,7 @@ "SLOT_MACHINE\n" "LngText.text" msgid "slot machine" -msgstr "" +msgstr "spilakassi" #. ๐ŸŽฑ (U+1F3B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5169,7 +4991,7 @@ "BILLIARDS\n" "LngText.text" msgid "billiards" -msgstr "" +msgstr "billjarรฐ" #. ๐ŸŽฒ (U+1F3B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5178,7 +5000,7 @@ "GAME_DIE\n" "LngText.text" msgid "dice" -msgstr "" +msgstr "teningur" #. ๐ŸŽณ (U+1F3B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5187,7 +5009,7 @@ "BOWLING\n" "LngText.text" msgid "bowling" -msgstr "" +msgstr "keila" #. ๐ŸŽด (U+1F3B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5196,27 +5018,25 @@ "FLOWER_PLAYING_CARDS\n" "LngText.text" msgid "cards" -msgstr "" +msgstr "spil" #. ๐ŸŽต (U+1F3B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUSICAL_NOTE\n" "LngText.text" msgid "music2" -msgstr "Tรณnlist" +msgstr "tรณnlist2" #. ๐ŸŽถ (U+1F3B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MULTIPLE_MUSICAL_NOTES\n" "LngText.text" msgid "music" -msgstr "Tรณnlist" +msgstr "tรณnlist" #. ๐ŸŽท (U+1F3B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5225,7 +5045,7 @@ "SAXOPHONE\n" "LngText.text" msgid "saxophone" -msgstr "" +msgstr "saxรณfรณnn" #. ๐ŸŽธ (U+1F3B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5234,7 +5054,7 @@ "GUITAR\n" "LngText.text" msgid "guitar" -msgstr "" +msgstr "gรญtar" #. ๐ŸŽน (U+1F3B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5243,7 +5063,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "pรญanรณ" #. ๐ŸŽบ (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5252,7 +5072,7 @@ "TRUMPET\n" "LngText.text" msgid "trumpet" -msgstr "" +msgstr "trompet" #. ๐ŸŽป (U+1F3BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5261,7 +5081,7 @@ "VIOLIN\n" "LngText.text" msgid "violin" -msgstr "" +msgstr "fiรฐla" #. ๐ŸŽผ (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5270,7 +5090,7 @@ "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "" +msgstr "nรณtnaskrift" #. ๐ŸŽฝ (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5279,7 +5099,7 @@ "RUNNING_SHIRT_WITH_SASH\n" "LngText.text" msgid "shirt2" -msgstr "" +msgstr "skyrta2" #. ๐ŸŽพ (U+1F3BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5288,7 +5108,7 @@ "TENNIS_RACQUET_AND_BALL\n" "LngText.text" msgid "tennis" -msgstr "" +msgstr "tennis" #. ๐ŸŽฟ (U+1F3BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5297,7 +5117,7 @@ "SKI_AND_SKI_BOOT\n" "LngText.text" msgid "ski" -msgstr "" +msgstr "skรญรฐi" #. ๐Ÿ€ (U+1F3C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5306,17 +5126,16 @@ "BASKETBALL_AND_HOOP\n" "LngText.text" msgid "basketball" -msgstr "" +msgstr "kรถrfubolti" #. ๐Ÿ (U+1F3C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "Flรถgg" +msgstr "flagg3" #. ๐Ÿ‚ (U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5325,7 +5144,7 @@ "SNOWBOARDER\n" "LngText.text" msgid "snowboarder" -msgstr "" +msgstr "brettagaur" #. ๐Ÿƒ (U+1F3C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5334,7 +5153,7 @@ "RUNNER\n" "LngText.text" msgid "runner" -msgstr "" +msgstr "hlaupari" #. ๐Ÿ„ (U+1F3C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5343,7 +5162,7 @@ "SURFER\n" "LngText.text" msgid "surfer" -msgstr "" +msgstr "brimbrettagaur" #. ๐Ÿ† (U+1F3C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5352,7 +5171,7 @@ "TROPHY\n" "LngText.text" msgid "trophy" -msgstr "" +msgstr "verรฐlaun" #. ๐Ÿ‡ (U+1F3C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5361,7 +5180,7 @@ "HORSE_RACING\n" "LngText.text" msgid "horse racing" -msgstr "" +msgstr "kappreiรฐar" #. ๐Ÿˆ (U+1F3C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5370,7 +5189,7 @@ "AMERICAN_FOOTBALL\n" "LngText.text" msgid "football" -msgstr "" +msgstr "fรณtbolti" #. ๐Ÿ‰ (U+1F3C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5379,7 +5198,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "rรบgbรฝ" #. ๐ŸŠ (U+1F3CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5388,37 +5207,34 @@ "SWIMMER\n" "LngText.text" msgid "swimmer" -msgstr "" +msgstr "sundmaรฐur" #. ๐Ÿ  (U+1F3E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HOUSE_BUILDING\n" "LngText.text" msgid "house" -msgstr "Mรบs" +msgstr "hรบs" #. ๐Ÿก (U+1F3E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HOUSE_WITH_GARDEN\n" "LngText.text" msgid "house2" -msgstr "Mรบs" +msgstr "hรบs2" #. ๐Ÿข (U+1F3E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OFFICE_BUILDING\n" "LngText.text" msgid "office" -msgstr "Skrifstofa" +msgstr "skrifstofa" #. ๐Ÿฃ (U+1F3E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5427,7 +5243,7 @@ "JAPANESE_POST_OFFICE\n" "LngText.text" msgid "post office2" -msgstr "" +msgstr "pรณsthรบs2" #. ๐Ÿค (U+1F3E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5436,7 +5252,7 @@ "EUROPEAN_POST_OFFICE\n" "LngText.text" msgid "post office" -msgstr "" +msgstr "pรณsthรบs" #. ๐Ÿฅ (U+1F3E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5445,7 +5261,7 @@ "HOSPITAL\n" "LngText.text" msgid "hospital" -msgstr "" +msgstr "sjรบkrahรบs" #. ๐Ÿฆ (U+1F3E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5454,7 +5270,7 @@ "BANK\n" "LngText.text" msgid "bank" -msgstr "" +msgstr "banki" #. ๐Ÿง (U+1F3E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5463,7 +5279,7 @@ "AUTOMATED_TELLER_MACHINE\n" "LngText.text" msgid "atm" -msgstr "" +msgstr "hraรฐbanki" #. ๐Ÿจ (U+1F3E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5472,7 +5288,7 @@ "HOTEL\n" "LngText.text" msgid "hotel" -msgstr "" +msgstr "hรณtel" #. ๐Ÿฉ (U+1F3E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5481,7 +5297,7 @@ "LOVE_HOTEL\n" "LngText.text" msgid "hotel2" -msgstr "" +msgstr "hรณtel2" #. ๐Ÿช (U+1F3EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5490,7 +5306,7 @@ "CONVENIENCE_STORE\n" "LngText.text" msgid "store" -msgstr "" +msgstr "verslun" #. ๐Ÿซ (U+1F3EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5499,7 +5315,7 @@ "SCHOOL\n" "LngText.text" msgid "school" -msgstr "" +msgstr "skรณli" #. ๐Ÿฌ (U+1F3EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5508,7 +5324,7 @@ "DEPARTMENT_STORE\n" "LngText.text" msgid "store2" -msgstr "" +msgstr "verslun2" #. ๐Ÿญ (U+1F3ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5517,7 +5333,7 @@ "FACTORY\n" "LngText.text" msgid "factory" -msgstr "" +msgstr "verksmiรฐja" #. ๐Ÿฎ (U+1F3EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5526,7 +5342,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "ljรณsker" #. ๐Ÿฏ (U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5535,7 +5351,7 @@ "JAPANESE_CASTLE\n" "LngText.text" msgid "castle2" -msgstr "" +msgstr "kastali2" #. ๐Ÿฐ (U+1F3F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5544,7 +5360,7 @@ "EUROPEAN_CASTLE\n" "LngText.text" msgid "castle" -msgstr "" +msgstr "kastali" #. ๐Ÿ€ (U+1F400), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5553,17 +5369,16 @@ "RAT\n" "LngText.text" msgid "rat" -msgstr "" +msgstr "rotta" #. ๐Ÿ (U+1F401), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MOUSE\n" "LngText.text" msgid "mouse" -msgstr "Mรบs" +msgstr "mรบs" #. ๐Ÿ‚ (U+1F402), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5572,7 +5387,7 @@ "OX\n" "LngText.text" msgid "ox" -msgstr "" +msgstr "uxi" #. ๐Ÿƒ (U+1F403), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5581,7 +5396,7 @@ "WATER_BUFFALO\n" "LngText.text" msgid "water buffalo" -msgstr "" +msgstr "vatnabuffall" #. ๐Ÿ„ (U+1F404), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5590,7 +5405,7 @@ "COW\n" "LngText.text" msgid "cow" -msgstr "" +msgstr "kรฝr" #. ๐Ÿ… (U+1F405), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5599,7 +5414,7 @@ "TIGER\n" "LngText.text" msgid "tiger" -msgstr "" +msgstr "tรญgrisdรฝr" #. ๐Ÿ† (U+1F406), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5608,7 +5423,7 @@ "LEOPARD\n" "LngText.text" msgid "leopard" -msgstr "" +msgstr "hlรฉbarรฐi" #. ๐Ÿ‡ (U+1F407), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5617,7 +5432,7 @@ "RABBIT\n" "LngText.text" msgid "rabbit" -msgstr "" +msgstr "kanรญna" #. ๐Ÿˆ (U+1F408), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5626,7 +5441,7 @@ "CAT\n" "LngText.text" msgid "cat" -msgstr "" +msgstr "kรถttur" #. ๐Ÿ‰ (U+1F409), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5635,7 +5450,7 @@ "DRAGON\n" "LngText.text" msgid "dragon" -msgstr "" +msgstr "dreki" #. ๐ŸŠ (U+1F40A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5644,7 +5459,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "krรณkรณdรญll" #. ๐Ÿ‹ (U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5653,7 +5468,7 @@ "WHALE\n" "LngText.text" msgid "whale2" -msgstr "" +msgstr "hvalur2" #. ๐ŸŒ (U+1F40C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5662,7 +5477,7 @@ "SNAIL\n" "LngText.text" msgid "snail" -msgstr "" +msgstr "snigill" #. ๐Ÿ (U+1F40D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5671,7 +5486,7 @@ "SNAKE\n" "LngText.text" msgid "snake" -msgstr "" +msgstr "snรกkur" #. ๐ŸŽ (U+1F40E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5680,7 +5495,7 @@ "HORSE\n" "LngText.text" msgid "horse" -msgstr "" +msgstr "hestur" #. ๐Ÿ (U+1F40F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5689,7 +5504,7 @@ "RAM\n" "LngText.text" msgid "ram" -msgstr "" +msgstr "hrรบtur" #. ๐Ÿ (U+1F410), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5698,7 +5513,7 @@ "GOAT\n" "LngText.text" msgid "goat" -msgstr "" +msgstr "geit" #. ๐Ÿ‘ (U+1F411), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5707,7 +5522,7 @@ "SHEEP\n" "LngText.text" msgid "sheep" -msgstr "" +msgstr "kind" #. ๐Ÿ’ (U+1F412), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5716,7 +5531,7 @@ "MONKEY\n" "LngText.text" msgid "monkey" -msgstr "" +msgstr "api" #. ๐Ÿ“ (U+1F413), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5725,7 +5540,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "hani" #. ๐Ÿ” (U+1F414), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5734,7 +5549,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "kjรบklingur" #. ๐Ÿ• (U+1F415), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5743,7 +5558,7 @@ "DOG\n" "LngText.text" msgid "dog" -msgstr "" +msgstr "hundur" #. ๐Ÿ– (U+1F416), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5752,7 +5567,7 @@ "PIG\n" "LngText.text" msgid "pig" -msgstr "" +msgstr "svรญn" #. ๐Ÿ— (U+1F417), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5761,7 +5576,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "gรถltur" #. ๐Ÿ˜ (U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5770,7 +5585,7 @@ "ELEPHANT\n" "LngText.text" msgid "elephant" -msgstr "" +msgstr "fรญll" #. ๐Ÿ™ (U+1F419), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5779,17 +5594,16 @@ "OCTOPUS\n" "LngText.text" msgid "octopus" -msgstr "" +msgstr "kolkrabbi" #. ๐Ÿš (U+1F41A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SPIRAL_SHELL\n" "LngText.text" msgid "shell" -msgstr "Skel" +msgstr "skel" #. ๐Ÿ› (U+1F41B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5798,7 +5612,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "bjalla" #. ๐Ÿœ (U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5807,7 +5621,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "maur" #. ๐Ÿ (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5816,7 +5630,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "bรฝfluga" #. ๐Ÿž (U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5825,7 +5639,7 @@ "LADY_BEETLE\n" "LngText.text" msgid "ladybug" -msgstr "" +msgstr "marรญuhรฆna" #. ๐ŸŸ (U+1F41F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5834,7 +5648,7 @@ "FISH\n" "LngText.text" msgid "fish" -msgstr "" +msgstr "fiskur" #. ๐Ÿ  (U+1F420), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5843,7 +5657,7 @@ "TROPICAL_FISH\n" "LngText.text" msgid "fish2" -msgstr "" +msgstr "fiskur2" #. ๐Ÿก (U+1F421), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5852,7 +5666,7 @@ "BLOWFISH\n" "LngText.text" msgid "fish3" -msgstr "" +msgstr "fiskur3" #. ๐Ÿข (U+1F422), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5861,7 +5675,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "skjaldbaka" #. ๐Ÿฃ (U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5870,7 +5684,7 @@ "HATCHING_CHICK\n" "LngText.text" msgid "chick" -msgstr "" +msgstr "ungi" #. ๐Ÿค (U+1F424), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5879,7 +5693,7 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "ungi2" #. ๐Ÿฅ (U+1F425), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5888,7 +5702,7 @@ "FRONT-FACING_BABY_CHICK\n" "LngText.text" msgid "chick3" -msgstr "" +msgstr "ungi3" #. ๐Ÿฆ (U+1F426), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5897,7 +5711,7 @@ "BIRD\n" "LngText.text" msgid "bird" -msgstr "" +msgstr "fugl" #. ๐Ÿง (U+1F427), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5906,7 +5720,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "mรถrgรฆs" #. ๐Ÿจ (U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5915,7 +5729,7 @@ "KOALA\n" "LngText.text" msgid "koala" -msgstr "" +msgstr "kรณalabjรถrn" #. ๐Ÿฉ (U+1F429), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5924,7 +5738,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "" +msgstr "pรบรฐul" #. ๐Ÿช (U+1F42A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5933,7 +5747,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "kameldรฝr" #. ๐Ÿซ (U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5942,7 +5756,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "kameldรฝr2" #. ๐Ÿฌ (U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5951,17 +5765,16 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "hรถfrungur" #. ๐Ÿญ (U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MOUSE_FACE\n" "LngText.text" msgid "mouse2" -msgstr "Mรบs" +msgstr "mรบs2" #. ๐Ÿฎ (U+1F42E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5970,7 +5783,7 @@ "COW_FACE\n" "LngText.text" msgid "cow2" -msgstr "" +msgstr "kรฝr2" #. ๐Ÿฏ (U+1F42F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5979,7 +5792,7 @@ "TIGER_FACE\n" "LngText.text" msgid "tiger2" -msgstr "" +msgstr "tรญgrisdรฝr2" #. ๐Ÿฐ (U+1F430), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5988,7 +5801,7 @@ "RABBIT_FACE\n" "LngText.text" msgid "rabbit2" -msgstr "" +msgstr "kanรญna2" #. ๐Ÿฑ (U+1F431), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5997,7 +5810,7 @@ "CAT_FACE\n" "LngText.text" msgid "cat2" -msgstr "" +msgstr "kรถttur2" #. ๐Ÿฒ (U+1F432), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6006,7 +5819,7 @@ "DRAGON_FACE\n" "LngText.text" msgid "dragon2" -msgstr "" +msgstr "dreki2" #. ๐Ÿณ (U+1F433), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6015,7 +5828,7 @@ "SPOUTING_WHALE\n" "LngText.text" msgid "whale" -msgstr "" +msgstr "hvalur" #. ๐Ÿด (U+1F434), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6024,7 +5837,7 @@ "HORSE_FACE\n" "LngText.text" msgid "horse2" -msgstr "" +msgstr "hestur2" #. ๐Ÿต (U+1F435), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6033,7 +5846,7 @@ "MONKEY_FACE\n" "LngText.text" msgid "monkey2" -msgstr "" +msgstr "api2" #. ๐Ÿถ (U+1F436), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6042,7 +5855,7 @@ "DOG_FACE\n" "LngText.text" msgid "dog2" -msgstr "" +msgstr "hundur2" #. ๐Ÿท (U+1F437), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6051,7 +5864,7 @@ "PIG_FACE\n" "LngText.text" msgid "pig2" -msgstr "" +msgstr "svรญn2" #. ๐Ÿธ (U+1F438), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6060,7 +5873,7 @@ "FROG_FACE\n" "LngText.text" msgid "frog" -msgstr "" +msgstr "froskur" #. ๐Ÿน (U+1F439), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6069,7 +5882,7 @@ "HAMSTER_FACE\n" "LngText.text" msgid "hamster" -msgstr "" +msgstr "hamstur" #. ๐Ÿบ (U+1F43A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6078,7 +5891,7 @@ "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "รบlfur" #. ๐Ÿป (U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6087,7 +5900,7 @@ "BEAR_FACE\n" "LngText.text" msgid "bear" -msgstr "" +msgstr "bjรถrn" #. ๐Ÿผ (U+1F43C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6096,7 +5909,7 @@ "PANDA_FACE\n" "LngText.text" msgid "panda" -msgstr "" +msgstr "pandabjรถrn" #. ๐Ÿฝ (U+1F43D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6105,27 +5918,25 @@ "PIG_NOSE\n" "LngText.text" msgid "pig nose" -msgstr "" +msgstr "svรญnstrรฝni" #. ๐Ÿพ (U+1F43E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PAW_PRINTS\n" "LngText.text" msgid "feet" -msgstr "fet" +msgstr "fรฆtur" #. ๐Ÿ‘€ (U+1F440), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EYES\n" "LngText.text" msgid "eyes" -msgstr "jรก" +msgstr "augu" #. ๐Ÿ‘‚ (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6134,17 +5945,16 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "eyra" #. ๐Ÿ‘ƒ (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NOSE\n" "LngText.text" msgid "nose" -msgstr "Athugasemd" +msgstr "nef" #. ๐Ÿ‘„ (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6153,7 +5963,7 @@ "MOUTH\n" "LngText.text" msgid "mouth" -msgstr "" +msgstr "munnur" #. ๐Ÿ‘… (U+1F445), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6162,47 +5972,43 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "tunga" #. ๐Ÿ‘† (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "Upp" +msgstr "upp2" #. ๐Ÿ‘‡ (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "Niรฐur" +msgstr "niรฐur2" #. ๐Ÿ‘ˆ (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "Vinstri" +msgstr "vinstri2" #. ๐Ÿ‘‰ (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "Hรฆgri" +msgstr "hรฆgri2" #. ๐Ÿ‘Š (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6211,31 +6017,28 @@ "FISTED_HAND_SIGN\n" "LngText.text" msgid "fist2" -msgstr "" +msgstr "hnefi2" #. ๐Ÿ‘‹ (U+1F44B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WAVING_HAND_SIGN\n" "LngText.text" msgid "wave" -msgstr "Bylgja" +msgstr "alda" #. ๐Ÿ‘Œ (U+1F44C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "ร lagi" +msgstr "รญ lagi" #. ๐Ÿ‘ (U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "THUMBS_UP_SIGN\n" @@ -6245,7 +6048,6 @@ #. ๐Ÿ‘Ž (U+1F44E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "THUMBS_DOWN_SIGN\n" @@ -6260,7 +6062,7 @@ "CLAPPING_HANDS_SIGN\n" "LngText.text" msgid "clap" -msgstr "" +msgstr "klappa" #. ๐Ÿ‘ (U+1F450), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6269,7 +6071,7 @@ "OPEN_HANDS_SIGN\n" "LngText.text" msgid "open hands" -msgstr "" +msgstr "opnar hendur" #. ๐Ÿ‘‘ (U+1F451), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6278,7 +6080,7 @@ "CROWN\n" "LngText.text" msgid "crown" -msgstr "" +msgstr "kรณrรณna" #. ๐Ÿ‘’ (U+1F452), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6287,7 +6089,7 @@ "WOMANS_HAT\n" "LngText.text" msgid "hat" -msgstr "" +msgstr "hattur" #. ๐Ÿ‘“ (U+1F453), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6296,7 +6098,7 @@ "EYEGLASSES\n" "LngText.text" msgid "eyeglasses" -msgstr "" +msgstr "gleraugu" #. ๐Ÿ‘” (U+1F454), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6305,7 +6107,7 @@ "NECKTIE\n" "LngText.text" msgid "necktie" -msgstr "" +msgstr "hรกlsbindi" #. ๐Ÿ‘• (U+1F455), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6314,7 +6116,7 @@ "T-SHIRT\n" "LngText.text" msgid "shirt" -msgstr "" +msgstr "skyrta" #. ๐Ÿ‘– (U+1F456), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6323,7 +6125,7 @@ "JEANS\n" "LngText.text" msgid "jeans" -msgstr "" +msgstr "gallabuxur" #. ๐Ÿ‘— (U+1F457), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6332,7 +6134,7 @@ "DRESS\n" "LngText.text" msgid "dress" -msgstr "" +msgstr "kjรณll" #. ๐Ÿ‘˜ (U+1F458), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6341,7 +6143,7 @@ "KIMONO\n" "LngText.text" msgid "kimono" -msgstr "" +msgstr "kรญmรณnรณ" #. ๐Ÿ‘™ (U+1F459), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6350,7 +6152,7 @@ "BIKINI\n" "LngText.text" msgid "bikini" -msgstr "" +msgstr "bรญkรญnรญ" #. ๐Ÿ‘š (U+1F45A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6359,7 +6161,7 @@ "WOMANS_CLOTHES\n" "LngText.text" msgid "clothes" -msgstr "" +msgstr "fatnaรฐur" #. ๐Ÿ‘› (U+1F45B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6368,7 +6170,7 @@ "PURSE\n" "LngText.text" msgid "purse" -msgstr "" +msgstr "budda" #. ๐Ÿ‘œ (U+1F45C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6377,7 +6179,7 @@ "HANDBAG\n" "LngText.text" msgid "handbag" -msgstr "" +msgstr "handtaska" #. ๐Ÿ‘ (U+1F45D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6386,7 +6188,7 @@ "POUCH\n" "LngText.text" msgid "pouch" -msgstr "" +msgstr "pyngja" #. ๐Ÿ‘ž (U+1F45E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6395,7 +6197,7 @@ "MANS_SHOE\n" "LngText.text" msgid "shoe" -msgstr "" +msgstr "skรณr" #. ๐Ÿ‘Ÿ (U+1F45F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6404,7 +6206,7 @@ "ATHLETIC_SHOE\n" "LngText.text" msgid "shoe2" -msgstr "" +msgstr "skรณr2" #. ๐Ÿ‘  (U+1F460), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6413,7 +6215,7 @@ "HIGH-HEELED_SHOE\n" "LngText.text" msgid "shoe3" -msgstr "" +msgstr "skรณr3" #. ๐Ÿ‘ก (U+1F461), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6422,17 +6224,16 @@ "WOMANS_SANDAL\n" "LngText.text" msgid "sandal" -msgstr "" +msgstr "sandalar" #. ๐Ÿ‘ข (U+1F462), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WOMANS_BOOTS\n" "LngText.text" msgid "boot" -msgstr "Bรณk" +msgstr "stรญgvรฉl" #. ๐Ÿ‘ฃ (U+1F463), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6441,7 +6242,7 @@ "FOOTPRINTS\n" "LngText.text" msgid "footprints" -msgstr "" +msgstr "fรณtafรถr" #. ๐Ÿ‘ค (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6450,7 +6251,7 @@ "BUST_IN_SILHOUETTE\n" "LngText.text" msgid "bust" -msgstr "" +msgstr "brjรณstmynd" #. ๐Ÿ‘ฅ (U+1F465), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6459,7 +6260,7 @@ "BUSTS_IN_SILHOUETTE\n" "LngText.text" msgid "busts" -msgstr "" +msgstr "brjรณstmyndir" #. ๐Ÿ‘ฆ (U+1F466), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6468,7 +6269,7 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "drengur" #. ๐Ÿ‘ง (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6477,7 +6278,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "stรบlka" #. ๐Ÿ‘จ (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6486,7 +6287,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "maรฐur" #. ๐Ÿ‘ฉ (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6495,17 +6296,16 @@ "WOMAN\n" "LngText.text" msgid "woman" -msgstr "" +msgstr "kona" #. ๐Ÿ‘ช (U+1F46A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FAMILY\n" "LngText.text" msgid "family" -msgstr "Leturgerรฐ:" +msgstr "fjรถlskylda" #. ๐Ÿ‘ซ (U+1F46B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6514,7 +6314,7 @@ "MAN_AND_WOMAN_HOLDING_HANDS\n" "LngText.text" msgid "couple" -msgstr "" +msgstr "par" #. ๐Ÿ‘ฌ (U+1F46C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6523,7 +6323,7 @@ "TWO_MEN_HOLDING_HANDS\n" "LngText.text" msgid "couple2" -msgstr "" +msgstr "par2" #. ๐Ÿ‘ญ (U+1F46D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6532,7 +6332,7 @@ "TWO_WOMEN_HOLDING_HANDS\n" "LngText.text" msgid "couple3" -msgstr "" +msgstr "par3" #. ๐Ÿ‘ฎ (U+1F46E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6541,7 +6341,7 @@ "POLICE_OFFICER\n" "LngText.text" msgid "cop" -msgstr "" +msgstr "lรถgga" #. ๐Ÿ‘ฏ (U+1F46F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6550,7 +6350,7 @@ "WOMAN_WITH_BUNNY_EARS\n" "LngText.text" msgid "bunny ears" -msgstr "" +msgstr "kanรญnueyru" #. ๐Ÿ‘ฐ (U+1F470), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6559,7 +6359,7 @@ "BRIDE_WITH_VEIL\n" "LngText.text" msgid "bride" -msgstr "" +msgstr "brรบรฐur" #. ๐Ÿ‘ฑ (U+1F471), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6568,7 +6368,7 @@ "PERSON_WITH_BLOND_HAIR\n" "LngText.text" msgid "blond hair" -msgstr "" +msgstr "ljรณst hรกr" #. ๐Ÿ‘ฒ (U+1F472), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6577,7 +6377,7 @@ "MAN_WITH_GUA_PI_MAO\n" "LngText.text" msgid "hat2" -msgstr "" +msgstr "hattur2" #. ๐Ÿ‘ณ (U+1F473), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6586,7 +6386,7 @@ "MAN_WITH_TURBAN\n" "LngText.text" msgid "turban" -msgstr "" +msgstr "tรบrban" #. ๐Ÿ‘ด (U+1F474), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6595,7 +6395,7 @@ "OLDER_MAN\n" "LngText.text" msgid "older man" -msgstr "" +msgstr "eldri maรฐur" #. ๐Ÿ‘ต (U+1F475), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6604,7 +6404,7 @@ "OLDER_WOMAN\n" "LngText.text" msgid "older woman" -msgstr "" +msgstr "eldri kona" #. ๐Ÿ‘ถ (U+1F476), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6613,7 +6413,7 @@ "BABY\n" "LngText.text" msgid "baby" -msgstr "" +msgstr "smรกbarn" #. ๐Ÿ‘ท (U+1F477), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6622,7 +6422,7 @@ "CONSTRUCTION_WORKER\n" "LngText.text" msgid "worker" -msgstr "" +msgstr "verkamaรฐur" #. ๐Ÿ‘ธ (U+1F478), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6631,7 +6431,7 @@ "PRINCESS\n" "LngText.text" msgid "princess" -msgstr "" +msgstr "prinsessa" #. ๐Ÿ‘น (U+1F479), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6658,7 +6458,7 @@ "GHOST\n" "LngText.text" msgid "ghost" -msgstr "" +msgstr "vofa" #. ๐Ÿ‘ผ (U+1F47C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6667,7 +6467,7 @@ "BABY_ANGEL\n" "LngText.text" msgid "angel" -msgstr "" +msgstr "engill" #. ๐Ÿ‘ฝ (U+1F47D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6676,7 +6476,7 @@ "EXTRATERRESTRIAL_ALIEN\n" "LngText.text" msgid "alien" -msgstr "" +msgstr "geimvera" #. ๐Ÿ‘พ (U+1F47E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6685,7 +6485,7 @@ "ALIEN_MONSTER\n" "LngText.text" msgid "alien2" -msgstr "" +msgstr "geimvera2" #. ๐Ÿ‘ฟ (U+1F47F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6694,7 +6494,7 @@ "IMP\n" "LngText.text" msgid "imp" -msgstr "" +msgstr "reiรฐipรบki" #. ๐Ÿ’€ (U+1F480), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6703,17 +6503,16 @@ "SKULL\n" "LngText.text" msgid "skull" -msgstr "" +msgstr "hauskรบpa" #. ๐Ÿ’ (U+1F481), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "Upplรฝsingar" +msgstr "upplรฝsingar2" #. ๐Ÿ’‚ (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6722,7 +6521,7 @@ "GUARDSMAN\n" "LngText.text" msgid "guard" -msgstr "" +msgstr "vรถrรฐur" #. ๐Ÿ’ƒ (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6731,7 +6530,7 @@ "DANCER\n" "LngText.text" msgid "dancer" -msgstr "" +msgstr "dansari" #. ๐Ÿ’„ (U+1F484), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6740,7 +6539,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "varalitur" #. ๐Ÿ’… (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6749,7 +6548,7 @@ "NAIL_POLISH\n" "LngText.text" msgid "nail care" -msgstr "" +msgstr "naglahirรฐa" #. ๐Ÿ’† (U+1F486), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6758,7 +6557,7 @@ "FACE_MASSAGE\n" "LngText.text" msgid "massage" -msgstr "" +msgstr "nudd" #. ๐Ÿ’‡ (U+1F487), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6767,7 +6566,7 @@ "HAIRCUT\n" "LngText.text" msgid "haircut" -msgstr "" +msgstr "hรกrskurรฐur" #. ๐Ÿ’ˆ (U+1F488), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6776,7 +6575,7 @@ "BARBER_POLE\n" "LngText.text" msgid "barber" -msgstr "" +msgstr "rakari" #. ๐Ÿ’‰ (U+1F489), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6785,7 +6584,7 @@ "SYRINGE\n" "LngText.text" msgid "syringe" -msgstr "" +msgstr "sprauta" #. ๐Ÿ’Š (U+1F48A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6794,7 +6593,7 @@ "PILL\n" "LngText.text" msgid "pill" -msgstr "" +msgstr "pilla" #. ๐Ÿ’‹ (U+1F48B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6803,7 +6602,7 @@ "KISS_MARK\n" "LngText.text" msgid "kiss mark" -msgstr "" +msgstr "kossafar" #. ๐Ÿ’Œ (U+1F48C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6812,17 +6611,16 @@ "LOVE_LETTER\n" "LngText.text" msgid "love letter" -msgstr "" +msgstr "รกstarbrรฉf" #. ๐Ÿ’ (U+1F48D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RING\n" "LngText.text" msgid "ring" -msgstr "Hringur" +msgstr "hringur" #. ๐Ÿ’Ž (U+1F48E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6831,7 +6629,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "gimsteinn" #. ๐Ÿ’ (U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6840,7 +6638,7 @@ "KISS\n" "LngText.text" msgid "kiss" -msgstr "" +msgstr "koss" #. ๐Ÿ’ (U+1F490), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6849,7 +6647,7 @@ "BOUQUET\n" "LngText.text" msgid "bouquet" -msgstr "" +msgstr "blรณmvรถndur" #. ๐Ÿ’‘ (U+1F491), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6858,7 +6656,7 @@ "COUPLE_WITH_HEART\n" "LngText.text" msgid "couple4" -msgstr "" +msgstr "par4" #. ๐Ÿ’’ (U+1F492), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6867,17 +6665,16 @@ "WEDDING\n" "LngText.text" msgid "wedding" -msgstr "" +msgstr "brรบรฐkaup" #. ๐Ÿ’“ (U+1F493), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BEATING_HEART\n" "LngText.text" msgid "heartbeat" -msgstr "Hjartslรกttarriti" +msgstr "hjartslรกttur" #. ๐Ÿ’” (U+1F494), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6886,7 +6683,7 @@ "BROKEN_HEART\n" "LngText.text" msgid "broken heart" -msgstr "" +msgstr "brostiรฐ hjarta" #. ๐Ÿ’• (U+1F495), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6895,7 +6692,7 @@ "TWO_HEARTS\n" "LngText.text" msgid "two hearts" -msgstr "" +msgstr "tvรถ hjรถrtu" #. ๐Ÿ’– (U+1F496), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6904,7 +6701,7 @@ "SPARKLING_HEART\n" "LngText.text" msgid "sparkling heart" -msgstr "" +msgstr "neistandi hjarta" #. ๐Ÿ’— (U+1F497), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6913,17 +6710,16 @@ "GROWING_HEART\n" "LngText.text" msgid "heartpulse" -msgstr "" +msgstr "hjartslรกttur" #. ๐Ÿ’˜ (U+1F498), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HEART_WITH_ARROW\n" "LngText.text" msgid "love" -msgstr "รstarkveรฐjur" +msgstr "รกst" #. ๐Ÿ’ (U+1F49D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6932,7 +6728,7 @@ "HEART_WITH_RIBBON\n" "LngText.text" msgid "gift heart" -msgstr "" +msgstr "hjartagjรถf" #. ๐Ÿ’ž (U+1F49E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6941,7 +6737,7 @@ "REVOLVING_HEARTS\n" "LngText.text" msgid "revolving hearts" -msgstr "" +msgstr "hringsnรบandi hjรถrtu" #. ๐Ÿ’Ÿ (U+1F49F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6950,7 +6746,7 @@ "HEART_DECORATION\n" "LngText.text" msgid "heart decoration" -msgstr "" +msgstr "hjartaskraut" #. ๐Ÿ’  (U+1F4A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6959,7 +6755,7 @@ "DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n" "LngText.text" msgid "cuteness" -msgstr "" +msgstr "sรฆtt" #. ๐Ÿ’ก (U+1F4A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6968,7 +6764,7 @@ "ELECTRIC_LIGHT_BULB\n" "LngText.text" msgid "bulb" -msgstr "" +msgstr "pera" #. ๐Ÿ’ข (U+1F4A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6977,7 +6773,7 @@ "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "reiรฐi" #. ๐Ÿ’ฃ (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6986,7 +6782,7 @@ "BOMB\n" "LngText.text" msgid "bomb" -msgstr "" +msgstr "sprengja" #. ๐Ÿ’ค (U+1F4A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6995,17 +6791,16 @@ "SLEEPING_SYMBOL\n" "LngText.text" msgid "zzz" -msgstr "" +msgstr "zzz" #. ๐Ÿ’ฅ (U+1F4A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "Bรณk" +msgstr "sprenging" #. ๐Ÿ’ฆ (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7014,7 +6809,7 @@ "SPLASHING_SWEAT_SYMBOL\n" "LngText.text" msgid "sweat drops" -msgstr "" +msgstr "svitaperlur" #. ๐Ÿ’ง (U+1F4A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7023,17 +6818,16 @@ "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "" +msgstr "dropi" #. ๐Ÿ’จ (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DASH_SYMBOL\n" "LngText.text" msgid "dash" -msgstr "Strik" +msgstr "strik" #. ๐Ÿ’ฉ (U+1F4A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7042,7 +6836,7 @@ "PILE_OF_POO\n" "LngText.text" msgid "poo" -msgstr "" +msgstr "skรญtur" #. ๐Ÿ’ช (U+1F4AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7051,7 +6845,7 @@ "FLEXED_BICEPS\n" "LngText.text" msgid "muscle" -msgstr "" +msgstr "vรถรฐvi" #. ๐Ÿ’ซ (U+1F4AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7060,7 +6854,7 @@ "DIZZY_SYMBOL\n" "LngText.text" msgid "dizzy" -msgstr "" +msgstr "dofinn" #. ๐Ÿ’ฌ (U+1F4AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7069,7 +6863,7 @@ "SPEECH_BALLOON\n" "LngText.text" msgid "speech balloon" -msgstr "" +msgstr "talblaรฐra" #. ๐Ÿ’ญ (U+1F4AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7078,7 +6872,7 @@ "THOUGHT_BALLOON\n" "LngText.text" msgid "thought balloon" -msgstr "" +msgstr "hugsanablaรฐra" #. ๐Ÿ’ฎ (U+1F4AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7087,7 +6881,7 @@ "WHITE_FLOWER\n" "LngText.text" msgid "white flower" -msgstr "" +msgstr "hvรญtt blรณm" #. ๐Ÿ’ฏ (U+1F4AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7096,7 +6890,7 @@ "HUNDRED_POINTS_SYMBOL\n" "LngText.text" msgid "100" -msgstr "" +msgstr "100" #. ๐Ÿ’ฐ (U+1F4B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7105,7 +6899,7 @@ "MONEY_BAG\n" "LngText.text" msgid "moneybag" -msgstr "" +msgstr "peningapoki" #. ๐Ÿ’ฑ (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7114,7 +6908,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "currency exchange" -msgstr "" +msgstr "gjaldmiรฐlagengi" #. ๐Ÿ’ฒ (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7123,7 +6917,7 @@ "HEAVY_DOLLAR_SIGN\n" "LngText.text" msgid "heavy dollar sign" -msgstr "" +msgstr "รพungt dollaratรกkn" #. ๐Ÿ’ณ (U+1F4B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7132,7 +6926,7 @@ "CREDIT_CARD\n" "LngText.text" msgid "credit card" -msgstr "" +msgstr "kreditkort" #. ๐Ÿ’ด (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7141,17 +6935,16 @@ "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "yen2" #. ๐Ÿ’ต (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BANKNOTE_WITH_DOLLAR_SIGN\n" "LngText.text" msgid "dollar2" -msgstr "DOLLAR" +msgstr "dollari2" #. ๐Ÿ’ถ (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7160,7 +6953,7 @@ "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "evra2" #. ๐Ÿ’ท (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7169,7 +6962,7 @@ "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "pund2" #. ๐Ÿ’ธ (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7178,11 +6971,10 @@ "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "peningar" #. ๐Ÿ’น (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n" @@ -7197,7 +6989,7 @@ "SEAT\n" "LngText.text" msgid "seat" -msgstr "" +msgstr "sรฆti" #. ๐Ÿ’ป (U+1F4BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7206,7 +6998,7 @@ "PERSONAL_COMPUTER\n" "LngText.text" msgid "computer" -msgstr "" +msgstr "tรถlva" #. ๐Ÿ’ผ (U+1F4BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7215,7 +7007,7 @@ "BRIEFCASE\n" "LngText.text" msgid "briefcase" -msgstr "" +msgstr "skjalataska" #. ๐Ÿ’ฝ (U+1F4BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7224,7 +7016,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "mรญnรญdiskur" #. ๐Ÿ’พ (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7233,7 +7025,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "disklingur" #. ๐Ÿ’ฟ (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7242,7 +7034,7 @@ "OPTICAL_DISC\n" "LngText.text" msgid "cd" -msgstr "" +msgstr "cd" #. ๐Ÿ“€ (U+1F4C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7251,27 +7043,25 @@ "DVD\n" "LngText.text" msgid "dvd" -msgstr "" +msgstr "dvd" #. ๐Ÿ“ (U+1F4C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FILE_FOLDER\n" "LngText.text" msgid "folder" -msgstr "Mappa" +msgstr "mappa" #. ๐Ÿ“‚ (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OPEN_FILE_FOLDER\n" "LngText.text" msgid "folder2" -msgstr "Mappa" +msgstr "mappa2" #. ๐Ÿ“ƒ (U+1F4C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7280,7 +7070,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page with curl" -msgstr "" +msgstr "hornbrotin blaรฐsรญรฐa" #. ๐Ÿ“„ (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7289,27 +7079,25 @@ "PAGE_FACING_UP\n" "LngText.text" msgid "page facing up" -msgstr "" +msgstr "sรญรฐa upp" #. ๐Ÿ“… (U+1F4C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CALENDAR\n" "LngText.text" msgid "calendar" -msgstr "Dagatal" +msgstr "dagatal" #. ๐Ÿ“† (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TEAR-OFF_CALENDAR\n" "LngText.text" msgid "calendar2" -msgstr "Dagatal" +msgstr "dagatal2" #. ๐Ÿ“‡ (U+1F4C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7318,47 +7106,43 @@ "CARD_INDEX\n" "LngText.text" msgid "card index" -msgstr "" +msgstr "spjaldskrรก" #. ๐Ÿ“ˆ (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "Staf" +msgstr "staf" #. ๐Ÿ“‰ (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "Lรญnurit" +msgstr "lรญnurit2" #. ๐Ÿ“Š (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "Lรญnurit" +msgstr "lรญnurit3" #. ๐Ÿ“‹ (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLIPBOARD\n" "LngText.text" msgid "clipboard" -msgstr "klemmuspjald" +msgstr "klippispjald" #. ๐Ÿ“Œ (U+1F4CC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7367,7 +7151,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "teiknibรณla" #. ๐Ÿ“ (U+1F4CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7376,7 +7160,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "tรญtuprjรณnn" #. ๐Ÿ“Ž (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7385,37 +7169,34 @@ "PAPERCLIP\n" "LngText.text" msgid "paperclip" -msgstr "" +msgstr "brรฉfaklemma" #. ๐Ÿ“ (U+1F4CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "STRAIGHT_RULER\n" "LngText.text" msgid "ruler" -msgstr "~Reglustika" +msgstr "reglustika" #. ๐Ÿ“ (U+1F4D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TRIANGULAR_RULER\n" "LngText.text" msgid "ruler2" -msgstr "~Reglustika" +msgstr "reglustika2" #. ๐Ÿ“‘ (U+1F4D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "Bรณkamerki" +msgstr "bรณkamerki" #. ๐Ÿ“’ (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7424,7 +7205,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "hรถfuรฐbรณk" #. ๐Ÿ““ (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7433,7 +7214,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "minnisbรณk" #. ๐Ÿ“” (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7442,47 +7223,43 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "minnisbรณk2" #. ๐Ÿ“• (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOSED_BOOK\n" "LngText.text" msgid "book" -msgstr "Bรณk" +msgstr "bรณk" #. ๐Ÿ“– (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "OPEN_BOOK\n" "LngText.text" msgid "book2" -msgstr "Bรณk" +msgstr "bรณk2" #. ๐Ÿ“š (U+1F4DA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKS\n" "LngText.text" msgid "books" -msgstr "Bรณk" +msgstr "bรฆkur" #. ๐Ÿ“› (U+1F4DB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "NAME_BADGE\n" "LngText.text" msgid "name" -msgstr "Nafn" +msgstr "nafn" #. ๐Ÿ“œ (U+1F4DC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7491,7 +7268,7 @@ "SCROLL\n" "LngText.text" msgid "scroll" -msgstr "" +msgstr "skrun" #. ๐Ÿ“ (U+1F4DD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7500,7 +7277,7 @@ "MEMO\n" "LngText.text" msgid "memo" -msgstr "" +msgstr "minnismiรฐi" #. ๐Ÿ“ž (U+1F4DE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7509,27 +7286,25 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "mรณttakandi" #. ๐Ÿ“Ÿ (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "PAGER\n" "LngText.text" msgid "pager" -msgstr "Sรญmboรฐi" +msgstr "sรญmboรฐi" #. ๐Ÿ“  (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FAX_MACHINE\n" "LngText.text" msgid "fax" -msgstr "FAX" +msgstr "fax" #. ๐Ÿ“ก (U+1F4E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7538,7 +7313,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "gervihnรถttur" #. ๐Ÿ“ข (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7547,17 +7322,16 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "hรกtalari" #. ๐Ÿ“ฃ (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "omega" +msgstr "gjallarhorn" #. ๐Ÿ“ค (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7566,7 +7340,7 @@ "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "" +msgstr "bakki" #. ๐Ÿ“ฅ (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7575,7 +7349,7 @@ "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "bakki2" #. ๐Ÿ“ฆ (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7584,11 +7358,10 @@ "PACKAGE\n" "LngText.text" msgid "package" -msgstr "" +msgstr "pakki" #. ๐Ÿ“ง (U+1F4E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "E-MAIL_SYMBOL\n" @@ -7598,23 +7371,21 @@ #. ๐Ÿ“จ (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "Umslag" +msgstr "umslag2" #. ๐Ÿ“ฉ (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope3" -msgstr "Umslag" +msgstr "umslag3" #. ๐Ÿ“ช (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7623,7 +7394,7 @@ "CLOSED_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox" -msgstr "" +msgstr "pรณsthรณlf" #. ๐Ÿ“ซ (U+1F4EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7632,7 +7403,7 @@ "CLOSED_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox2" -msgstr "" +msgstr "pรณsthรณlf2" #. ๐Ÿ“ฌ (U+1F4EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7641,7 +7412,7 @@ "OPEN_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox3" -msgstr "" +msgstr "pรณsthรณlf3" #. ๐Ÿ“ญ (U+1F4ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7650,7 +7421,7 @@ "OPEN_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox4" -msgstr "" +msgstr "pรณsthรณlf4" #. ๐Ÿ“ฎ (U+1F4EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7659,7 +7430,7 @@ "POSTBOX\n" "LngText.text" msgid "postbox" -msgstr "" +msgstr "pรณstkassi" #. ๐Ÿ“ฏ (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7668,7 +7439,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "horn" #. ๐Ÿ“ฐ (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7677,17 +7448,16 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "dagblaรฐ" #. ๐Ÿ“ฑ (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "Farsรญmi" +msgstr "farsรญmi" #. ๐Ÿ“ฒ (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7696,7 +7466,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "hringing" #. ๐Ÿ“ณ (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7705,7 +7475,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "titringshamur" #. ๐Ÿ“ด (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7714,7 +7484,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "slรถkkt รก farsรญma" #. ๐Ÿ“ต (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7723,7 +7493,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "engir farsรญmar" #. ๐Ÿ“ถ (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7732,17 +7502,16 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "styrkur merkis" #. ๐Ÿ“ท (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CAMERA\n" "LngText.text" msgid "camera" -msgstr "Myndavรฉl" +msgstr "myndavรฉl" #. ๐Ÿ“น (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7751,7 +7520,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "vรญdeรณmyndavรฉl" #. ๐Ÿ“บ (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7760,7 +7529,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "sjรณnvarp" #. ๐Ÿ“ป (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7769,7 +7538,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "รบtvarp" #. ๐Ÿ“ผ (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7778,37 +7547,34 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. ๐Ÿ”… (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LOW_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness" -msgstr "Birtustig" +msgstr "birtustig" #. ๐Ÿ”† (U+1F506), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "Birtustig" +msgstr "birtustig2" #. ๐Ÿ”‡ (U+1F507), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SPEAKER_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "mute" -msgstr "Hljรณรฐdeyfa" +msgstr "รพagga" #. ๐Ÿ”ˆ (U+1F508), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7817,17 +7583,16 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "hรกtalari" #. ๐Ÿ”‰ (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "_Hljรณรฐ:" +msgstr "hljรณรฐ" #. ๐Ÿ”Š (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7836,7 +7601,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "hรกtt hljรณรฐ" #. ๐Ÿ”‹ (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7845,7 +7610,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "rafhlaรฐa" #. ๐Ÿ”Œ (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7854,7 +7619,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "tengi" #. ๐Ÿ” (U+1F50D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7863,7 +7628,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "stรฆkkunargler" #. ๐Ÿ”Ž (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7872,7 +7637,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "stรฆkkunargler2" #. ๐Ÿ” (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7881,7 +7646,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "lรกs2" #. ๐Ÿ” (U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7890,17 +7655,16 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "lรกs3" #. ๐Ÿ”‘ (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "KEY\n" "LngText.text" msgid "key" -msgstr "Svertulykill (_K):" +msgstr "lykill" #. ๐Ÿ”’ (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7909,7 +7673,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "lรฆsa" #. ๐Ÿ”“ (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7918,7 +7682,7 @@ "OPEN_LOCK\n" "LngText.text" msgid "unlock" -msgstr "" +msgstr "aflรฆsa" #. ๐Ÿ”” (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7927,7 +7691,7 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "bjalla" #. ๐Ÿ”• (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7936,37 +7700,34 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "engin bjalla" #. ๐Ÿ”– (U+1F516), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "Bรณkamerki" +msgstr "bรณkamerki2" #. ๐Ÿ”— (U+1F517), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "Tengill" +msgstr "tengill" #. ๐Ÿ”˜ (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RADIO_BUTTON\n" "LngText.text" msgid "radio button" -msgstr "Einvals~reitur" +msgstr "einvalsreitur" #. ๐Ÿ”ž (U+1F51E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7975,7 +7736,7 @@ "NO_ONE_UNDER_EIGHTEEN_SYMBOL\n" "LngText.text" msgid "underage" -msgstr "" +msgstr "undir aldursmรถrkum" #. ๐Ÿ”ค (U+1F524), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7993,7 +7754,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "eldur" #. ๐Ÿ”ฆ (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8002,7 +7763,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "vasaljรณs" #. ๐Ÿ”ง (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8011,7 +7772,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "skrรบflykill" #. ๐Ÿ”จ (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8020,7 +7781,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "hamar" #. ๐Ÿ”ฉ (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8029,7 +7790,7 @@ "NUT_AND_BOLT\n" "LngText.text" msgid "nut and bolt" -msgstr "" +msgstr "bolti og rรณ" #. ๐Ÿ”ช (U+1F52A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8038,7 +7799,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "hnรญfur" #. ๐Ÿ”ซ (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8047,7 +7808,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "skammbyssa" #. ๐Ÿ”ฌ (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8056,7 +7817,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "smรกsjรก" #. ๐Ÿ”ญ (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8065,7 +7826,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "sjรณnauki" #. ๐Ÿ”ฎ (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8074,7 +7835,7 @@ "CRYSTAL_BALL\n" "LngText.text" msgid "crystal ball" -msgstr "" +msgstr "krystalskรบla" #. ๐Ÿ”ฐ (U+1F530), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8083,7 +7844,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "byrjandi" #. ๐Ÿ”ฑ (U+1F531), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8092,21 +7853,19 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "forkur" #. ๐Ÿ”ฒ (U+1F532), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "Hnappur" +msgstr "hnappur2" #. ๐Ÿ”ณ (U+1F533), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SQUARE_BUTTON\n" @@ -8121,7 +7880,7 @@ "CLOCK_FACE_ONE_OCLOCK\n" "LngText.text" msgid "1" -msgstr "" +msgstr "1" #. ๐Ÿ•‘ (U+1F551), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8130,7 +7889,7 @@ "CLOCK_FACE_TWO_OCLOCK\n" "LngText.text" msgid "2" -msgstr "" +msgstr "2" #. ๐Ÿ•’ (U+1F552), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8139,7 +7898,7 @@ "CLOCK_FACE_THREE_OCLOCK\n" "LngText.text" msgid "3" -msgstr "" +msgstr "3" #. ๐Ÿ•“ (U+1F553), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8148,7 +7907,7 @@ "CLOCK_FACE_FOUR_OCLOCK\n" "LngText.text" msgid "4" -msgstr "" +msgstr "4" #. ๐Ÿ•” (U+1F554), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8157,7 +7916,7 @@ "CLOCK_FACE_FIVE_OCLOCK\n" "LngText.text" msgid "5" -msgstr "" +msgstr "5" #. ๐Ÿ•• (U+1F555), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8166,7 +7925,7 @@ "CLOCK_FACE_SIX_OCLOCK\n" "LngText.text" msgid "6" -msgstr "" +msgstr "6" #. ๐Ÿ•– (U+1F556), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8175,7 +7934,7 @@ "CLOCK_FACE_SEVEN_OCLOCK\n" "LngText.text" msgid "7" -msgstr "" +msgstr "7" #. ๐Ÿ•— (U+1F557), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8184,7 +7943,7 @@ "CLOCK_FACE_EIGHT_OCLOCK\n" "LngText.text" msgid "8" -msgstr "" +msgstr "8" #. ๐Ÿ•˜ (U+1F558), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8193,7 +7952,7 @@ "CLOCK_FACE_NINE_OCLOCK\n" "LngText.text" msgid "9" -msgstr "" +msgstr "9" #. ๐Ÿ•™ (U+1F559), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8202,7 +7961,7 @@ "CLOCK_FACE_TEN_OCLOCK\n" "LngText.text" msgid "10" -msgstr "" +msgstr "10" #. ๐Ÿ•š (U+1F55A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8211,7 +7970,7 @@ "CLOCK_FACE_ELEVEN_OCLOCK\n" "LngText.text" msgid "11" -msgstr "" +msgstr "11" #. ๐Ÿ•› (U+1F55B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8220,7 +7979,7 @@ "CLOCK_FACE_TWELVE_OCLOCK\n" "LngText.text" msgid "12" -msgstr "" +msgstr "12" #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8229,7 +7988,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "" +msgstr "1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8238,7 +7997,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "" +msgstr "2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8247,7 +8006,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "" +msgstr "3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8256,7 +8015,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "" +msgstr "4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8265,7 +8024,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "" +msgstr "5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8274,7 +8033,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "" +msgstr "6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8283,7 +8042,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "" +msgstr "7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8292,7 +8051,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "" +msgstr "8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8301,7 +8060,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "" +msgstr "9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8310,7 +8069,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "" +msgstr "10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8319,7 +8078,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "" +msgstr "11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8328,7 +8087,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "" +msgstr "12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8337,7 +8096,7 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "Fuji" #. ๐Ÿ—ผ (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8346,7 +8105,7 @@ "TOKYO_TOWER\n" "LngText.text" msgid "tower" -msgstr "" +msgstr "turn" #. ๐Ÿ—ฝ (U+1F5FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8355,7 +8114,7 @@ "STATUE_OF_LIBERTY\n" "LngText.text" msgid "liberty" -msgstr "" +msgstr "frelsi" #. ๐Ÿ—พ (U+1F5FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8364,7 +8123,7 @@ "SILHOUETTE_OF_JAPAN\n" "LngText.text" msgid "Japan" -msgstr "" +msgstr "Japan" #. ๐Ÿ—ฟ (U+1F5FF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8373,7 +8132,7 @@ "MOYAI\n" "LngText.text" msgid "statue" -msgstr "" +msgstr "stytta" #. ๐Ÿ˜€ (U+1F600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8382,7 +8141,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "glottandi" #. ๐Ÿ˜ (U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8391,7 +8150,7 @@ "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "" +msgstr "glott" #. ๐Ÿ˜‚ (U+1F602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8400,7 +8159,7 @@ "FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy" -msgstr "" +msgstr "gleรฐi" #. ๐Ÿ˜ƒ (U+1F603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8409,7 +8168,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley" -msgstr "" +msgstr "broskall" #. ๐Ÿ˜„ (U+1F604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8418,7 +8177,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n" "LngText.text" msgid "smile" -msgstr "" +msgstr "bros" #. ๐Ÿ˜… (U+1F605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8427,7 +8186,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "sweat smile" -msgstr "" +msgstr "brosviprur" #. ๐Ÿ˜† (U+1F606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8436,7 +8195,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "laughing" -msgstr "" +msgstr "hlรฆgjandi" #. ๐Ÿ˜‡ (U+1F607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8445,7 +8204,7 @@ "SMILING_FACE_WITH_HALO\n" "LngText.text" msgid "innocent" -msgstr "" +msgstr "saklaus" #. ๐Ÿ˜ˆ (U+1F608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8454,17 +8213,16 @@ "SMILING_FACE_WITH_HORNS\n" "LngText.text" msgid "smiling imp" -msgstr "" +msgstr "brospรบki" #. ๐Ÿ˜‰ (U+1F609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "Tengill" +msgstr "vink" #. ๐Ÿ˜Š (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8473,7 +8231,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "roรฐna" #. ๐Ÿ˜‹ (U+1F60B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8482,7 +8240,7 @@ "FACE_SAVOURING_DELICIOUS_FOOD\n" "LngText.text" msgid "yum" -msgstr "" +msgstr "nammibros" #. ๐Ÿ˜Œ (U+1F60C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8491,7 +8249,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "feginn" #. ๐Ÿ˜ (U+1F60D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8500,7 +8258,7 @@ "SMILING_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes" -msgstr "" +msgstr "hjartaaugu" #. ๐Ÿ˜Ž (U+1F60E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8509,7 +8267,7 @@ "SMILING_FACE_WITH_SUNGLASSES\n" "LngText.text" msgid "sunglasses" -msgstr "" +msgstr "sรณlgleraugu" #. ๐Ÿ˜ (U+1F60F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8518,7 +8276,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "รบt รญ annaรฐ" #. ๐Ÿ˜ (U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8527,7 +8285,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "hlutlaust andlit" #. ๐Ÿ˜‘ (U+1F611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8536,7 +8294,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "sviplaus" #. ๐Ÿ˜’ (U+1F612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8545,7 +8303,7 @@ "UNAMUSED_FACE\n" "LngText.text" msgid "unamused" -msgstr "" +msgstr "รณskemmt" #. ๐Ÿ˜“ (U+1F613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8554,7 +8312,7 @@ "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "" +msgstr "sviti" #. ๐Ÿ˜” (U+1F614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8563,7 +8321,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "hugsandi" #. ๐Ÿ˜• (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8572,7 +8330,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "rรกรฐvilltur" #. ๐Ÿ˜– (U+1F616), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8581,7 +8339,7 @@ "CONFOUNDED_FACE\n" "LngText.text" msgid "confounded" -msgstr "" +msgstr "niรฐurbrotinn" #. ๐Ÿ˜— (U+1F617), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8590,7 +8348,7 @@ "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "" +msgstr "kyssandi" #. ๐Ÿ˜˜ (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8599,7 +8357,7 @@ "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "" +msgstr "koss2" #. ๐Ÿ˜™ (U+1F619), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8608,7 +8366,7 @@ "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "" +msgstr "koss3" #. ๐Ÿ˜š (U+1F61A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8617,7 +8375,7 @@ "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "" +msgstr "koss4" #. ๐Ÿ˜› (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8626,7 +8384,7 @@ "FACE_WITH_STUCK-OUT_TONGUE\n" "LngText.text" msgid "tongue2" -msgstr "" +msgstr "tunga2" #. ๐Ÿ˜œ (U+1F61C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8635,7 +8393,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "" +msgstr "tunga3" #. ๐Ÿ˜ (U+1F61D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8644,7 +8402,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "" +msgstr "tunga4" #. ๐Ÿ˜ž (U+1F61E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8653,7 +8411,7 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "" +msgstr "vonsvikinn" #. ๐Ÿ˜Ÿ (U+1F61F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8662,7 +8420,7 @@ "WORRIED_FACE\n" "LngText.text" msgid "worried" -msgstr "" +msgstr "รกhyggjufullur" #. ๐Ÿ˜  (U+1F620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8671,7 +8429,7 @@ "ANGRY_FACE\n" "LngText.text" msgid "angry" -msgstr "" +msgstr "reiรฐur" #. ๐Ÿ˜ก (U+1F621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8680,7 +8438,7 @@ "POUTING_FACE\n" "LngText.text" msgid "rage" -msgstr "" +msgstr "ofsareiรฐur" #. ๐Ÿ˜ข (U+1F622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8689,7 +8447,7 @@ "CRYING_FACE\n" "LngText.text" msgid "cry" -msgstr "" +msgstr "grรกta" #. ๐Ÿ˜ฃ (U+1F623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8698,7 +8456,7 @@ "PERSEVERING_FACE\n" "LngText.text" msgid "persevere" -msgstr "" +msgstr "rembast" #. ๐Ÿ˜ค (U+1F624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8707,7 +8465,7 @@ "FACE_WITH_LOOK_OF_TRIUMPH\n" "LngText.text" msgid "triumph" -msgstr "" +msgstr "sigur" #. ๐Ÿ˜ฅ (U+1F625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8716,7 +8474,7 @@ "DISAPPOINTED_BUT_RELIEVED_FACE\n" "LngText.text" msgid "disappointed relieved" -msgstr "" +msgstr "vonsvikinn en feginn" #. ๐Ÿ˜ฆ (U+1F626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8725,7 +8483,7 @@ "FROWNING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "frowning" -msgstr "" +msgstr "hnykla brรบnir" #. ๐Ÿ˜ง (U+1F627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8743,7 +8501,7 @@ "FEARFUL_FACE\n" "LngText.text" msgid "fearful" -msgstr "" +msgstr "hrรฆddur" #. ๐Ÿ˜ฉ (U+1F629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8752,7 +8510,7 @@ "WEARY_FACE\n" "LngText.text" msgid "weary" -msgstr "" +msgstr "รพreytulegur" #. ๐Ÿ˜ช (U+1F62A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8761,7 +8519,7 @@ "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "" +msgstr "syfjaรฐur" #. ๐Ÿ˜ซ (U+1F62B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8770,7 +8528,7 @@ "TIRED_FACE\n" "LngText.text" msgid "tired face" -msgstr "" +msgstr "รพreytt andlit" #. ๐Ÿ˜ฌ (U+1F62C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8779,7 +8537,7 @@ "GRIMACING_FACE\n" "LngText.text" msgid "grimacing" -msgstr "" +msgstr "grettandi" #. ๐Ÿ˜ญ (U+1F62D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8788,7 +8546,7 @@ "LOUDLY_CRYING_FACE\n" "LngText.text" msgid "sob" -msgstr "" +msgstr "ekkasog" #. ๐Ÿ˜ฎ (U+1F62E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8797,7 +8555,7 @@ "FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "open mouth" -msgstr "" +msgstr "opinn munnur" #. ๐Ÿ˜ฏ (U+1F62F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8806,7 +8564,7 @@ "HUSHED_FACE\n" "LngText.text" msgid "hushed" -msgstr "" +msgstr "undrandi" #. ๐Ÿ˜ฐ (U+1F630), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8815,7 +8573,7 @@ "FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "cold sweat" -msgstr "" +msgstr "kaldur sviti" #. ๐Ÿ˜ฑ (U+1F631), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8824,7 +8582,7 @@ "FACE_SCREAMING_IN_FEAR\n" "LngText.text" msgid "scream" -msgstr "" +msgstr "รถskur" #. ๐Ÿ˜ฒ (U+1F632), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8833,7 +8591,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "hissa" #. ๐Ÿ˜ณ (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8842,7 +8600,7 @@ "FLUSHED_FACE\n" "LngText.text" msgid "flushed" -msgstr "" +msgstr "roรฐna" #. ๐Ÿ˜ด (U+1F634), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8851,7 +8609,7 @@ "SLEEPING_FACE\n" "LngText.text" msgid "sleeping" -msgstr "" +msgstr "sofandi" #. ๐Ÿ˜ต (U+1F635), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8860,7 +8618,7 @@ "DIZZY_FACE\n" "LngText.text" msgid "dizzy face" -msgstr "" +msgstr "dofiรฐ andlit" #. ๐Ÿ˜ถ (U+1F636), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8869,7 +8627,7 @@ "FACE_WITHOUT_MOUTH\n" "LngText.text" msgid "no mouth" -msgstr "" +msgstr "enginn munnur" #. ๐Ÿ˜ท (U+1F637), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8878,7 +8636,7 @@ "FACE_WITH_MEDICAL_MASK\n" "LngText.text" msgid "mask" -msgstr "" +msgstr "grรญma" #. ๐Ÿ˜ธ (U+1F638), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8887,7 +8645,7 @@ "GRINNING_CAT_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "smile cat" -msgstr "" +msgstr "broskรถttur" #. ๐Ÿ˜น (U+1F639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8896,7 +8654,7 @@ "CAT_FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy cat" -msgstr "" +msgstr "gleรฐikรถttur" #. ๐Ÿ˜บ (U+1F63A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8932,7 +8690,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "kyssandi kรถttur" #. ๐Ÿ˜พ (U+1F63E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8950,7 +8708,7 @@ "CRYING_CAT_FACE\n" "LngText.text" msgid "crying cat" -msgstr "" +msgstr "grรกtandi kรถttur" #. ๐Ÿ™€ (U+1F640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8968,17 +8726,16 @@ "FACE_WITH_NO_GOOD_GESTURE\n" "LngText.text" msgid "no good" -msgstr "" +msgstr "ekki gott" #. ๐Ÿ™† (U+1F646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok2" -msgstr "ร lagi" +msgstr "รญ lagi2" #. ๐Ÿ™‡ (U+1F647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8987,7 +8744,7 @@ "PERSON_BOWING_DEEPLY\n" "LngText.text" msgid "bow" -msgstr "" +msgstr "beygรฐur" #. ๐Ÿ™ˆ (U+1F648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8996,7 +8753,7 @@ "SEE-NO-EVIL_MONKEY\n" "LngText.text" msgid "see no evil" -msgstr "" +msgstr "sรฉ ekkert illt" #. ๐Ÿ™‰ (U+1F649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9005,7 +8762,7 @@ "HEAR-NO-EVIL_MONKEY\n" "LngText.text" msgid "hear no evil" -msgstr "" +msgstr "heyri ekkert illt" #. ๐Ÿ™Š (U+1F64A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9014,7 +8771,7 @@ "SPEAK-NO-EVIL_MONKEY\n" "LngText.text" msgid "speak no evil" -msgstr "" +msgstr "segi ekkert illt" #. ๐Ÿ™‹ (U+1F64B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9023,7 +8780,7 @@ "HAPPY_PERSON_RAISING_ONE_HAND\n" "LngText.text" msgid "happiness" -msgstr "" +msgstr "hamingja" #. ๐Ÿ™Œ (U+1F64C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9032,7 +8789,7 @@ "PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n" "LngText.text" msgid "celebration" -msgstr "" +msgstr "hรกtรญรฐahรถld" #. ๐Ÿ™ (U+1F64D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9041,7 +8798,7 @@ "PERSON_FROWNING\n" "LngText.text" msgid "person frowning" -msgstr "" +msgstr "hnykla brรบnir" #. ๐Ÿ™Ž (U+1F64E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9059,7 +8816,7 @@ "PERSON_WITH_FOLDED_HANDS\n" "LngText.text" msgid "pray" -msgstr "" +msgstr "biรฐja bรฆn" #. ๐Ÿš€ (U+1F680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9068,7 +8825,7 @@ "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "" +msgstr "eldflaug" #. ๐Ÿš (U+1F681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9077,7 +8834,7 @@ "HELICOPTER\n" "LngText.text" msgid "helicopter" -msgstr "" +msgstr "รพyrla" #. ๐Ÿš‚ (U+1F682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9086,7 +8843,7 @@ "STEAM_LOCOMOTIVE\n" "LngText.text" msgid "steam locomotive" -msgstr "" +msgstr "gufulest" #. ๐Ÿšƒ (U+1F683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9095,7 +8852,7 @@ "RAILWAY_CAR\n" "LngText.text" msgid "railway car" -msgstr "" +msgstr "lestarvagn" #. ๐Ÿš„ (U+1F684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9104,7 +8861,7 @@ "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "" +msgstr "lest2" #. ๐Ÿš… (U+1F685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9113,7 +8870,7 @@ "HIGH-SPEED_TRAIN_WITH_BULLET_NOSE\n" "LngText.text" msgid "train3" -msgstr "" +msgstr "lest3" #. ๐Ÿš† (U+1F686), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9122,7 +8879,7 @@ "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "lest" #. ๐Ÿš‡ (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9131,7 +8888,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "neรฐanjarรฐarlest" #. ๐Ÿšˆ (U+1F688), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9140,7 +8897,7 @@ "LIGHT_RAIL\n" "LngText.text" msgid "light rail" -msgstr "" +msgstr "lรฉttlest" #. ๐Ÿš‰ (U+1F689), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9149,7 +8906,7 @@ "STATION\n" "LngText.text" msgid "station" -msgstr "" +msgstr "stรถรฐ" #. ๐ŸšŠ (U+1F68A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9158,7 +8915,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "sporvagn" #. ๐Ÿš‹ (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9167,7 +8924,7 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "sporvagn2" #. ๐ŸšŒ (U+1F68C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9176,7 +8933,7 @@ "BUS\n" "LngText.text" msgid "bus" -msgstr "" +msgstr "strรฆtisvagn" #. ๐Ÿš (U+1F68D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9185,7 +8942,7 @@ "ONCOMING_BUS\n" "LngText.text" msgid "bus2" -msgstr "" +msgstr "strรฆtisvagn2" #. ๐ŸšŽ (U+1F68E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9203,7 +8960,7 @@ "BUS_STOP\n" "LngText.text" msgid "busstop" -msgstr "" +msgstr "strรฆtรณstopp" #. ๐Ÿš (U+1F690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9212,7 +8969,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "smรกrรบta" #. ๐Ÿš‘ (U+1F691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9221,7 +8978,7 @@ "AMBULANCE\n" "LngText.text" msgid "ambulance" -msgstr "" +msgstr "sjรบkrabรญll" #. ๐Ÿš’ (U+1F692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9230,7 +8987,7 @@ "FIRE_ENGINE\n" "LngText.text" msgid "fire engine" -msgstr "" +msgstr "slรถkkvibรญll" #. ๐Ÿš“ (U+1F693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9239,7 +8996,7 @@ "POLICE_CAR\n" "LngText.text" msgid "police car" -msgstr "" +msgstr "lรถgreglubรญll" #. ๐Ÿš” (U+1F694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9248,7 +9005,7 @@ "ONCOMING_POLICE_CAR\n" "LngText.text" msgid "police car2" -msgstr "" +msgstr "lรถgreglubรญll2" #. ๐Ÿš• (U+1F695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9257,7 +9014,7 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "leigubรญll" #. ๐Ÿš– (U+1F696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9266,17 +9023,16 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "leigubรญll2" #. ๐Ÿš— (U+1F697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "Staf" +msgstr "bรญll" #. ๐Ÿš˜ (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9285,7 +9041,7 @@ "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "bรญll2" #. ๐Ÿš™ (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9294,7 +9050,7 @@ "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "" +msgstr "bรญll3" #. ๐Ÿšš (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9303,7 +9059,7 @@ "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "trukkur2" #. ๐Ÿš› (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9312,7 +9068,7 @@ "ARTICULATED_LORRY\n" "LngText.text" msgid "lorry" -msgstr "" +msgstr "vรถrubรญll" #. ๐Ÿšœ (U+1F69C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9321,7 +9077,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "drรกttarvรฉl" #. ๐Ÿš (U+1F69D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9330,7 +9086,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "einteinungur" #. ๐Ÿšž (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9339,7 +9095,7 @@ "MOUNTAIN_RAILWAY\n" "LngText.text" msgid "mountain railway" -msgstr "" +msgstr "fjallalest" #. ๐ŸšŸ (U+1F69F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9357,7 +9113,7 @@ "MOUNTAIN_CABLEWAY\n" "LngText.text" msgid "mountain cableway" -msgstr "" +msgstr "klรกfferja" #. ๐Ÿšก (U+1F6A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9366,7 +9122,7 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "upphengdur sporvagn" #. ๐Ÿšข (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9375,7 +9131,7 @@ "SHIP\n" "LngText.text" msgid "ship" -msgstr "" +msgstr "skip" #. ๐Ÿšฃ (U+1F6A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9384,7 +9140,7 @@ "ROWBOAT\n" "LngText.text" msgid "rowboat" -msgstr "" +msgstr "รกrabรกtur" #. ๐Ÿšค (U+1F6A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9393,7 +9149,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "hraรฐbรกtur" #. ๐Ÿšฅ (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9402,7 +9158,7 @@ "HORIZONTAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light" -msgstr "" +msgstr "umferรฐarljรณs" #. ๐Ÿšฆ (U+1F6A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9411,7 +9167,7 @@ "VERTICAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light2" -msgstr "" +msgstr "umferรฐarljรณs2" #. ๐Ÿšง (U+1F6A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9420,7 +9176,7 @@ "CONSTRUCTION_SIGN\n" "LngText.text" msgid "construction" -msgstr "" +msgstr "byggingavinna" #. ๐Ÿšจ (U+1F6A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9429,7 +9185,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "snรบningsljรณs" #. ๐Ÿšฉ (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9438,7 +9194,7 @@ "TRIANGULAR_FLAG_ON_POST\n" "LngText.text" msgid "triangular flag" -msgstr "" +msgstr "รพrรญhyrningsveifa" #. ๐Ÿšช (U+1F6AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9447,7 +9203,7 @@ "DOOR\n" "LngText.text" msgid "door" -msgstr "" +msgstr "hurรฐ" #. ๐Ÿšซ (U+1F6AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9456,7 +9212,7 @@ "NO_ENTRY_SIGN\n" "LngText.text" msgid "no entry sign" -msgstr "" +msgstr "engin inngangur" #. ๐Ÿšฌ (U+1F6AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9465,7 +9221,7 @@ "SMOKING_SYMBOL\n" "LngText.text" msgid "smoking" -msgstr "" +msgstr "reykingar" #. ๐Ÿšญ (U+1F6AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9474,7 +9230,7 @@ "NO_SMOKING_SYMBOL\n" "LngText.text" msgid "no smoking" -msgstr "" +msgstr "reyklaust" #. ๐Ÿšฎ (U+1F6AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9483,7 +9239,7 @@ "PUT_LITTER_IN_ITS_PLACE_SYMBOL\n" "LngText.text" msgid "litter" -msgstr "" +msgstr "rusl" #. ๐Ÿšฏ (U+1F6AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9492,7 +9248,7 @@ "DO_NOT_LITTER_SYMBOL\n" "LngText.text" msgid "do not litter" -msgstr "" +msgstr "ekki henda rusli" #. ๐Ÿšฐ (U+1F6B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9501,7 +9257,7 @@ "POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "potable water" -msgstr "" +msgstr "drykkjarvatn" #. ๐Ÿšฑ (U+1F6B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9510,7 +9266,7 @@ "NON-POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "non-potable water" -msgstr "" +msgstr "รณdrykkjarhรฆft vatn" #. ๐Ÿšฒ (U+1F6B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9519,7 +9275,7 @@ "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "" +msgstr "reiรฐhjรณl" #. ๐Ÿšณ (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9528,7 +9284,7 @@ "NO_BICYCLES\n" "LngText.text" msgid "no bicycles" -msgstr "" +msgstr "engin reiรฐhjรณl" #. ๐Ÿšด (U+1F6B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9537,7 +9293,7 @@ "BICYCLIST\n" "LngText.text" msgid "bicyclist" -msgstr "" +msgstr "hjรณlreiรฐamaรฐur" #. ๐Ÿšต (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9546,7 +9302,7 @@ "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "hjรณlreiรฐamaรฐur2" #. ๐Ÿšถ (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9555,7 +9311,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "gangandi" #. ๐Ÿšท (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9564,7 +9320,7 @@ "NO_PEDESTRIANS\n" "LngText.text" msgid "no pedestrians" -msgstr "" +msgstr "engir fรณtgangandi" #. ๐Ÿšธ (U+1F6B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9573,7 +9329,7 @@ "CHILDREN_CROSSING\n" "LngText.text" msgid "children crossing" -msgstr "" +msgstr "bรถrn aรฐ รพvera" #. ๐Ÿšน (U+1F6B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9582,7 +9338,7 @@ "MENS_SYMBOL\n" "LngText.text" msgid "mens" -msgstr "" +msgstr "karlar" #. ๐Ÿšบ (U+1F6BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9591,7 +9347,7 @@ "WOMENS_SYMBOL\n" "LngText.text" msgid "womens" -msgstr "" +msgstr "konur" #. ๐Ÿšป (U+1F6BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9600,7 +9356,7 @@ "RESTROOM\n" "LngText.text" msgid "restroom" -msgstr "" +msgstr "snyrting" #. ๐Ÿšผ (U+1F6BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9609,7 +9365,7 @@ "BABY_SYMBOL\n" "LngText.text" msgid "baby2" -msgstr "" +msgstr "smรกbarn2" #. ๐Ÿšฝ (U+1F6BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9618,7 +9374,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "salerni" #. ๐Ÿšพ (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9627,7 +9383,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "salerni2" #. ๐Ÿšฟ (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9636,7 +9392,7 @@ "SHOWER\n" "LngText.text" msgid "shower" -msgstr "" +msgstr "sturta" #. ๐Ÿ›€ (U+1F6C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9645,7 +9401,7 @@ "BATH\n" "LngText.text" msgid "bath" -msgstr "" +msgstr "baรฐ" #. ๐Ÿ› (U+1F6C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9654,7 +9410,7 @@ "BATHTUB\n" "LngText.text" msgid "bathtub" -msgstr "" +msgstr "baรฐkar" #. ๐Ÿ›‚ (U+1F6C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9663,7 +9419,7 @@ "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "" +msgstr "vegabrรฉf" #. ๐Ÿ›ƒ (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9672,7 +9428,7 @@ "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "" +msgstr "tollafgreiรฐsla" #. ๐Ÿ›„ (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9681,7 +9437,7 @@ "BAGGAGE_CLAIM\n" "LngText.text" msgid "baggage" -msgstr "" +msgstr "farangur" #. ๐Ÿ›… (U+1F6C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9690,7 +9446,7 @@ "LEFT_LUGGAGE\n" "LngText.text" msgid "left luggage" -msgstr "" +msgstr "รณskilafarangur" #. ยฝ (U+000BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9699,7 +9455,7 @@ "VULGAR_FRACTION_ONE_HALF\n" "LngText.text" msgid "1/2" -msgstr "" +msgstr "1/2" #. โ…“ (U+02153), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9708,7 +9464,7 @@ "VULGAR_FRACTION_ONE_THIRD\n" "LngText.text" msgid "1/3" -msgstr "" +msgstr "1/3" #. ยผ (U+000BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9717,7 +9473,7 @@ "VULGAR_FRACTION_ONE_QUARTER\n" "LngText.text" msgid "1/4" -msgstr "" +msgstr "1/4" #. โ…” (U+02154), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9726,7 +9482,7 @@ "VULGAR_FRACTION_TWO_THIRDS\n" "LngText.text" msgid "2/3" -msgstr "" +msgstr "2/3" #. ยพ (U+000BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9735,7 +9491,7 @@ "VULGAR_FRACTION_THREE_QUARTERS\n" "LngText.text" msgid "3/4" -msgstr "" +msgstr "3/4" #. โ…› (U+0215B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9744,7 +9500,7 @@ "VULGAR_FRACTION_ONE_EIGHTH\n" "LngText.text" msgid "1/8" -msgstr "" +msgstr "1/8" #. โ…œ (U+0215C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9753,7 +9509,7 @@ "VULGAR_FRACTION_THREE_EIGHTHS\n" "LngText.text" msgid "3/8" -msgstr "" +msgstr "3/8" #. โ… (U+0215D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9762,7 +9518,7 @@ "VULGAR_FRACTION_FIVE_EIGHTHS\n" "LngText.text" msgid "5/8" -msgstr "" +msgstr "5/8" #. โ…ž (U+0215E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9771,7 +9527,7 @@ "VULGAR_FRACTION_SEVEN_EIGHTHS\n" "LngText.text" msgid "7/8" -msgstr "" +msgstr "7/8" #. ยน (U+000B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9780,7 +9536,7 @@ "SUPERSCRIPT_ONE\n" "LngText.text" msgid "^1" -msgstr "" +msgstr "^1" #. ยฒ (U+000B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9789,7 +9545,7 @@ "SUPERSCRIPT_TWO\n" "LngText.text" msgid "^2" -msgstr "" +msgstr "^2" #. ยณ (U+000B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9798,7 +9554,7 @@ "SUPERSCRIPT_THREE\n" "LngText.text" msgid "^3" -msgstr "" +msgstr "^3" #. โด (U+02074), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9807,7 +9563,7 @@ "SUPERSCRIPT_FOUR\n" "LngText.text" msgid "^4" -msgstr "" +msgstr "^4" #. โต (U+02075), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9816,7 +9572,7 @@ "SUPERSCRIPT_FIVE\n" "LngText.text" msgid "^5" -msgstr "" +msgstr "^5" #. โถ (U+02076), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9825,7 +9581,7 @@ "SUPERSCRIPT_SIX\n" "LngText.text" msgid "^6" -msgstr "" +msgstr "^6" #. โท (U+02077), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9834,7 +9590,7 @@ "SUPERSCRIPT_SEVEN\n" "LngText.text" msgid "^7" -msgstr "" +msgstr "^7" #. โธ (U+02078), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9843,7 +9599,7 @@ "SUPERSCRIPT_EIGHT\n" "LngText.text" msgid "^8" -msgstr "" +msgstr "^8" #. โน (U+02079), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9852,7 +9608,7 @@ "SUPERSCRIPT_NINE\n" "LngText.text" msgid "^9" -msgstr "" +msgstr "^9" #. โฐ (U+02070), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9861,7 +9617,7 @@ "SUPERSCRIPT_ZERO\n" "LngText.text" msgid "^0" -msgstr "" +msgstr "^0" #. โบ (U+0207A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9870,11 +9626,10 @@ "SUPERSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "^+" -msgstr "" +msgstr "^+" #. โป (U+0207B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_MINUS\n" @@ -9889,11 +9644,10 @@ "SUPERSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "^=" -msgstr "" +msgstr "^=" #. โฝ (U+0207D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_LEFT_PARENTHESIS\n" @@ -9903,7 +9657,6 @@ #. โพ (U+0207E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_RIGHT_PARENTHESIS\n" @@ -9918,7 +9671,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "" +msgstr "_1" #. โ‚‚ (U+02082), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9927,7 +9680,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "" +msgstr "_2" #. โ‚ƒ (U+02083), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9936,7 +9689,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "" +msgstr "_3" #. โ‚„ (U+02084), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9945,7 +9698,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "" +msgstr "_4" #. โ‚… (U+02085), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9954,7 +9707,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "" +msgstr "_5" #. โ‚† (U+02086), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9963,7 +9716,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "" +msgstr "_6" #. โ‚‡ (U+02087), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9972,7 +9725,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "" +msgstr "_7" #. โ‚ˆ (U+02088), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9981,7 +9734,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "" +msgstr "_8" #. โ‚‰ (U+02089), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9990,7 +9743,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "" +msgstr "_9" #. โ‚€ (U+02080), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9999,7 +9752,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "" +msgstr "_0" #. โ‚Š (U+0208A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10008,11 +9761,10 @@ "SUBSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "_+" -msgstr "" +msgstr "_+" #. โ‚‹ (U+0208B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_MINUS\n" @@ -10027,11 +9779,10 @@ "SUBSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "_=" -msgstr "" +msgstr "_=" #. โ‚ (U+0208D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_LEFT_PARENTHESIS\n" @@ -10041,7 +9792,6 @@ #. โ‚Ž (U+0208E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_RIGHT_PARENTHESIS\n" @@ -10051,13 +9801,12 @@ #. แตƒ (U+01D43), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_A\n" "LngText.text" msgid "^a" -msgstr "A1" +msgstr "^a" #. แต‡ (U+01D47), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10070,63 +9819,57 @@ #. แถœ (U+01D9C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_C\n" "LngText.text" msgid "^c" -msgstr "C" +msgstr "^c" #. แตˆ (U+01D48), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_D\n" "LngText.text" msgid "^d" -msgstr "3D" +msgstr "^d" #. แต‰ (U+01D49), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_E\n" "LngText.text" msgid "^e" -msgstr "E" +msgstr "^e" #. แถ  (U+01DA0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_F\n" "LngText.text" msgid "^f" -msgstr "F5" +msgstr "^f" #. แต (U+01D4D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_G\n" "LngText.text" msgid "^g" -msgstr "_G" +msgstr "^g" #. สฐ (U+002B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_H\n" "LngText.text" msgid "^h" -msgstr "klst" +msgstr "^h" #. โฑ (U+02071), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10135,7 +9878,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_I\n" "LngText.text" msgid "^i" -msgstr "" +msgstr "^i" #. สฒ (U+002B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10144,17 +9887,16 @@ "MODIFIER_LETTER_SMALL_J\n" "LngText.text" msgid "^j" -msgstr "" +msgstr "^j" #. แต (U+01D4F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_K\n" "LngText.text" msgid "^k" -msgstr "_K" +msgstr "^k" #. หก (U+002E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10176,13 +9918,12 @@ #. โฟ (U+0207F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_LATIN_SMALL_LETTER_N\n" "LngText.text" msgid "^n" -msgstr "N" +msgstr "^n" #. แต’ (U+01D52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10191,37 +9932,34 @@ "MODIFIER_LETTER_SMALL_O\n" "LngText.text" msgid "^o" -msgstr "" +msgstr "^o" #. แต– (U+01D56), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_P\n" "LngText.text" msgid "^p" -msgstr "F" +msgstr "^p" #. สณ (U+002B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_R\n" "LngText.text" msgid "^r" -msgstr "R" +msgstr "^r" #. หข (U+002E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_S\n" "LngText.text" msgid "^s" -msgstr "U" +msgstr "^s" #. แต— (U+01D57), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10239,7 +9977,7 @@ "MODIFIER_LETTER_SMALL_U\n" "LngText.text" msgid "^u" -msgstr "" +msgstr "^u" #. แต› (U+01D5B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10248,57 +9986,52 @@ "MODIFIER_LETTER_SMALL_V\n" "LngText.text" msgid "^v" -msgstr "" +msgstr "^v" #. สท (U+002B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_W\n" "LngText.text" msgid "^w" -msgstr "'W', ','" +msgstr "^w" #. หฃ (U+002E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_X\n" "LngText.text" msgid "^x" -msgstr "X" +msgstr "^x" #. สธ (U+002B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_Y\n" "LngText.text" msgid "^y" -msgstr "_Y" +msgstr "^y" #. แถป (U+01DBB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_Z\n" "LngText.text" msgid "^z" -msgstr "z" +msgstr "^z" #. แดฌ (U+01D2C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_A\n" "LngText.text" msgid "^A" -msgstr "A1" +msgstr "^A" #. แดฎ (U+01D2E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10311,43 +10044,39 @@ #. แดฐ (U+01D30), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_D\n" "LngText.text" msgid "^C" -msgstr "C" +msgstr "^C" #. แดฑ (U+01D31), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_E\n" "LngText.text" msgid "^E" -msgstr "E" +msgstr "^E" #. แดณ (U+01D33), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_G\n" "LngText.text" msgid "^G" -msgstr "_G" +msgstr "^G" #. แดด (U+01D34), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_H\n" "LngText.text" msgid "^H" -msgstr "klst" +msgstr "^H" #. แดต (U+01D35), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10356,7 +10085,7 @@ "MODIFIER_LETTER_CAPITAL_I\n" "LngText.text" msgid "^I" -msgstr "" +msgstr "^I" #. แดถ (U+01D36), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10365,17 +10094,16 @@ "MODIFIER_LETTER_CAPITAL_J\n" "LngText.text" msgid "^J" -msgstr "" +msgstr "^J" #. แดท (U+01D37), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_K\n" "LngText.text" msgid "^K" -msgstr "_K" +msgstr "^K" #. แดธ (U+01D38), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10397,13 +10125,12 @@ #. แดบ (U+01D3A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_N\n" "LngText.text" msgid "^N" -msgstr "N" +msgstr "^N" #. แดผ (U+01D3C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10412,27 +10139,25 @@ "MODIFIER_LETTER_CAPITAL_O\n" "LngText.text" msgid "^O" -msgstr "" +msgstr "^O" #. แดพ (U+01D3E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_P\n" "LngText.text" msgid "^P" -msgstr "F" +msgstr "^P" #. แดฟ (U+01D3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_R\n" "LngText.text" msgid "^R" -msgstr "R" +msgstr "^R" #. แต€ (U+01D40), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10450,7 +10175,7 @@ "MODIFIER_LETTER_CAPITAL_U\n" "LngText.text" msgid "^U" -msgstr "" +msgstr "^U" #. โฑฝ (U+02C7D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10459,47 +10184,43 @@ "MODIFIER_LETTER_CAPITAL_V\n" "LngText.text" msgid "^V" -msgstr "" +msgstr "^V" #. แต‚ (U+01D42), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_CAPITAL_W\n" "LngText.text" msgid "^W" -msgstr "'W', ','" +msgstr "^W" #. โ‚ (U+02090), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_A\n" "LngText.text" msgid "_a" -msgstr "A1" +msgstr "_a" #. โ‚‘ (U+02091), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_E\n" "LngText.text" msgid "_e" -msgstr "E" +msgstr "_e" #. โ‚• (U+02095), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_H\n" "LngText.text" msgid "_h" -msgstr "klst" +msgstr "_h" #. แตข (U+01D62), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10508,7 +10229,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_I\n" "LngText.text" msgid "_i" -msgstr "" +msgstr "_i" #. โฑผ (U+02C7C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10517,17 +10238,16 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_J\n" "LngText.text" msgid "_j" -msgstr "" +msgstr "_j" #. โ‚– (U+02096), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_K\n" "LngText.text" msgid "_k" -msgstr "_K" +msgstr "_k" #. โ‚— (U+02097), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10549,13 +10269,12 @@ #. โ‚™ (U+02099), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_N\n" "LngText.text" msgid "_n" -msgstr "N" +msgstr "_n" #. โ‚’ (U+02092), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10564,37 +10283,34 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_O\n" "LngText.text" msgid "_o" -msgstr "" +msgstr "_o" #. โ‚š (U+0209A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_P\n" "LngText.text" msgid "_p" -msgstr "F" +msgstr "_p" #. แตฃ (U+01D63), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_R\n" "LngText.text" msgid "_r" -msgstr "R" +msgstr "_r" #. โ‚› (U+0209B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_S\n" "LngText.text" msgid "_s" -msgstr "U" +msgstr "_s" #. โ‚œ (U+0209C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10612,7 +10328,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_U\n" "LngText.text" msgid "_u" -msgstr "" +msgstr "_u" #. แตฅ (U+01D65), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10621,164 +10337,148 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_V\n" "LngText.text" msgid "_v" -msgstr "" +msgstr "_v" #. โ‚“ (U+02093), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "LATIN_SUBSCRIPT_SMALL_LETTER_X\n" "LngText.text" msgid "_x" -msgstr "X" +msgstr "_x" #. แต… (U+01D45), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_ALPHA\n" "LngText.text" msgid "^alpha" -msgstr "alfa" +msgstr "^alfa" #. แต (U+01D5D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_BETA\n" "LngText.text" msgid "^beta" -msgstr "beta" +msgstr "^beta" #. แตž (U+01D5E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_GREEK_GAMMA\n" "LngText.text" msgid "^gamma" -msgstr "GAMMA" +msgstr "^gamma" #. แตŸ (U+01D5F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_DELTA\n" "LngText.text" msgid "^delta" -msgstr "DELTA" +msgstr "^delta" #. แต‹ (U+01D4B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_OPEN_E\n" "LngText.text" msgid "^epsilon" -msgstr "epsilon" +msgstr "^epsilon" #. แถฟ (U+01DBF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_THETA\n" "LngText.text" msgid "^theta" -msgstr "รพeta" +msgstr "^รพeta" #. แถฅ (U+01DA5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_IOTA\n" "LngText.text" msgid "^iota" -msgstr "jรณta" +msgstr "^jรณta" #. แถฒ (U+01DB2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_PHI\n" "LngText.text" msgid "^Phi" -msgstr "PHI" +msgstr "^Phi" #. แต  (U+01D60), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_GREEK_PHI\n" "LngText.text" msgid "^phi" -msgstr "PHI" +msgstr "^phi" #. แตก (U+01D61), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MODIFIER_LETTER_SMALL_CHI\n" "LngText.text" msgid "^chi" -msgstr "chi" +msgstr "^chi" #. แตฆ (U+01D66), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_BETA\n" "LngText.text" msgid "_beta" -msgstr "beta" +msgstr "_beta" #. แตง (U+01D67), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "_gamma" -msgstr "GAMMA" +msgstr "_gamma" #. แตจ (U+01D68), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n" "LngText.text" msgid "_rho" -msgstr "rho" +msgstr "_rho" #. แตฉ (U+01D69), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_PHI\n" "LngText.text" msgid "_phi" -msgstr "PHI" +msgstr "_phi" #. แตช (U+01D6A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "chi" +msgstr "_chi" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/filter/source/config/fragments/filters.po libreoffice-l10n-5.0.3~rc2/translations/source/is/filter/source/config/fragments/filters.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/filter/source/config/fragments/filters.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/filter/source/config/fragments/filters.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: filters\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-17 17:22+0000\n" +"PO-Revision-Date: 2015-10-14 13:50+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439832178.000000\n" +"X-POOTLE-MTIME: 1444830656.000000\n" #: AbiWord.xcu msgctxt "" @@ -1157,7 +1157,7 @@ "UIName\n" "value.text" msgid "Text - Choose Encoding (Master Document)" -msgstr "Texti - velja stafatรถflu (stรฝriskjal)" +msgstr "Texti - Veldu stafatรถflu (stรฝriskjal)" #: Text__encoded___StarWriter_Web_.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/filter/source/xsltdialog.po libreoffice-l10n-5.0.3~rc2/translations/source/is/filter/source/xsltdialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/filter/source/xsltdialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/filter/source/xsltdialog.po 2015-10-24 15:21:48.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: 2012-12-26 10:19+0000\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-13 12:06+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1356517156.0\n" +"X-POOTLE-MTIME: 1444737995.000000\n" #: xmlfilterdialogstrings.src msgctxt "" @@ -62,7 +62,7 @@ "STR_EXPORT_ONLY\n" "string.text" msgid "export filter" -msgstr "flytja รบt sรญu" +msgstr "รบtflutningssรญa" #: xmlfilterdialogstrings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/filter/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/filter/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/filter/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/filter/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-17 17:21+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-13 12:09+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439832106.000000\n" +"X-POOTLE-MTIME: 1444738141.000000\n" #: impswfdialog.ui msgctxt "" @@ -1512,7 +1512,7 @@ "label\n" "string.text" msgid "The filter needs XSLT 2.0 processor" -msgstr "Sรญan krefst XSLT 2.0 รถrgjรถrva" +msgstr "Sรญan krefst XSLT 2.0 vinnsluhugbรบnaรฐar" #: xsltfilterdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/forms/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/is/forms/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/forms/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/forms/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: resource\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-08 13:31+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-16 13:05+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,8 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1445000703.000000\n" #: strings.src msgctxt "" @@ -45,7 +46,7 @@ "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN\n" "string.text" msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder." -msgstr "Villa kom upp viรฐ hleรฐslu gagnastรฝringarinnar. Henni var รพvรญ skipt รบt fyrir staรฐgรถngutรกkn." +msgstr "Villa kom upp viรฐ hleรฐslu gagnastรฝringarinnar. Henni var รพvรญ skipt รบt fyrir frรกtรถkutรกkn." #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/is/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-09-09 15:28+0000\n" +"PO-Revision-Date: 2015-10-14 10:59+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441812525.000000\n" +"X-POOTLE-MTIME: 1444820360.000000\n" #: core_resource.src msgctxt "" @@ -167,7 +167,7 @@ "SC_OPCODE_TRUE\n" "string.text" msgid "TRUE" -msgstr "TRUE" +msgstr "SATT" #: core_resource.src msgctxt "" @@ -176,7 +176,7 @@ "SC_OPCODE_FALSE\n" "string.text" msgid "FALSE" -msgstr "FALSE" +msgstr "ร“SATT" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/auxiliary.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/auxiliary.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/auxiliary.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/auxiliary.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-13 15:46+0000\n" +"PO-Revision-Date: 2015-10-14 13:48+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439480805.000000\n" +"X-POOTLE-MTIME: 1444830532.000000\n" #: sbasic.tree msgctxt "" @@ -798,7 +798,7 @@ "0220\n" "node.text" msgid "Master Documents" -msgstr "Yfirskjรถl" +msgstr "Stรฝriskjรถl" #: swriter.tree msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2011-04-05 15:11+0200\n" -"Last-Translator: Sveinn รญ Felli \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-10-05 10:08+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444039734.000000\n" #: 11010000.xhp msgctxt "" @@ -184,7 +185,7 @@ "par_id3146797\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 11040000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/sbasic/shared.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-11 19:04+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-14 11:54+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431371052.000000\n" +"X-POOTLE-MTIME: 1444823681.000000\n" #: 00000002.xhp msgctxt "" @@ -550,7 +550,7 @@ "38\n" "help.text" msgid "2 Syntax error" -msgstr "51 Innri villa " +msgstr "2 Formvilla" #: 00000003.xhp msgctxt "" @@ -918,7 +918,7 @@ "par_id31469429\n" "help.text" msgid "250 DDE Error" -msgstr "51 Innri villa " +msgstr "250 DDE villa" #: 00000003.xhp msgctxt "" @@ -1038,7 +1038,7 @@ "par_id31469414\n" "help.text" msgid "294 Invalid DDE link format" -msgstr "94 Notkun รก nรบlli er ekki leyfรฐ " +msgstr "294 ร“gilt sniรฐ DDE tengils" #: 00000003.xhp msgctxt "" @@ -1097,7 +1097,7 @@ "81\n" "help.text" msgid "366 Object is not available" -msgstr "68 Tรฆkiรฐ er ekki tiltรฆkt " +msgstr "366 Hlutur er ekki tiltรฆkur" #: 00000003.xhp msgctxt "" @@ -1285,7 +1285,7 @@ "par_id31455951\n" "help.text" msgid "951 Unexpected symbol:" -msgstr "12 Breyta ekki skilgreind " +msgstr "951 ร“vรฆnt tรกkn:" #: 00000003.xhp msgctxt "" @@ -1293,7 +1293,7 @@ "par_id31455952\n" "help.text" msgid "952 Expected:" -msgstr "12 Breyta ekki skilgreind " +msgstr "952 รtti von รก:" #: 00000003.xhp msgctxt "" @@ -1301,7 +1301,7 @@ "par_id31455953\n" "help.text" msgid "953 Symbol expected" -msgstr "12 Breyta ekki skilgreind " +msgstr "953 Vรฆnti tรกkns" #: 00000003.xhp msgctxt "" @@ -1309,7 +1309,7 @@ "par_id31455954\n" "help.text" msgid "954 Variable expected" -msgstr "12 Breyta ekki skilgreind " +msgstr "954 Vรฆnti breytu" #: 00000003.xhp msgctxt "" @@ -1317,7 +1317,7 @@ "par_id31455955\n" "help.text" msgid "955 Label expected" -msgstr "12 Breyta ekki skilgreind " +msgstr "955 Vรฆnti merkis" #: 00000003.xhp msgctxt "" @@ -1333,7 +1333,7 @@ "par_id31455957\n" "help.text" msgid "957 Variable already defined" -msgstr "55 Skrรกin er รพegar opin " +msgstr "957 Breyta รพegar skilgreind" #: 00000003.xhp msgctxt "" @@ -1349,7 +1349,7 @@ "par_id31455959\n" "help.text" msgid "959 Label already defined" -msgstr "55 Skrรกin er รพegar opin " +msgstr "959 Merki รพegar skilgreint" #: 00000003.xhp msgctxt "" @@ -1357,7 +1357,7 @@ "par_id31455960\n" "help.text" msgid "960 Variable not found" -msgstr "53 Skrรก fannst ekki " +msgstr "960 Breyta fannst ekki" #: 00000003.xhp msgctxt "" @@ -1365,7 +1365,7 @@ "par_id31455961\n" "help.text" msgid "961 Array or procedure not found" -msgstr "76 Slรณรฐ finnst ekki " +msgstr "961 Fylki eรฐa aรฐferรฐ finnst ekki" #: 00000003.xhp msgctxt "" @@ -1373,7 +1373,7 @@ "par_id31455962\n" "help.text" msgid "962 Procedure not found" -msgstr "76 Slรณรฐ finnst ekki " +msgstr "962 Aรฐferรฐ finnst ekki" #: 00000003.xhp msgctxt "" @@ -1381,7 +1381,7 @@ "par_id31455963\n" "help.text" msgid "963 Label undefined" -msgstr "12 Breyta ekki skilgreind " +msgstr "963 Merki รณskilgreint" #: 00000003.xhp msgctxt "" @@ -1397,7 +1397,7 @@ "par_id31455965\n" "help.text" msgid "965 Exit expected" -msgstr "12 Breyta ekki skilgreind " +msgstr "965 Vรฆnti aรฐ hรฆtta" #: 00000003.xhp msgctxt "" @@ -1445,7 +1445,7 @@ "par_id31455971\n" "help.text" msgid "971 Array must be dimensioned" -msgstr "8 Fylki er รพegar meรฐ vรญdd " +msgstr "971 Fylki verรฐur aรฐ hafa stรฆrรฐir" #: 00000003.xhp msgctxt "" @@ -1541,7 +1541,7 @@ "par_id31455983\n" "help.text" msgid "1003 Invalid number of arguments" -msgstr "450 ร“gildur fjรถldi af breytum " +msgstr "1003 ร“gildur fjรถldi af skilyrรฐum" #: 00000003.xhp msgctxt "" @@ -3013,7 +3013,7 @@ "1\n" "help.text" msgid "IDE Overview" -msgstr "Atburรฐir" +msgstr "IDE yfirlit" #: 01030100.xhp msgctxt "" @@ -3058,7 +3058,7 @@ "6\n" "help.text" msgid "Basic IDE" -msgstr "Grunnatriรฐi" +msgstr "Einfalt IDE" #: 01030200.xhp msgctxt "" @@ -3083,7 +3083,7 @@ "1\n" "help.text" msgid "The Basic Editor" -msgstr "Grunnatriรฐi" +msgstr "Einfaldi ritillinn" #: 01030200.xhp msgctxt "" @@ -3271,7 +3271,7 @@ "29\n" "help.text" msgid "Basic IDE" -msgstr "Grunnatriรฐi" +msgstr "Einfalt IDE" #: 01030300.xhp msgctxt "" @@ -7117,7 +7117,7 @@ "1\n" "help.text" msgid "Display Functions" -msgstr "QBColor Fall [Runtime]" +msgstr "Birtingarfรถll" #: 03010100.xhp msgctxt "" @@ -8059,7 +8059,7 @@ "1\n" "help.text" msgid "Color Functions" -msgstr "QBColor Fall [Runtime]" +msgstr "Litafรถll" #: 03010300.xhp msgctxt "" @@ -10997,7 +10997,7 @@ "1\n" "help.text" msgid "CurDir Function [Runtime]" -msgstr "CCur Fall [Runtime]" +msgstr "CurDir Fall [Runtime]" #: 03020403.xhp msgctxt "" @@ -12709,7 +12709,7 @@ "1\n" "help.text" msgid "Date and Time Functions" -msgstr "Error Fall [Runtime]" +msgstr "Dagsetninga- og tรญmafรถll" #: 03030000.xhp msgctxt "" @@ -12753,7 +12753,7 @@ "1\n" "help.text" msgid "Converting Date Values" -msgstr "Sรฝsla meรฐ skrรกr" +msgstr "Umbreyting dagsetningagilda" #: 03030100.xhp msgctxt "" @@ -22953,7 +22953,7 @@ "tit\n" "help.text" msgid "Choose Function [Runtime]" -msgstr "Choose Function [Runtime]" +msgstr "Choose falliรฐ [Runtime]" #: 03090402.xhp msgctxt "" @@ -22961,7 +22961,7 @@ "bm_id3143271\n" "help.text" msgid "Choose function" -msgstr "Choose fall" +msgstr "Choose falliรฐ" #: 03090402.xhp msgctxt "" @@ -23051,7 +23051,7 @@ "10\n" "help.text" msgid "The following example uses the Choose function to select a string from several strings that form a menu:" -msgstr "The following example uses the Choose function to select a string from several strings that form a menu:" +msgstr "Eftirfarandi dรฆmi notar Choose falliรฐ til aรฐ velja einn streng af nokkrum strengjum sem mynda valmynd:" #: 03090402.xhp msgctxt "" @@ -25795,7 +25795,7 @@ "22\n" "help.text" msgid "bOK=TRUE ' bOK is an implicit boolean variable" -msgstr "bOK=TRUE REM bOK is an implicit Boolean variable" +msgstr "" #: 03101110.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-13 16:27+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 12:42+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439483224.000000\n" +"X-POOTLE-MTIME: 1444999366.000000\n" #: 01120000.xhp msgctxt "" @@ -22,10 +22,9 @@ "tit\n" "help.text" msgid "Print Preview" -msgstr "" +msgstr "Prentskoรฐun" #: 01120000.xhp -#, fuzzy msgctxt "" "01120000.xhp\n" "hd_id1918698\n" @@ -1109,7 +1108,7 @@ "1\n" "help.text" msgid "Up" -msgstr "Vinstri" +msgstr "Upp" #: 02140300.xhp msgctxt "" @@ -2385,7 +2384,7 @@ "par_id3166424\n" "help.text" msgid "Deleting Contents" -msgstr "Innihald hรณlfs" +msgstr "Eyรฐa innihaldi" #: 02170000.xhp msgctxt "" @@ -2577,7 +2576,7 @@ "1\n" "help.text" msgid "Delete Manual Break" -msgstr "Handvirk sรญรฐuskil" +msgstr "Eyรฐa handvirkum sรญรฐuskilum" #: 02190000.xhp msgctxt "" @@ -2733,7 +2732,7 @@ "hd_id3163733308\n" "help.text" msgid "Events" -msgstr "Leturgerรฐ" +msgstr "Atburรฐir" #: 02210000.xhp msgctxt "" @@ -3626,7 +3625,7 @@ "1\n" "help.text" msgid "Function Wizard" -msgstr "Aรฐgerรฐir" +msgstr "Fallaรฐgerรฐaleiรฐsรถgn" #: 04060000.xhp msgctxt "" @@ -4072,7 +4071,7 @@ "4\n" "help.text" msgid "Date & Time" -msgstr "Gagnagrunnur" +msgstr "Dagsetning & tรญmi" #: 04060100.xhp msgctxt "" @@ -6195,7 +6194,7 @@ "par_id6354457\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 04060102.xhp msgctxt "" @@ -9278,7 +9277,7 @@ "par_id2131544\n" "help.text" msgid "=ISREF(4) returns FALSE." -msgstr "=ISREF(4) skilar FALSE." +msgstr "=ISREF(4) skilar ร“SATT." #: 04060104.xhp msgctxt "" @@ -9365,7 +9364,7 @@ "51\n" "help.text" msgid "=ISERR(C8) where cell C8 contains =1/0 returns TRUE, because 1/0 is an error." -msgstr "=ISERROR(C9) where cell C9 contains =NA() skilar TRUE." +msgstr "=ISERR(C8) รพar sem reitur C8 inniheldur =1/0 skilar SATT, vegna รพess aรฐ 1/0 er villa." #: 04060104.xhp msgctxt "" @@ -9373,7 +9372,7 @@ "par_id8456984\n" "help.text" msgid "=ISERR(C9) where cell C9 contains =NA() returns FALSE, because ISERR() ignores the #N/A error." -msgstr "=ISERROR(C9) where cell C9 contains =NA() skilar TRUE." +msgstr "=ISERR(C9) รพar sem reitur C9 inniheldur =NA() skilar ร“SATT, vegna รพess aรฐ ISERR() hunsar #N/A villuna." #: 04060104.xhp msgctxt "" @@ -9444,7 +9443,7 @@ "59\n" "help.text" msgid "=ISERROR(C8) where cell C8 contains =1/0 returns TRUE, because 1/0 is an error." -msgstr "=ISERROR(C9) where cell C9 contains =NA() skilar TRUE." +msgstr "=ISERROR(C8) รพar sem reitur C8 inniheldur =1/0 skilar SATT, vegna รพess aรฐ 1/0 er villa." #: 04060104.xhp msgctxt "" @@ -9452,7 +9451,7 @@ "par_id1889095\n" "help.text" msgid "=ISERROR(C9) where cell C9 contains =NA() returns TRUE." -msgstr "=ISERROR(C9) where cell C9 contains =NA() skilar TRUE." +msgstr "=ISERROR(C9) รพar sem reitur C9 inniheldur =NA() skilar SATT." #: 04060104.xhp msgctxt "" @@ -9684,7 +9683,7 @@ "par_id3163813\n" "help.text" msgid "=ISEVEN(48) returns TRUE" -msgstr "=ISEVEN(48) skilar TRUE" +msgstr "=ISEVEN(48) skilar SATT" #: 04060104.xhp msgctxt "" @@ -9692,7 +9691,7 @@ "par_id8378856\n" "help.text" msgid "=ISEVEN(33) returns FALSE" -msgstr "=ISEVEN(33) skilar FALSE" +msgstr "=ISEVEN(33) skilar ร“SATT" #: 04060104.xhp msgctxt "" @@ -9700,7 +9699,7 @@ "par_id7154759\n" "help.text" msgid "=ISEVEN(0) returns TRUE" -msgstr "=ISEVEN(0) skilar TRUE" +msgstr "=ISEVEN(0) skilar SATT" #: 04060104.xhp msgctxt "" @@ -9708,7 +9707,7 @@ "par_id1912289\n" "help.text" msgid "=ISEVEN(-2.1) returns TRUE" -msgstr "=ISEVEN(-2.1) skilar TRUE" +msgstr "=ISEVEN(-2.1) skilar SATT" #: 04060104.xhp msgctxt "" @@ -9716,7 +9715,7 @@ "par_id5627307\n" "help.text" msgid "=ISEVEN(3.999) returns FALSE" -msgstr "=ISEVEN(3.999) skilar FALSE" +msgstr "=ISEVEN(3.999) skilar ร“SATT" #: 04060104.xhp msgctxt "" @@ -10361,7 +10360,7 @@ "par_id3155345\n" "help.text" msgid "=ISODD(33) returns TRUE" -msgstr "=ISODD(33) skilar TRUE" +msgstr "=ISODD(33) skilar SATT" #: 04060104.xhp msgctxt "" @@ -10369,7 +10368,7 @@ "par_id9392986\n" "help.text" msgid "=ISODD(48) returns FALSE" -msgstr "=ISODD(48) skilar FALSE" +msgstr "=ISODD(48) skilar ร“SATT" #: 04060104.xhp msgctxt "" @@ -10377,7 +10376,7 @@ "par_id5971251\n" "help.text" msgid "=ISODD(3.999) returns TRUE" -msgstr "=ISODD(3.999) skilar TRUE" +msgstr "=ISODD(3.999) skilar SATT" #: 04060104.xhp msgctxt "" @@ -10385,7 +10384,7 @@ "par_id4136478\n" "help.text" msgid "=ISODD(-3.1) returns TRUE" -msgstr "=ISODD(-3.1) skilar TRUE" +msgstr "=ISODD(-3.1) skilar SATT" #: 04060104.xhp msgctxt "" @@ -11579,7 +11578,7 @@ "36\n" "help.text" msgid "=AND(12<13;14>12;7<6) returns FALSE." -msgstr "=ISODD(48) skilar FALSE" +msgstr "=AND(12<13;14>12;7<6) skilar ร“SATT." #: 04060105.xhp msgctxt "" @@ -11650,7 +11649,7 @@ "8\n" "help.text" msgid "=FALSE() returns FALSE" -msgstr "=ISEVEN(33) skilar FALSE" +msgstr "=FALSE() skilar ร“SATT" #: 04060105.xhp msgctxt "" @@ -11916,7 +11915,7 @@ "27\n" "help.text" msgid "=OR(12<11;13>22;45=45) returns TRUE." -msgstr "=ISODD(48) skilar FALSE" +msgstr "=OR(12<11;13>22;45=45) skilar SATT." #: 04060105.xhp msgctxt "" @@ -11996,7 +11995,7 @@ "44\n" "help.text" msgid "=AND(A;B) returns FALSE" -msgstr "=ISODD(48) skilar FALSE" +msgstr "=AND(A;B) skilar ร“SATT" #: 04060105.xhp msgctxt "" @@ -12005,7 +12004,7 @@ "45\n" "help.text" msgid "=OR(A;B) returns TRUE" -msgstr "=ISODD(33) skilar TRUE" +msgstr "=OR(A;B) skilar SATT" #: 04060105.xhp msgctxt "" @@ -12014,7 +12013,7 @@ "46\n" "help.text" msgid "=NOT(AND(A;B)) returns TRUE" -msgstr "=ISEVEN(0) skilar TRUE" +msgstr "=NOT(AND(A;B)) skilar SATT" #: 04060105.xhp #, fuzzy @@ -12074,31 +12073,28 @@ msgstr "Dรฆmi" #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3083286\n" "help.text" msgid "=XOR(TRUE;TRUE) returns FALSE" -msgstr "=N(FALSE) skilar 0" +msgstr "=XOR(TRUE;TRUE) skilar ร“SATT" #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3083445\n" "help.text" msgid "=XOR(TRUE;TRUE;TRUE) returns TRUE" -msgstr "=N(FALSE) skilar 0" +msgstr "=XOR(TRUE;TRUE;TRUE) skilar SATT" #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3154315\n" "help.text" msgid "=XOR(FALSE;TRUE) returns TRUE" -msgstr "=N(FALSE) skilar 0" +msgstr "=XOR(TRUE;TRUE) skilar SATT" #: 04060106.xhp msgctxt "" @@ -25121,7 +25117,7 @@ "18\n" "help.text" msgid "=DOLLAR(255) returns $255.00." -msgstr "=YEAR(2) skilar 1900" +msgstr "=DOLLAR(255) skilar $255.00." #: 04060110.xhp msgctxt "" @@ -54686,14 +54682,13 @@ msgstr "" #: 05080200.xhp -#, fuzzy msgctxt "" "05080200.xhp\n" "hd_id3153562\n" "1\n" "help.text" msgid "Clear" -msgstr "Dรกlkur" +msgstr "Hreinsa" #: 05080200.xhp msgctxt "" @@ -56571,13 +56566,12 @@ msgstr "" #: 06050000.xhp -#, fuzzy msgctxt "" "06050000.xhp\n" "par_idN10637\n" "help.text" msgid "" -msgstr "" +msgstr "" #: 06050000.xhp msgctxt "" @@ -59769,7 +59763,7 @@ "1\n" "help.text" msgid "Pivot Table" -msgstr "Prentbil" +msgstr "Veltitafla" #: 12090000.xhp msgctxt "" @@ -59787,7 +59781,7 @@ "3\n" "help.text" msgid "Create" -msgstr "Eyรฐa" +msgstr "Bรบa til" #: 12090000.xhp msgctxt "" @@ -59795,7 +59789,7 @@ "par_idN105FB\n" "help.text" msgid "Pivot table dialog" -msgstr "Prentbil" +msgstr "Veltitรถfluglugginn" #: 12090100.xhp msgctxt "" @@ -59910,7 +59904,7 @@ "par_idN10670\n" "help.text" msgid "Pivot table dialog" -msgstr "Prentbil" +msgstr "Veltitรถfluglugginn" #: 12090101.xhp msgctxt "" @@ -60017,7 +60011,7 @@ "11\n" "help.text" msgid "Pivot table dialog" -msgstr "Prentbil" +msgstr "Veltitรถfluglugginn" #: 12090102.xhp msgctxt "" @@ -62608,7 +62602,7 @@ "hd_id3155511\n" "help.text" msgid "DATEDIF" -msgstr "DAGS" +msgstr "DATEDIF" #: func_datedif.xhp msgctxt "" @@ -62841,7 +62835,7 @@ "18\n" "help.text" msgid "DATEVALUE" -msgstr "DAGS" +msgstr "DATEVALUE" #: func_datevalue.xhp msgctxt "" @@ -63331,7 +63325,7 @@ "213\n" "help.text" msgid "EDATE" -msgstr "DAGS" +msgstr "EDATE" #: func_edate.xhp msgctxt "" @@ -63534,7 +63528,7 @@ "96\n" "help.text" msgid "HOUR" -msgstr "รR" +msgstr "HOUR" #: func_hour.xhp msgctxt "" @@ -63816,7 +63810,7 @@ "240\n" "help.text" msgid "NETWORKDAYS" -msgstr "DAYS" +msgstr "NETWORKDAYS" #: func_networkdays.xhp msgctxt "" @@ -63922,7 +63916,7 @@ "47\n" "help.text" msgid "NOW" -msgstr "DAY" +msgstr "NOW" #: func_now.xhp msgctxt "" @@ -64107,7 +64101,7 @@ "86\n" "help.text" msgid "SECOND" -msgstr "EOMONTH" +msgstr "SECOND" #: func_second.xhp msgctxt "" @@ -64301,7 +64295,7 @@ "160\n" "help.text" msgid "TIMEVALUE" -msgstr "TIME" +msgstr "TIMEVALUE" #: func_timevalue.xhp msgctxt "" @@ -64406,7 +64400,7 @@ "29\n" "help.text" msgid "TODAY" -msgstr "DAY" +msgstr "TODAY" #: func_today.xhp msgctxt "" @@ -64662,7 +64656,7 @@ "136\n" "help.text" msgid "WEEKDAY" -msgstr "DAY" +msgstr "WEEKDAY" #: func_weekday.xhp msgctxt "" @@ -64795,7 +64789,7 @@ "54\n" "help.text" msgid "WEEKNUM" -msgstr "รR" +msgstr "WEEKNUM" #: func_weeknum.xhp msgctxt "" @@ -64918,7 +64912,7 @@ "222\n" "help.text" msgid "WEEKNUM_ADD" -msgstr "รR" +msgstr "WEEKNUM_ADD" #: func_weeknumadd.xhp msgctxt "" @@ -65023,7 +65017,7 @@ "186\n" "help.text" msgid "WORKDAY" -msgstr "DAY" +msgstr "WORKDAY" #: func_workday.xhp msgctxt "" @@ -65226,7 +65220,7 @@ "196\n" "help.text" msgid "YEARFRAC" -msgstr "รR" +msgstr "YEARFRAC" #: func_yearfrac.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/02.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2011-04-05 16:31+0200\n" -"Last-Translator: Sveinn รญ Felli \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-10-14 13:57+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444831042.000000\n" #: 02130000.xhp msgctxt "" @@ -479,7 +480,7 @@ "par_id3153770\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 06040000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/05.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/05.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/05.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2013-02-20 08:04+0000\n" +"PO-Revision-Date: 2015-10-14 13:57+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361347493.000000\n" +"X-POOTLE-MTIME: 1444831057.000000\n" #: 02140000.xhp msgctxt "" @@ -1075,7 +1075,7 @@ "par_id4086428\n" "help.text" msgid "=B1=0 => TRUE" -msgstr "=B1=0 => TRUE" +msgstr "=B1=0 => SATT" #: empty_cells.xhp msgctxt "" @@ -1083,7 +1083,7 @@ "par_id9024628\n" "help.text" msgid "=B1=\"\" => TRUE" -msgstr "=B1=\"\" => TRUE" +msgstr "=B1=\"\" => SATT" #: empty_cells.xhp msgctxt "" @@ -1091,7 +1091,7 @@ "par_id3067110\n" "help.text" msgid "=C1=0 => TRUE" -msgstr "=C1=0 => TRUE" +msgstr "=C1=0 => SATT" #: empty_cells.xhp msgctxt "" @@ -1107,7 +1107,7 @@ "par_id4077578\n" "help.text" msgid "=ISNUMBER(B1) => FALSE" -msgstr "=ISNUMBER(B1) => FALSE" +msgstr "=ISNUMBER(B1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1123,7 +1123,7 @@ "par_id396740\n" "help.text" msgid "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)" -msgstr "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => FALSE (B1)" +msgstr "=ISNUMBER(VLOOKUP(1;A1:C1;2)) => ร“SATT (B1)" #: empty_cells.xhp msgctxt "" @@ -1139,7 +1139,7 @@ "par_id402233\n" "help.text" msgid "=ISTEXT(B1) => FALSE" -msgstr "=ISTEXT(B1) => FALSE" +msgstr "=ISTEXT(B1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1147,7 +1147,7 @@ "par_id1623889\n" "help.text" msgid "=ISTEXT(C1) => FALSE" -msgstr "=ISTEXT(C1) => FALSE" +msgstr "=ISTEXT(C1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1163,7 +1163,7 @@ "par_id300912\n" "help.text" msgid "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)" -msgstr "=ISTEXT(VLOOKUP(1;A1:C1;3)) => FALSE (C1)" +msgstr "=ISTEXT(VLOOKUP(1;A1:C1;3)) => ร“SATT (C1)" #: empty_cells.xhp msgctxt "" @@ -1171,7 +1171,7 @@ "par_id9534592\n" "help.text" msgid "=ISBLANK(B1) => TRUE" -msgstr "=ISBLANK(B1) => TRUE" +msgstr "=ISBLANK(B1) => SATT" #: empty_cells.xhp msgctxt "" @@ -1179,7 +1179,7 @@ "par_id4969328\n" "help.text" msgid "=ISBLANK(C1) => FALSE" -msgstr "=ISBLANK(C1) => FALSE" +msgstr "=ISBLANK(C1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1195,7 +1195,7 @@ "par_id2476577\n" "help.text" msgid "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)" -msgstr "=ISBLANK(VLOOKUP(1;A1:C1;3)) => FALSE (C1)" +msgstr "=ISBLANK(VLOOKUP(1;A1:C1;3)) => ร“SATT (C1)" #: empty_cells.xhp msgctxt "" @@ -1227,7 +1227,7 @@ "par_id4524674\n" "help.text" msgid "=ISNUMBER(A1) => FALSE" -msgstr "=ISNUMBER(A1) => FALSE" +msgstr "=ISNUMBER(A1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1235,7 +1235,7 @@ "par_id4396801\n" "help.text" msgid "=ISTEXT(A1) => FALSE" -msgstr "=ISTEXT(A1) => FALSE" +msgstr "=ISTEXT(A1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1243,7 +1243,7 @@ "par_id5293740\n" "help.text" msgid "=A1=0 => TRUE" -msgstr "=A1=0 => TRUE" +msgstr "=A1=0 => SATT" #: empty_cells.xhp msgctxt "" @@ -1251,7 +1251,7 @@ "par_id7623828\n" "help.text" msgid "=A1=\"\" => TRUE" -msgstr "=A1=\"\" => TRUE" +msgstr "=A1=\"\" => SATT" #: empty_cells.xhp msgctxt "" @@ -1259,7 +1259,7 @@ "par_id2861720\n" "help.text" msgid "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)" -msgstr "=ISNUMBER(B1) => FALSE (MS-Excel: TRUE)" +msgstr "=ISNUMBER(B1) => ร“SATT (MS-Excel: SATT)" #: empty_cells.xhp msgctxt "" @@ -1267,7 +1267,7 @@ "par_id9604480\n" "help.text" msgid "=ISTEXT(B1) => FALSE" -msgstr "=ISTEXT(B1) => FALSE" +msgstr "=ISTEXT(B1) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1275,7 +1275,7 @@ "par_id2298959\n" "help.text" msgid "=B1=0 => TRUE" -msgstr "=B1=0 => TRUE" +msgstr "=B1=0 => SATT" #: empty_cells.xhp msgctxt "" @@ -1283,7 +1283,7 @@ "par_id4653767\n" "help.text" msgid "=B1=\"\" => TRUE (MS-Excel: FALSE)" -msgstr "=B1=\"\" => TRUE (MS-Excel: FALSE)" +msgstr "=B1=\"\" => SATT (MS-Excel: ร“SATT)" #: empty_cells.xhp msgctxt "" @@ -1299,7 +1299,7 @@ "par_id6746421\n" "help.text" msgid "=ISNUMBER(VLOOKUP(...)) => FALSE" -msgstr "=ISNUMBER(VLOOKUP(...)) => FALSE" +msgstr "=ISNUMBER(VLOOKUP(...)) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1307,7 +1307,7 @@ "par_id4876247\n" "help.text" msgid "=ISTEXT(VLOOKUP(...)) => FALSE" -msgstr "=ISTEXT(VLOOKUP(...)) => FALSE" +msgstr "=ISTEXT(VLOOKUP(...)) => ร“SATT" #: empty_cells.xhp msgctxt "" @@ -1315,7 +1315,7 @@ "par_id7458723\n" "help.text" msgid "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)" -msgstr "=ISNUMBER(C1) => FALSE (MS-Excel: TRUE)" +msgstr "=ISNUMBER(C1) => ร“SATT (MS-Excel: SATT)" #: empty_cells.xhp msgctxt "" @@ -1323,4 +1323,4 @@ "par_id2753379\n" "help.text" msgid "=ISTEXT(C1) => FALSE" -msgstr "=ISTEXT(C1) => FALSE" +msgstr "=ISTEXT(C1) => ร“SATT" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/scalc/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/scalc/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 16:32+0000\n" +"PO-Revision-Date: 2015-10-14 14:02+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439483579.000000\n" +"X-POOTLE-MTIME: 1444831330.000000\n" #: address_auto.xhp msgctxt "" @@ -553,7 +553,7 @@ "28\n" "help.text" msgid "Format - AutoFormat" -msgstr "Markaleit" +msgstr "Snรญรฐa - Snรญรฐa sjรกlfvirkt" #: background.xhp msgctxt "" @@ -3492,7 +3492,7 @@ "21\n" "help.text" msgid "Export text files" -msgstr "Flytja inn textaskrรกr" +msgstr "Flytja รบt textaskrรกr" #: csv_files.xhp msgctxt "" @@ -3697,7 +3697,7 @@ "21\n" "help.text" msgid "Export text files" -msgstr "Flytja inn textaskrรกr" +msgstr "Flytja รบt textaskrรกr" #: csv_formula.xhp msgctxt "" @@ -10053,7 +10053,7 @@ "12\n" "help.text" msgid "Optimal row height" -msgstr "Dรกlkabreidd" +msgstr "Besta hรฆรฐ raรฐa" #: row_height.xhp msgctxt "" @@ -10071,7 +10071,7 @@ "14\n" "help.text" msgid "Optimal column width" -msgstr "Dรกlkabreidd" +msgstr "Besta breidd dรกlka" #: scenario.xhp msgctxt "" @@ -11245,7 +11245,7 @@ "7\n" "help.text" msgid "Format - Cells" -msgstr "Markaleit" +msgstr "Snรญรฐa - Reiti" #: text_rotate.xhp msgctxt "" @@ -11324,7 +11324,7 @@ "46\n" "help.text" msgid "Format - Cell" -msgstr "Markaleit" +msgstr "Snรญรฐa - Reiti" #: userdefined_function.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/schart/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/schart/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:14+0200\n" -"PO-Revision-Date: 2011-04-05 16:31+0200\n" -"Last-Translator: Sveinn รญ Felli \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-14 09:55+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444816502.000000\n" #: 03010000.xhp msgctxt "" @@ -1772,7 +1773,7 @@ "par_id4562211\n" "help.text" msgid "Y Error Bars tab page" -msgstr "Y-villusรบlur" +msgstr "Flipasรญรฐa fyrir Y-villusรบlur" #: 04060000.xhp msgctxt "" @@ -2542,7 +2543,7 @@ "5\n" "help.text" msgid "X-axis title" -msgstr "X-รกs" +msgstr "Titill รก X-รกs" #: 05020000.xhp msgctxt "" @@ -2551,7 +2552,7 @@ "6\n" "help.text" msgid "Y-axis title" -msgstr "Y รกs" +msgstr "Titill รก Y-รกs" #: 05020000.xhp msgctxt "" @@ -2560,7 +2561,7 @@ "7\n" "help.text" msgid "Z-axis title" -msgstr "Z-รกs" +msgstr "Titill รก Z-รกs" #: 05020000.xhp msgctxt "" @@ -2569,7 +2570,7 @@ "8\n" "help.text" msgid "All titles" -msgstr "X-รกs" +msgstr "Allir titlar" #: 05020100.xhp msgctxt "" @@ -3587,7 +3588,7 @@ "1\n" "help.text" msgid "Positioning" -msgstr "Valkostir" +msgstr "Staรฐsetning" #: 05040202.xhp msgctxt "" @@ -3881,7 +3882,7 @@ "9\n" "help.text" msgid "All Axis Grids" -msgstr "X-รกs" +msgstr "ร–ll hnitanet รกsa" #: 05050100.xhp msgctxt "" @@ -4153,7 +4154,7 @@ "par_id2586138\n" "help.text" msgid "Column or Bar" -msgstr "Sรบlu- og lรญnurit" +msgstr "Sรบlur eรฐa stรถplar" #: choose_chart_type.xhp msgctxt "" @@ -4217,7 +4218,7 @@ "par_id5882747\n" "help.text" msgid "XY (scatter)" -msgstr "Kรถkurit" +msgstr "XY (dreifing)" #: choose_chart_type.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 16:48+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-19 05:32+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439484515.000000\n" +"X-POOTLE-MTIME: 1445232741.000000\n" #: 00000001.xhp msgctxt "" @@ -300,13 +300,12 @@ msgstr "" #: 00000001.xhp -#, fuzzy msgctxt "" "00000001.xhp\n" "par_id3157808\n" "help.text" msgid "Icon " -msgstr "Tรกknmynd" +msgstr "Tรกknmynd " #: 00000001.xhp msgctxt "" @@ -318,13 +317,12 @@ msgstr "Minnka" #: 00000001.xhp -#, fuzzy msgctxt "" "00000001.xhp\n" "par_id3153349\n" "help.text" msgid "Icon " -msgstr "Tรกknmynd" +msgstr "Tรกknmynd " #: 00000001.xhp msgctxt "" @@ -1851,7 +1849,7 @@ "26\n" "help.text" msgid "Developed by the French mathematician Pierre Bรฉzier, a Bรฉzier curve is a mathematically defined curve used in two-dimensional graphic applications. The curve is defined by four points: the initial position and the terminating position, and two separate middle points. Bรฉzier objects can be modified by moving these points with the mouse." -msgstr "" +msgstr "รžrรณaรฐ af franska stรฆrรฐfrรฆรฐingnum Pierre Bรฉzier, telst Bรฉzier-ferill vera stรฆrรฐfrรฆรฐilega skilgreindur ferill eรฐa sveiglรญna, sem notuรฐ er รญ tvรญvรญรฐum myndvinnslu- og teikniforritum. Ferillinn er skilgreindur meรฐ amk. fjรณrum punktum: upphafs- og endapunktum auk tveggja aรฐskilinna punkta รก milli. Bรฉzier-hlutum mรก breyta meรฐ รพvรญ aรฐ fรฆra รพessa punkta til meรฐ mรบsinni." #: 00000005.xhp msgctxt "" @@ -1895,7 +1893,7 @@ "168\n" "help.text" msgid "The text direction is from right to left." -msgstr "" +msgstr "Textastefnan er frรก hรฆgri-til-vinstri." #: 00000005.xhp msgctxt "" @@ -1965,7 +1963,7 @@ "156\n" "help.text" msgid "Direct and Style Formatting" -msgstr "" +msgstr "Handvirk sniรฐ og snรญรฐing meรฐ stรญlum" #: 00000005.xhp msgctxt "" @@ -2378,7 +2376,7 @@ "92\n" "help.text" msgid "Portable Network Graphics (PNG) is a graphic file format. The files are compressed with a selectable compression factor, and, as opposed to the JPG format, PNG files are always compressed without any information loss." -msgstr "" +msgstr "Portable Network Graphics (PNG) er grafรญskt skrรกasniรฐ. Skrรกrnar eru รพjappaรฐar meรฐ valkvรฆmu รพjรถppunargildi, og รณlรญkt JPG myndum, er PNG skrรกm alltaf รพjappaรฐ รกn รพess aรฐ neinar upplรฝsingar tapist." #: 00000005.xhp msgctxt "" @@ -4120,13 +4118,12 @@ msgstr "" #: 00000021.xhp -#, fuzzy msgctxt "" "00000021.xhp\n" "par_idN10AC5\n" "help.text" msgid "Document Converter Wizard" -msgstr "Skjalaumbreytingarleiรฐsรถgn" +msgstr "Skjalaumbreytingarleiรฐsรถgn" #: 00000099.xhp msgctxt "" @@ -4294,13 +4291,12 @@ msgstr "Hรฆรฐ" #: 00000200.xhp -#, fuzzy msgctxt "" "00000200.xhp\n" "par_id3147226\n" "help.text" msgid "Specifies the height." -msgstr "Tiltekur hรฆรฐina." +msgstr "Tiltekur hรฆรฐina." #: 00000200.xhp msgctxt "" @@ -5796,7 +5792,7 @@ "160\n" "help.text" msgid "Choose File - New - Labels" -msgstr "Veldu Skrรก - Vista sem" +msgstr "Veldu Skrรก - Nรฝtt - Merkimiรฐar" #: 00000401.xhp msgctxt "" @@ -5805,7 +5801,7 @@ "161\n" "help.text" msgid "Choose File - New - Labels - Labels tab" -msgstr "Veldu Skrรก - Vista sem" +msgstr "Veldu Skrรก - Nรฝtt - Merkimiรฐar - Merkimiรฐar" #: 00000401.xhp msgctxt "" @@ -5850,7 +5846,7 @@ "166\n" "help.text" msgid "Choose File - New - Business Cards" -msgstr "Veldu Skrรก - Vista sem" +msgstr "Veldu Skrรก - Nรฝtt - Nafnspjรถld" #: 00000401.xhp msgctxt "" @@ -6641,13 +6637,12 @@ msgstr "Tรกknmynd" #: 00000401.xhp -#, fuzzy msgctxt "" "00000401.xhp\n" "par_idN11384\n" "help.text" msgid "Print Preview" -msgstr "Forskoรฐa prentun" +msgstr "Prentskoรฐun" #: 00000401.xhp msgctxt "" @@ -7020,13 +7015,12 @@ msgstr "" #: 00000402.xhp -#, fuzzy msgctxt "" "00000402.xhp\n" "par_id3145173\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 00000402.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-13 17:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-19 05:43+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439485624.000000\n" +"X-POOTLE-MTIME: 1445233386.000000\n" #: 01010000.xhp msgctxt "" @@ -410,7 +410,7 @@ "par_idN1096F\n" "help.text" msgid "Opening documents" -msgstr "Opna skjรถl" +msgstr "Opna skjรถl" #: 01010000.xhp msgctxt "" @@ -469,13 +469,12 @@ msgstr "" #: 01010000.xhp -#, fuzzy msgctxt "" "01010000.xhp\n" "par_idN10A88\n" "help.text" msgid "Creates a new master document." -msgstr "Stรฝriskjal" +msgstr "Bรฝr til nรฝtt stรฝriskjal." #: 01010000.xhp msgctxt "" @@ -541,7 +540,7 @@ "par_id3149828\n" "help.text" msgid "Navigator for Master Documents" -msgstr "Bรบa til stรฝriskjal (master)" +msgstr "Yfirsรฝn fyrir stรฝriskjรถl (master documents)" #: 01010100.xhp msgctxt "" @@ -700,7 +699,7 @@ "9\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 01010100.xhp msgctxt "" @@ -718,7 +717,7 @@ "108\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 01010100.xhp msgctxt "" @@ -832,7 +831,7 @@ "par_id3149379\n" "help.text" msgid "File properties" -msgstr "Sรฉrsniรฐnir eiginleikar" +msgstr "Skrรกaeiginleikar" #: 01010200.xhp msgctxt "" @@ -1787,7 +1786,7 @@ "6\n" "help.text" msgid "AutoText - Section" -msgstr "Sjรกlfvirkur texti - Kafli" +msgstr "Sjรกlfvirkur texti - Efnishluti" #: 01010302.xhp msgctxt "" @@ -3740,7 +3739,7 @@ "2\n" "help.text" msgid "Displays statistics for the current file." -msgstr "" +msgstr "Birtir tรถlfrรฆรฐi fyrir รพetta skjal." #: 01100400.xhp msgctxt "" @@ -3767,7 +3766,7 @@ "4\n" "help.text" msgid "Number of pages in the file." -msgstr "" +msgstr "Fjรถldi sรญรฐa รญ skjalinu." #: 01100400.xhp msgctxt "" @@ -3776,7 +3775,7 @@ "5\n" "help.text" msgid "Tables: Number of Sheets: " -msgstr "" +msgstr "Tรถflur: Fjรถldi blaรฐa: " #: 01100400.xhp msgctxt "" @@ -3824,14 +3823,13 @@ msgstr "" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3147618\n" "9\n" "help.text" msgid "OLE Objects: " -msgstr "OLE hlutir" +msgstr "OLE-hlutir: " #: 01100400.xhp msgctxt "" @@ -3843,14 +3841,13 @@ msgstr "" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3153665\n" "11\n" "help.text" msgid "Paragraphs: " -msgstr "Mรกlsgreinar" +msgstr "Mรกlsgreinar: " #: 01100400.xhp msgctxt "" @@ -3862,34 +3859,31 @@ msgstr "Fjรถldi lรญna:" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3155261\n" "13\n" "help.text" msgid "Words: " -msgstr "Orรฐ" +msgstr "Orรฐ: " #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "par_id3147402\n" "14\n" "help.text" msgid "Number of words (including words consisting of a single character) in the file. " -msgstr "Fjรถldi lรญna:" +msgstr "Fjรถldi orรฐa (aรฐ meรฐtรถldum orรฐum sem hafa bara einn staf) รญ skrรกnni. " #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3150466\n" "15\n" "help.text" msgid "Characters: " -msgstr "Stafir" +msgstr "Stafir: " #: 01100400.xhp msgctxt "" @@ -3901,14 +3895,13 @@ msgstr "" #: 01100400.xhp -#, fuzzy msgctxt "" "01100400.xhp\n" "hd_id3148947\n" "32\n" "help.text" msgid "Lines: " -msgstr "Lรญnur" +msgstr "Lรญnur: " #: 01100400.xhp msgctxt "" @@ -3935,7 +3928,7 @@ "35\n" "help.text" msgid "Updates the statistics." -msgstr "" +msgstr "Uppfรฆrir tรถlfrรฆรฐina." #: 01100600.xhp msgctxt "" @@ -4211,13 +4204,12 @@ msgstr "" #: 01110300.xhp -#, fuzzy msgctxt "" "01110300.xhp\n" "tit\n" "help.text" msgid "Saving (Templates)" -msgstr "Sniรฐmรกt" +msgstr "Vista (sniรฐmรกt)" #: 01110300.xhp msgctxt "" @@ -4427,7 +4419,7 @@ "par_id0818200912531416\n" "help.text" msgid "Printing text documents:" -msgstr "" +msgstr "Prenta textaskjรถl:" #: 01130000.xhp msgctxt "" @@ -4435,7 +4427,7 @@ "par_id0818200912531487\n" "help.text" msgid "Printing spreadsheets:" -msgstr "" +msgstr "Prenta tรถflureikninga:" #: 01130000.xhp msgctxt "" @@ -4443,7 +4435,7 @@ "par_id0818200912531410\n" "help.text" msgid "Printing presentations:" -msgstr "" +msgstr "Prenta kynningar:" #: 01130000.xhp msgctxt "" @@ -4451,7 +4443,7 @@ "par_id0818200912531449\n" "help.text" msgid "General printing:" -msgstr "" +msgstr "Almenn prentun:" #: 01130000.xhp msgctxt "" @@ -4500,7 +4492,7 @@ "hd_id0818200912284914\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 01130000.xhp msgctxt "" @@ -4543,40 +4535,36 @@ msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id6\n" "help.text" msgid "Enable this option to print text that is marked as hidden." -msgstr "Virkjaรฐu รพennan valkost til aรฐ prenta texta sem er merktur sem falinn." +msgstr "Virkjaรฐu รพennan valkost til aรฐ prenta texta sem er merktur sem falinn." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id8\n" "help.text" msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout." -msgstr "Virkjaรฐu รพennan valkost til aรฐ prenta textastaรฐgengla. Taktu รพetta af til aรฐ textastaรฐgenglar prentist รบt tรณmir." +msgstr "Virkjaรฐu รพennan valkost til aรฐ prenta frรกtรถkutรกkn fyrir texta. Taktu รพetta af til aรฐ textafrรกtรถkutรกknin prentist รบt tรณm." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id10\n" "help.text" msgid "Specifies whether the form control fields of the text document are printed." -msgstr "Tilgreinir hvort eyรฐublaรฐastรฝringar รก textaskjali verรฐa prentaรฐar" +msgstr "Tilgreinir hvort eyรฐublaรฐastรฝringar รก textaskjali verรฐa prentaรฐar." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id12\n" "help.text" msgid "Specifies whether to always print text in black." -msgstr "Tilgreinir hvort alltaf eigi aรฐ prenta texta meรฐ svรถrtum lit." +msgstr "Tilgreinir hvort alltaf eigi aรฐ prenta texta meรฐ svรถrtum lit." #: 01130000.xhp msgctxt "" @@ -4584,34 +4572,31 @@ "par_id14\n" "help.text" msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page." -msgstr "" +msgstr "Ef รพessi mรถguleiki er virkur, eru sjรกlfvirkt innsettar auรฐar sรญรฐur prentaรฐar. รžetta er best ef รพรบ ert aรฐ prenta รก bรกรฐar hliรฐar blaรฐsรญรฐna. Til dรฆmis, ef veriรฐ er aรฐ vinna meรฐ bรณk mรฆtti bรบa til mรกlsgreinastรญl meรฐ heitinu \"kafli\" og er hann รพรก stilltur รพannig aรฐ hann byrji alltaf รก sรญรฐu meรฐ oddatรถlu. Ef kaflinn รก undan endar รก blaรฐsรญรฐu meรฐ oddatรถlu mun %PRODUCTNAME setja inn auรฐa sรญรฐu meรฐ jรถfnu blaรฐsรญรฐunรบmeri. รžessi mรถguleiki stรฝrir hvort prenta eigi slรญka sรญรฐu eรฐa ekki." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id16\n" "help.text" msgid "Specify where to print comments (if any)." -msgstr "Tilgreindu hvar eigi aรฐ prenta athugasemdir (ef einhverjar)." +msgstr "Tilgreindu hvar eigi aรฐ prenta athugasemdir (ef einhverjar)." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id18\n" "help.text" msgid "Specify where to print comments (if any)." -msgstr "Tilgreindu hvar eigi aรฐ prenta athugasemdir (ef einhverjar)." +msgstr "Tilgreindu hvar eigi aรฐ prenta athugasemdir (ef einhverjar)." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id20\n" "help.text" msgid "Specifies whether you want the name of the document to be included in the printout." -msgstr "Skilgreinir hvort nafniรฐ รก skjalinu sรฉ meรฐ รญ รบtprentun" +msgstr "Tilgreinir hvort nafniรฐ รก skjalinu eigi aรฐ vera meรฐ รญ รบtprentun." #: 01130000.xhp #, fuzzy @@ -4729,22 +4714,20 @@ msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id38\n" "help.text" msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead." -msgstr "Check to not rely on the printer to create collated copies but create a print job for each copy instead." +msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id40\n" "help.text" msgid "Check to print pages in reverse order." -msgstr "Check to print pages in reverse order." +msgstr "Virkjaรฐu รพennan valkost til aรฐ prenta sรญรฐur รญ รถfugri rรถรฐ." #: 01130000.xhp msgctxt "" @@ -4774,13 +4757,12 @@ msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id42\n" "help.text" msgid "Show/Hide detailed information of the selected printer." -msgstr "Show/Hide detailed information of the selected printer." +msgstr "" #: 01130000.xhp msgctxt "" @@ -4827,94 +4809,84 @@ msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id50\n" "help.text" msgid "Check to draw a border around each page." -msgstr "Check to draw a border around each page." +msgstr "Virkjaรฐu รพennan valkost til aรฐ teikna jaรฐar utan um hverja sรญรฐu." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id52\n" "help.text" msgid "Select order in which pages are to be printed." -msgstr "Select order in which pages are to be printed." +msgstr "Veldu รญ hvaรฐa rรถรฐ รก aรฐ prenta sรญรฐur." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id54\n" "help.text" msgid "Select the orientation of the paper." -msgstr "Select the orientation of the paper." +msgstr "Veldu stefnu pappรญrsins." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id56\n" "help.text" msgid "Select margin between the printed pages and paper edge." -msgstr "Select margin between the printed pages and paper edge." +msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id58\n" "help.text" msgid "Select margin between individual pages on each sheet of paper." -msgstr "Select margin between individual pages on each sheet of paper." +msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id60\n" "help.text" msgid "Select number of rows." -msgstr "Select number of rows." +msgstr "Veldu fjรถlda raรฐa." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id62\n" "help.text" msgid "Select number of columns." -msgstr "Select number of columns." +msgstr "Veldu fjรถlda dรกlka." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id64\n" "help.text" msgid "Select how many pages to print per sheet of paper." -msgstr "Select how many pages to print per sheet of paper." +msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id66\n" "help.text" msgid "Print multiple pages per sheet of paper." -msgstr "Print multiple pages per sheet of paper." +msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id68\n" "help.text" msgid "Select which parts of the document should be printed." -msgstr "Velur hvaรฐa hluta skjalsins eigi aรฐ prenta" +msgstr "Velur hvaรฐa hluta skjalsins eigi aรฐ prenta." #: 01130000.xhp #, fuzzy @@ -4985,40 +4957,36 @@ msgstr "" #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id86\n" "help.text" msgid "Specify how to scale slides in the printout." -msgstr "Tilgreinir hvernig kvarรฐa eigi skyggnur รญ รบtprentun." +msgstr "Tilgreinir hvernig kvarรฐa eigi skyggnur รญ รบtprentun." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id88\n" "help.text" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "Tilgreinir aรฐ รพรบ viljir ekki kvarรฐa sรญรฐur meira รญ รบtprentun." +msgstr "Tilgreinir aรฐ รพรบ viljir ekki kvarรฐa sรญรฐur meira รญ รบtprentun." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id90\n" "help.text" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer." -msgstr "Tilgreinir hvort kvarรฐa eigi niรฐur hluti sem eru utan prentanlegra spรกssรญa รก tilteknum prentara, รพannig aรฐ รพeir passi รก pappรญrinn รญ prentaranum." +msgstr "Tilgreinir hvort kvarรฐa eigi niรฐur hluti sem eru utan prentanlegra spรกssรญa รก tilteknum prentara, รพannig aรฐ รพeir passi รก pappรญrinn รญ prentaranum." #: 01130000.xhp -#, fuzzy msgctxt "" "01130000.xhp\n" "par_id92\n" "help.text" msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper." -msgstr "Tilgreinir aรฐ sรญรฐurnar verรฐi prentaรฐar flรญsalagt. Ef sรญรฐur eรฐa skyggnur eru minni en pappรญrinn eru nokkrar sรญรฐur eรฐa skyggnur prentaรฐar รก hverja blaรฐsรญรฐu." +msgstr "Tilgreinir aรฐ sรญรฐurnar verรฐi prentaรฐar flรญsalagt. Ef sรญรฐur eรฐa skyggnur eru minni en pappรญrinn eru nokkrar sรญรฐur eรฐa skyggnur prentaรฐar รก hverja blaรฐsรญรฐu." #: 01130000.xhp msgctxt "" @@ -5026,7 +4994,7 @@ "hd_id0818200912285074\n" "help.text" msgid "%PRODUCTNAME Writer / Calc / Impress / Draw / Math" -msgstr "" +msgstr "%PRODUCTNAME Writer / Calc / Impress / Draw / Math" #: 01130000.xhp msgctxt "" @@ -5971,7 +5939,7 @@ "11\n" "help.text" msgid "You can cancel the Undo command by choosing Edit - Redo." -msgstr "" +msgstr "รžรบ getur snรบiรฐ viรฐ Afturkalla-aรฐgerรฐinni meรฐ รพvรญ aรฐ velja Breyta - Gera aftur. " #: 02010000.xhp msgctxt "" @@ -6024,7 +5992,7 @@ "tit\n" "help.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: 02020000.xhp msgctxt "" @@ -6041,7 +6009,7 @@ "1\n" "help.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: 02020000.xhp msgctxt "" @@ -6050,7 +6018,7 @@ "2\n" "help.text" msgid "Reverses the action of the last Undo command. To select the Undo step that you want to reverse, click the arrow next to the Redo icon on the Standard bar." -msgstr "Snรฝr viรฐ aรฐgerรฐinni sem framkvรฆmd var meรฐ Afturkalla skipuninni. Til aรฐ velja hvaรฐa รพrep รญAfturkalla skipuninni รพรบ vilt snรบa viรฐ, smelltu รพรก รก รถrina nรฆst Endurtaka tรกknmyndinni รก stรถรฐluรฐu รกhaldastikunni." +msgstr "Snรฝr viรฐ aรฐgerรฐinni sem framkvรฆmd var meรฐ Afturkalla skipuninni. Til aรฐ velja hvaรฐa รพrep รญAfturkalla skipuninni รพรบ vilt snรบa viรฐ, smelltu รพรก รก รถrina nรฆst Gera aftur tรกknmyndinni รก stรถรฐluรฐu รกhaldastikunni." #: 02030000.xhp msgctxt "" @@ -7724,14 +7692,13 @@ msgstr "" #: 02100001.xhp -#, fuzzy msgctxt "" "02100001.xhp\n" "par_id3150670\n" "35\n" "help.text" msgid "\\b" -msgstr "B" +msgstr "\\b" #: 02100001.xhp msgctxt "" @@ -9158,23 +9125,21 @@ msgstr "Eigindi" #: 02110000.xhp -#, fuzzy msgctxt "" "02110000.xhp\n" "tit\n" "help.text" msgid "Navigator for Master Documents" -msgstr "Bรบa til stรฝriskjal (master)" +msgstr "Yfirsรฝn fyrir stรฝriskjรถl" #: 02110000.xhp -#, fuzzy msgctxt "" "02110000.xhp\n" "hd_id3153391\n" "1\n" "help.text" msgid "Navigator for Master Documents" -msgstr "Bรบa til stรฝriskjal (master)" +msgstr "Yfirsรฝn fyrir stรฝriskjรถl (master documents)" #: 02110000.xhp msgctxt "" @@ -9971,7 +9936,7 @@ "9\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: 02180100.xhp msgctxt "" @@ -11274,14 +11239,13 @@ msgstr "Sรฝna" #: 02230000.xhp -#, fuzzy msgctxt "" "02230000.xhp\n" "hd_id3153527\n" "4\n" "help.text" msgid "Manage Changes" -msgstr "Sรฝsla ~meรฐ breytingar..." +msgstr "Sรฝsla meรฐ breytingar" #: 02230000.xhp #, fuzzy @@ -14029,7 +13993,7 @@ "8\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 04140000.xhp msgctxt "" @@ -14076,14 +14040,13 @@ msgstr "OLE hlutur" #: 04150000.xhp -#, fuzzy msgctxt "" "04150000.xhp\n" "hd_id3159201\n" "6\n" "help.text" msgid "Audio" -msgstr "Hljรณรฐ" +msgstr "Hljรณรฐ" #: 04150000.xhp msgctxt "" @@ -14653,14 +14616,13 @@ msgstr "" #: 05010000.xhp -#, fuzzy msgctxt "" "05010000.xhp\n" "hd_id3153391\n" "1\n" "help.text" msgid "Clear Direct Formatting" -msgstr "~Hreinsa handvirk sniรฐ" +msgstr "Hreinsa handvirk sniรฐ" #: 05010000.xhp msgctxt "" @@ -20606,7 +20568,7 @@ "21\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 05030600.xhp msgctxt "" @@ -27029,7 +26991,7 @@ "9\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 05210700.xhp msgctxt "" @@ -29851,7 +29813,7 @@ "9\n" "help.text" msgid "Animation effects" -msgstr "Lรญfgunarhrif" +msgstr "Hreyfingabrellur" #: 05320000.xhp msgctxt "" @@ -32080,7 +32042,7 @@ "18\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: 05350400.xhp msgctxt "" @@ -42104,7 +42066,7 @@ "17\n" "help.text" msgid "Preview" -msgstr "Sรฝnishorn" +msgstr "Forskoรฐun" #: gallery_files.xhp msgctxt "" @@ -45126,7 +45088,7 @@ "tit\n" "help.text" msgid "Preview in Web Browser" -msgstr "Sรฝna รญ vefskoรฐara" +msgstr "Forskoรฐa รญ vafra" #: webhtml.xhp msgctxt "" @@ -45134,7 +45096,7 @@ "hd_id3901181\n" "help.text" msgid "Preview in Web Browser" -msgstr "Sรฝna รญ vefskoรฐara" +msgstr "Forskoรฐa รญ vafra" #: webhtml.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-26 15:50+0000\n" +"PO-Revision-Date: 2015-10-05 09:19+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440604256.000000\n" +"X-POOTLE-MTIME: 1444036742.000000\n" #: 01110000.xhp msgctxt "" @@ -18124,7 +18124,7 @@ "6\n" "help.text" msgid "Grayscale" -msgstr "Grรกskali" +msgstr "Grรกtรณna" #: 24020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/04.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/04.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/04.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/04.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-26 15:45+0000\n" +"PO-Revision-Date: 2015-10-14 15:01+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440603943.000000\n" +"X-POOTLE-MTIME: 1444834865.000000\n" #: 01010000.xhp msgctxt "" @@ -1043,7 +1043,7 @@ "352\n" "help.text" msgid "Redoes last action." -msgstr "" +msgstr "Gerir aftur sรญรฐustu aรฐgerรฐ" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/autopi.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 17:20+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 13:10+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439486443.000000\n" +"X-POOTLE-MTIME: 1445001013.000000\n" #: 01000000.xhp msgctxt "" @@ -872,7 +872,7 @@ "par_idN10682\n" "help.text" msgid "Use placeholders for recipient's address" -msgstr "Nota breytur fyrir heimilisfang mรณttakanda" +msgstr "Nota frรกtรถkutรกkn fyrir heimilisfang mรณttakanda" #: 01010400.xhp msgctxt "" @@ -1091,7 +1091,7 @@ "par_idN10665\n" "help.text" msgid "Letter Wizard overview" -msgstr "Leiรฐsรถguforrit" +msgstr "Yfirlit um brรฉfaleiรฐarvรญsir" #: 01020000.xhp msgctxt "" @@ -1525,7 +1525,7 @@ "par_idN105F9\n" "help.text" msgid "Use placeholders as receiver address" -msgstr "Nota breytur fyrir heimilisfang mรณttakanda" +msgstr "Nota frรกtรถkutรกkn fyrir heimilisfang mรณttakanda" #: 01020300.xhp msgctxt "" @@ -2752,7 +2752,7 @@ "21\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: 01050100.xhp msgctxt "" @@ -9414,7 +9414,7 @@ "par_idN10588\n" "help.text" msgid "Web Wizard - Preview" -msgstr "Vefleiรฐsagnarforrit" +msgstr "Vefleiรฐsagnarforrit - Forskoรฐun" #: webwizard07.xhp msgctxt "" @@ -9422,7 +9422,7 @@ "tit\n" "help.text" msgid "Web Wizard - Preview" -msgstr "" +msgstr "Vefleiรฐsagnarforrit - Forskoรฐun" #: webwizard07.xhp msgctxt "" @@ -9430,7 +9430,7 @@ "par_idN10544\n" "help.text" msgid "Web Wizard - Preview" -msgstr "Vefleiรฐsagnarforrit" +msgstr "Vefleiรฐsagnarforrit - Forskoรฐun" #: webwizard07.xhp msgctxt "" @@ -9446,7 +9446,7 @@ "par_idN10557\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: webwizard07.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/explorer/database.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 17:26+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-19 05:26+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439486770.000000\n" +"X-POOTLE-MTIME: 1445232361.000000\n" #: 02000000.xhp msgctxt "" @@ -505,7 +505,7 @@ "par_id8554338\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: 02010100.xhp msgctxt "" @@ -2262,7 +2262,7 @@ "101\n" "help.text" msgid "= TRUE" -msgstr "= TRUE" +msgstr "= SATT" #: 02010100.xhp msgctxt "" @@ -2271,7 +2271,7 @@ "102\n" "help.text" msgid "= TRUE" -msgstr "= TRUE" +msgstr "= SATT" #: 02010100.xhp msgctxt "" @@ -2298,7 +2298,7 @@ "105\n" "help.text" msgid "= FALSE" -msgstr "= FALSE" +msgstr "= ร“SATT" #: 02010100.xhp msgctxt "" @@ -2307,7 +2307,7 @@ "106\n" "help.text" msgid "= FALSE" -msgstr "= FALSE" +msgstr "= ร“SATT" #: 02010100.xhp msgctxt "" @@ -2607,13 +2607,12 @@ msgstr "{d 'YYYY-MM-DD'}" #: 02010100.xhp -#, fuzzy msgctxt "" "02010100.xhp\n" "par_id314975314\n" "help.text" msgid "'YYYY-MM-DD'" -msgstr "{D'YYYY-MM-DD'}" +msgstr "'YYYY-MM-DD'" #: 02010100.xhp msgctxt "" @@ -3246,7 +3245,7 @@ "24\n" "help.text" msgid "Form in Design Mode" -msgstr "Tรถfluhรถnnun" +msgstr "Eyรฐublaรฐ รญ hรถnnunarham" #: 04000000.xhp msgctxt "" @@ -3440,7 +3439,7 @@ "1\n" "help.text" msgid "Table Context Menus" -msgstr "Tรถfluhรถnnun" +msgstr "Samhengisvalmyndir tรถflu" #: 05000001.xhp msgctxt "" @@ -5828,7 +5827,7 @@ "1\n" "help.text" msgid "ODBC" -msgstr "Eyรฐublรถรฐ" +msgstr "ODBC" #: 11020000.xhp msgctxt "" @@ -6070,7 +6069,7 @@ "1\n" "help.text" msgid "dBASE" -msgstr "Atriรฐaskrรกr" +msgstr "dBASE" #: 11030000.xhp msgctxt "" @@ -8339,7 +8338,7 @@ "par_idN1054D\n" "help.text" msgid "Connection Type Wizard" -msgstr "Valfrjรกlsar stillingar" +msgstr "Leiรฐsagnarforrit tenginga" #: dabapropcon.xhp msgctxt "" @@ -8779,7 +8778,7 @@ "par_idN105F2\n" "help.text" msgid "Set up text file connection" -msgstr "Setja upp ADO tengingu" +msgstr "Setja upp textatengingu" #: dabawiz00.xhp msgctxt "" @@ -8843,7 +8842,7 @@ "par_idN1065B\n" "help.text" msgid "MySQL settings" -msgstr "Sรฉrstakar stillingar" +msgstr "MySQL stillingar" #: dabawiz00.xhp msgctxt "" @@ -9019,7 +9018,7 @@ "par_idN1061C\n" "help.text" msgid "Set up text file connection" -msgstr "Setja upp ADO tengingu" +msgstr "Setja upp textatengingu" #: dabawiz01.xhp msgctxt "" @@ -9067,7 +9066,7 @@ "par_idN10685\n" "help.text" msgid "MySQL settings" -msgstr "Sรฉrstakar stillingar" +msgstr "MySQL stillingar" #: dabawiz01.xhp msgctxt "" @@ -9203,7 +9202,7 @@ "par_idN1053D\n" "help.text" msgid "Microsoft Access Connection" -msgstr "ADO tenging" +msgstr "Microsoft Access tenging" #: dabawiz02access.xhp msgctxt "" @@ -9283,7 +9282,7 @@ "par_idN1053A\n" "help.text" msgid "Adabas D Connection" -msgstr "ADO tenging" +msgstr "Adabas D tenging" #: dabawiz02adabas.xhp msgctxt "" @@ -9523,7 +9522,7 @@ "par_idN1054A\n" "help.text" msgid "dBASE Connection" -msgstr "ADO tenging" +msgstr "dBASE tenging" #: dabawiz02dbase.xhp msgctxt "" @@ -11860,7 +11859,7 @@ "par_idN10598\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: menuview.xhp msgctxt "" @@ -12124,7 +12123,7 @@ "par_idN105D2\n" "help.text" msgid "Query Wizard - Field selection" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Val gagnasviรฐs" #: querywizard01.xhp msgctxt "" @@ -12140,7 +12139,7 @@ "par_idN10546\n" "help.text" msgid "Query Wizard - Field Selection" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Val gagnasviรฐs" #: querywizard01.xhp msgctxt "" @@ -12188,7 +12187,7 @@ "par_idN10597\n" "help.text" msgid "Query Wizard - Sorting order" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Rรถรฐun" #: querywizard02.xhp msgctxt "" @@ -12204,7 +12203,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Sorting Order" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Rรถรฐun" #: querywizard02.xhp msgctxt "" @@ -12284,7 +12283,7 @@ "par_idN1056E\n" "help.text" msgid "Query Wizard - Search conditions" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Leitarskilyrรฐi" #: querywizard03.xhp msgctxt "" @@ -12300,7 +12299,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Search Conditions" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Leitarskilyrรฐi" #: querywizard03.xhp msgctxt "" @@ -12396,7 +12395,7 @@ "par_idN10574\n" "help.text" msgid "Query Wizard - Detail or summary" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - รtarlegt eรฐa รกgrip" #: querywizard04.xhp msgctxt "" @@ -12412,7 +12411,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Detail or Summary" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - รtarlegt eรฐa รกgrip" #: querywizard04.xhp msgctxt "" @@ -12541,7 +12540,7 @@ "par_idN1060E\n" "help.text" msgid "Query Wizard - Grouping" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Hรณpun" #: querywizard05.xhp msgctxt "" @@ -12557,7 +12556,7 @@ "par_idN10546\n" "help.text" msgid "Query Wizard - Grouping" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Hรณpun" #: querywizard05.xhp msgctxt "" @@ -12589,7 +12588,7 @@ "par_idN10590\n" "help.text" msgid "Query Wizard - Grouping conditions" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Skilyrรฐi hรณpunar" #: querywizard06.xhp msgctxt "" @@ -12605,7 +12604,7 @@ "par_idN10546\n" "help.text" msgid "Query Wizard - Grouping Conditions" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Skilyrรฐi hรณpunar" #: querywizard06.xhp msgctxt "" @@ -12701,7 +12700,7 @@ "par_idN1057C\n" "help.text" msgid "Query Wizard - Aliases" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Samheiti" #: querywizard07.xhp msgctxt "" @@ -12717,7 +12716,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Aliases" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Samheiti" #: querywizard07.xhp msgctxt "" @@ -12749,7 +12748,7 @@ "par_idN1055D\n" "help.text" msgid "Query Wizard - Overview" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Yfirlit" #: querywizard08.xhp msgctxt "" @@ -12765,7 +12764,7 @@ "par_idN10543\n" "help.text" msgid "Query Wizard - Overview" -msgstr "Fyrirspurnaleiรฐarvรญsir" +msgstr "Fyrirspurnaleiรฐarvรญsir - Yfirlit" #: querywizard08.xhp msgctxt "" @@ -14405,7 +14404,7 @@ "par_idN105AF\n" "help.text" msgid "Table Wizard - Select fields" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Val gagnasviรฐa" #: tablewizard01.xhp msgctxt "" @@ -14421,7 +14420,7 @@ "par_idN10546\n" "help.text" msgid "Table Wizard - Select Fields" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Val gagnasviรฐa" #: tablewizard01.xhp msgctxt "" @@ -14501,7 +14500,7 @@ "par_idN105A9\n" "help.text" msgid "Table Wizard - Set types and formats" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Setja tegundir og sniรฐ" #: tablewizard02.xhp msgctxt "" @@ -14517,7 +14516,7 @@ "par_idN10552\n" "help.text" msgid "Table Wizard - Set Types and Formats" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Setja tegundir og sniรฐ" #: tablewizard02.xhp msgctxt "" @@ -14734,7 +14733,7 @@ "par_idN105A9\n" "help.text" msgid "Table Wizard - Set primary key" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Setja aรฐallykil" #: tablewizard03.xhp msgctxt "" @@ -14750,7 +14749,7 @@ "par_idN10546\n" "help.text" msgid "Table Wizard - Set Primary Key" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Setja aรฐallykil" #: tablewizard03.xhp msgctxt "" @@ -14894,7 +14893,7 @@ "par_idN105A1\n" "help.text" msgid "Table Wizard - Create table" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Bรบa til tรถflu" #: tablewizard04.xhp msgctxt "" @@ -14910,7 +14909,7 @@ "par_idN10543\n" "help.text" msgid "Table Wizard - Create Table" -msgstr "Tรถfluleiรฐarvรญsir" +msgstr "Tรถfluleiรฐarvรญsir - Bรบa til tรถflu" #: tablewizard04.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 17:32+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 12:46+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439487157.000000\n" +"X-POOTLE-MTIME: 1444999584.000000\n" #: aaa_start.xhp msgctxt "" @@ -251,7 +251,7 @@ "11\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Accessibility" -msgstr "%PRODUCTNAME - KjรถrstillingarVerkfรฆri - Valkostir - %PRODUCTNAME - Auรฐveldaรฐ aรฐgengi" +msgstr "%PRODUCTNAME - KjรถrstillingarVerkfรฆri - Valkostir - %PRODUCTNAME - Auรฐveldaรฐ aรฐgengi" #: active_help_on_off.xhp msgctxt "" @@ -3413,7 +3413,7 @@ "par_idN105F9\n" "help.text" msgid "Working with Forms" -msgstr "Bรฝ til skรฝrslu " +msgstr "Vinna meรฐ eyรฐublรถรฐ" #: data_forms.xhp msgctxt "" @@ -3757,7 +3757,7 @@ "par_idN105A3\n" "help.text" msgid "Creating a New Database" -msgstr "Skoรฐa gagnagrunn" +msgstr "Bรบa til nรฝjan gagnagrunn" #: data_new.xhp msgctxt "" @@ -3829,7 +3829,7 @@ "par_idN105F9\n" "help.text" msgid "Working with Queries" -msgstr "Skoรฐa gagnagrunn" +msgstr "Vinna meรฐ fyrirspurnir" #: data_queries.xhp msgctxt "" @@ -4761,7 +4761,7 @@ "par_idN105F9\n" "help.text" msgid "Working with Tables" -msgstr "Skoรฐa gagnagrunn" +msgstr "Vinna meรฐ tรถflur" #: data_tables.xhp msgctxt "" @@ -5947,7 +5947,7 @@ "2\n" "help.text" msgid "Saving Documents Automatically" -msgstr "Vista skjรถl" +msgstr "Vista skjรถl sjรกlfvirkt" #: doc_autosave.xhp msgctxt "" @@ -6299,7 +6299,7 @@ "5\n" "help.text" msgid "File - Open" -msgstr "Vista sem" +msgstr "Skrรก - Opna" #: doc_save.xhp msgctxt "" @@ -8802,7 +8802,7 @@ "hd_id2454298\n" "help.text" msgid "Working with Groups " -msgstr "Bรฝ til skรฝrslu " +msgstr "Vinna meรฐ hรณpa " #: groups.xhp msgctxt "" @@ -11434,7 +11434,7 @@ "96\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: keyboard.xhp msgctxt "" @@ -13155,7 +13155,7 @@ "par_idN10875\n" "help.text" msgid "Forms Wizard" -msgstr "Skรฝrsluleiรฐarvรญsir" +msgstr "Eyรฐublaรฐaleiรฐarvรญsir" #: main.xhp msgctxt "" @@ -17927,7 +17927,7 @@ "par_id3149403\n" "help.text" msgid "--show {filename.odp}" -msgstr "-show {skrรกarheiti.odp}" +msgstr "--show {skrรกarheiti.odp}" #: start_parameters.xhp msgctxt "" @@ -19537,7 +19537,7 @@ "par_idN10757\n" "help.text" msgid "Form Controls toolbar" -msgstr "Gagnastรฝringarstika" +msgstr "Eyรฐublaรฐastรฝringarslรก" #: xforms.xhp msgctxt "" @@ -19577,7 +19577,7 @@ "par_idN10923\n" "help.text" msgid "About XML Filters " -msgstr "Rรฆsimiรฐstรถรฐ" +msgstr "Um XML-sรญur " #: xsltfilter.xhp msgctxt "" @@ -19690,7 +19690,7 @@ "hd_id1413922\n" "help.text" msgid "Creating XML Filters " -msgstr "Rรฆsimiรฐstรถรฐ" +msgstr "Bรบa til XML-sรญur " #: xsltfilter_create.xhp msgctxt "" @@ -20010,7 +20010,7 @@ "par_idN10ABC\n" "help.text" msgid "Distributing An XML Filter As Package " -msgstr "Rรฆsimiรฐstรถรฐ" +msgstr "Dreifa XML-sรญu sem pakka " #: xsltfilter_distribute.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared/optionen.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2013-02-20 08:04+0000\n" +"PO-Revision-Date: 2015-10-16 13:10+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361347493.000000\n" +"X-POOTLE-MTIME: 1445001042.000000\n" #: 01000000.xhp msgctxt "" @@ -85,13 +85,14 @@ msgstr "" #: 01000000.xhp +#, fuzzy msgctxt "" "01000000.xhp\n" "hd_id3159149\n" "4\n" "help.text" msgid "%PRODUCTNAME" -msgstr "Skoรฐa" +msgstr "%PRODUCTNAME" #: 01000000.xhp msgctxt "" @@ -127,7 +128,7 @@ "6\n" "help.text" msgid "%PRODUCTNAME Writer" -msgstr "Skoรฐa" +msgstr "%PRODUCTNAME Writer" #: 01000000.xhp msgctxt "" @@ -136,7 +137,7 @@ "5\n" "help.text" msgid "%PRODUCTNAME Writer/Web" -msgstr "%PRODUCTNAME gagnagrunnur" +msgstr "%PRODUCTNAME Writer/Web" #: 01000000.xhp msgctxt "" @@ -145,7 +146,7 @@ "7\n" "help.text" msgid "%PRODUCTNAME Calc" -msgstr "Skoรฐa" +msgstr "%PRODUCTNAME Calc" #: 01000000.xhp msgctxt "" @@ -163,7 +164,7 @@ "12\n" "help.text" msgid "%PRODUCTNAME Draw" -msgstr "Skoรฐa" +msgstr "%PRODUCTNAME Draw" #: 01000000.xhp msgctxt "" @@ -172,7 +173,7 @@ "9\n" "help.text" msgid "%PRODUCTNAME Math" -msgstr "Skoรฐa" +msgstr "%PRODUCTNAME Math" #: 01000000.xhp msgctxt "" @@ -2376,14 +2377,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3153726\n" "18\n" "help.text" msgid "Blue" -msgstr "Svart" +msgstr "Blรกtt" #: 01010500.xhp msgctxt "" @@ -2404,14 +2404,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3145800\n" "43\n" "help.text" msgid "Cyan" -msgstr "Grรฆnn" +msgstr "Blรกgrรฆnn - Cyan" #: 01010500.xhp msgctxt "" @@ -2423,14 +2422,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3150093\n" "45\n" "help.text" msgid "Magenta" -msgstr "Grรฆnn" +msgstr "Blรกrautt - Magenta" #: 01010500.xhp msgctxt "" @@ -2442,14 +2440,13 @@ msgstr "" #: 01010500.xhp -#, fuzzy msgctxt "" "01010500.xhp\n" "par_id3154098\n" "47\n" "help.text" msgid "Yellow" -msgstr "Rauรฐur" +msgstr "Gult" #: 01010500.xhp msgctxt "" @@ -6826,7 +6823,7 @@ "hd_id2623981\n" "help.text" msgid "Text placeholder" -msgstr "Textastaรฐgengill" +msgstr "Textafrรกtรถkutรกkn" #: 01040400.xhp msgctxt "" @@ -11088,7 +11085,7 @@ "hd_id3145071\n" "help.text" msgid "Compatibility" -msgstr "Skoรฐa" +msgstr "Samhรฆfni" #: 01060800.xhp msgctxt "" @@ -11296,7 +11293,7 @@ "hd_id3145071\n" "help.text" msgid "Formula" -msgstr "Letur" +msgstr "Formรบla" #: 01060900.xhp msgctxt "" @@ -11560,7 +11557,7 @@ "hd_id3145071\n" "help.text" msgid "Defaults" -msgstr "Sjรกlfgefnir litir" +msgstr "Sjรกlfgefiรฐ" #: 01061000.xhp msgctxt "" @@ -12198,7 +12195,7 @@ "50\n" "help.text" msgid "Grayscale" -msgstr "Grรกskali" +msgstr "Grรกtรณna" #: 01070400.xhp msgctxt "" @@ -14592,7 +14589,7 @@ "par_idN105AE\n" "help.text" msgid "Removes the selected entry from the list." -msgstr "Fjarlรฆgir valda fรฆrslu รบr listanum." +msgstr "Fjarlรฆgir valda fรฆrslu รบr listanum." #: 01160200.xhp msgctxt "" @@ -14704,7 +14701,7 @@ "par_idN10558\n" "help.text" msgid "Advanced" -msgstr "Tรถlvupรณstfang" +msgstr "รtarlegt" #: java.xhp msgctxt "" @@ -16056,7 +16053,7 @@ "par_idN1054D\n" "help.text" msgid "Certificate Path" -msgstr "Upplรฝsingar" +msgstr "Slรณรฐ skilrรญkis" #: viewcertificate_c.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/shared.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/shared.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-09 14:42+0000\n" +"PO-Revision-Date: 2015-10-19 15:08+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441809735.000000\n" +"X-POOTLE-MTIME: 1445267309.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -38,7 +38,7 @@ "par_idN1056A\n" "help.text" msgid "The 3D-Settings toolbar controls properties of selected 3D objects." -msgstr "รžrรญvรญddarstillingaslรกin stรฝrir eiginleikum valinna รพrรญvรญddarhluta (3D)." +msgstr "รžrรญvรญddarstillingastikan stรฝrir eiginleikum valinna รพrรญvรญddarhluta (3D)." #: 3dsettings_toolbar.xhp msgctxt "" @@ -254,7 +254,7 @@ "par_idN10736\n" "help.text" msgid "Opens the Extrusion Color toolbar." -msgstr "Opnar stjรณrnslรก fyrir lit รบtpressunar." +msgstr "Opnar stjรณrnstiku fyrir lit รบtpressunar." #: fontwork_toolbar.xhp msgctxt "" @@ -278,7 +278,7 @@ "par_idN1056A\n" "help.text" msgid "The Fontwork toolbar opens when you select a Fontwork object." -msgstr "Letursmiรฐjuslรกin opnast รพegar รพรบ velur letursmiรฐjuhlut." +msgstr "Letursmiรฐjustikan opnast รพegar รพรบ velur letursmiรฐjuhlut." #: fontwork_toolbar.xhp msgctxt "" @@ -310,7 +310,7 @@ "par_idN1058C\n" "help.text" msgid "Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects." -msgstr "Opnar letursmiรฐjuslรกnna. Smelltu รก einhverja lรถgun til aรฐ beita henni รก alla valda hluti รญ letursmiรฐjunni." +msgstr "Opnar letursmiรฐjustikuna. Smelltu รก einhverja lรถgun til aรฐ beita henni รก alla valda hluti รญ letursmiรฐjunni." #: fontwork_toolbar.xhp msgctxt "" @@ -576,7 +576,7 @@ "tit\n" "help.text" msgid "Standard Bar" -msgstr "Staรฐlaรฐa slรกin" +msgstr "Staรฐlaรฐa stikan" #: main0201.xhp msgctxt "" @@ -585,7 +585,7 @@ "1\n" "help.text" msgid "Standard Bar" -msgstr "Venjuleg slรก" +msgstr "Stรถรฐluรฐ stika" #: main0201.xhp msgctxt "" @@ -594,7 +594,7 @@ "2\n" "help.text" msgid "The Standard bar is available in every $[officename] application." -msgstr "Staรฐlaรฐa slรกin er aรฐgengileg รญ รถllum $[officename] forritum." +msgstr "Staรฐlaรฐa stikan er aรฐgengileg รญ รถllum $[officename] forritum." #: main0201.xhp msgctxt "" @@ -779,7 +779,7 @@ "tit\n" "help.text" msgid "Table Bar" -msgstr "Tรถfluslรก" +msgstr "Tรถflustika" #: main0204.xhp msgctxt "" @@ -787,7 +787,7 @@ "hd_id3145587\n" "help.text" msgid "Table Bar" -msgstr "Tรถfluslรก" +msgstr "Tรถflustika" #: main0204.xhp msgctxt "" @@ -795,7 +795,7 @@ "par_id3154252\n" "help.text" msgid "The Table Bar contains functions you need when working with tables. It appears when you move the cursor into a table." -msgstr "Tรถfluslรกin inniheldur aรฐgerรฐir til aรฐ vinna meรฐ tรถflur. Slรกin birtist รพegar รพรบ hreyfir bendilinn inn รญ tรถflu." +msgstr "Tรถflustikan inniheldur aรฐgerรฐir til aรฐ vinna meรฐ tรถflur. Stikan birtist รพegar รพรบ hreyfir bendilinn inn รญ tรถflu." #: main0204.xhp msgctxt "" @@ -862,7 +862,7 @@ "tit\n" "help.text" msgid "Status Bar in $[officename] Basic Documents" -msgstr "Stรถรฐuslรก รญ $[officename] BASIC skjรถlum" +msgstr "Stรถรฐustika รญ $[officename] BASIC skjรถlum" #: main0208.xhp msgctxt "" @@ -871,7 +871,7 @@ "1\n" "help.text" msgid "Status Bar in $[officename] Basic Documents" -msgstr "Stรถรฐuslรก รญ $[officename] BASIC skjรถlum" +msgstr "Stรถรฐustika รญ $[officename] BASIC skjรถlum" #: main0208.xhp msgctxt "" @@ -880,7 +880,7 @@ "2\n" "help.text" msgid "The Status Bar displays information about the current $[officename] Basic document." -msgstr "Stรถรฐuslรก sรฝnir รฝmsar upplรฝsingar um $[officename] Basic skjaliรฐ." +msgstr "Stรถรฐustikan sรฝnir รฝmsar upplรฝsingar um $[officename] Basic skjaliรฐ." #: main0212.xhp msgctxt "" @@ -888,7 +888,7 @@ "tit\n" "help.text" msgid "Table Data Bar" -msgstr "Tรถflugagnaslรก" +msgstr "Tรถflugagnastika" #: main0212.xhp msgctxt "" @@ -897,7 +897,7 @@ "1\n" "help.text" msgid "Table Data Bar" -msgstr "Tรถflugagnaslรก" +msgstr "Tรถflugagnastika" #: main0212.xhp msgctxt "" @@ -906,7 +906,7 @@ "10\n" "help.text" msgid "Use the Table Data bar to control the data view. " -msgstr "Notaรฐu Tรถflugagnaslรกnna til aรฐ stรฝra รกsรฝnd gagna. " +msgstr "Notaรฐu Tรถflugagnastikuna til aรฐ stรฝra รกsรฝnd gagna. " #: main0212.xhp msgctxt "" @@ -965,7 +965,7 @@ "par_idN10753\n" "help.text" msgid "Inserts all fields of the marked record into the current document at the cursor position." -msgstr "" +msgstr "Setur รถll gagnasviรฐ merktrar fรฆrslu inn viรฐ nรบverandi bendilstรถรฐu." #: main0212.xhp msgctxt "" @@ -989,7 +989,7 @@ "tit\n" "help.text" msgid "Form Navigation Bar" -msgstr "Slรก fyrir eyรฐublaรฐaleiรฐsรถgn" +msgstr "Stika fyrir eyรฐublaรฐaleiรฐsรถgn" #: main0213.xhp msgctxt "" @@ -997,7 +997,7 @@ "bm_id3157896\n" "help.text" msgid "toolbars; Form Navigation barNavigation bar;formssorting; data in formsdata; sorting in formsforms;sorting data" -msgstr "" +msgstr "verkfรฆrastikur; EyรฐublaรฐaleiรฐsagnarstikaLeiรฐsagnarstika;eyรฐublรถรฐrรถรฐun; gรถgn รญ eyรฐublรถรฐumgรถgn; rรถรฐun รญ eyรฐublรถรฐumeyรฐublรถรฐ;rรถรฐun gagna" #: main0213.xhp msgctxt "" @@ -1006,7 +1006,7 @@ "1\n" "help.text" msgid "Form Navigation Bar" -msgstr "Slรก fyrir eyรฐublaรฐaleiรฐsรถgn" +msgstr "Stika fyrir eyรฐublaรฐaleiรฐsรถgn" #: main0213.xhp msgctxt "" @@ -1086,7 +1086,7 @@ "5\n" "help.text" msgid "Shows the number of the current record. Enter a number to go to the corresponding record." -msgstr "" +msgstr "Birtir nรบmer virkrar fรฆrslu. Settu inn nรบmer til aรฐ fara รญ tilheyrandi fรฆrslu." #: main0213.xhp msgctxt "" @@ -1320,7 +1320,7 @@ "tit\n" "help.text" msgid "Query Design Bar" -msgstr "Tรถflugagnaslรก" +msgstr "Tรถflugagnastika" #: main0214.xhp msgctxt "" @@ -1329,7 +1329,7 @@ "1\n" "help.text" msgid "Query Design Bar" -msgstr "Tรถflugagnaslรก" +msgstr "Tรถflugagnastika" #: main0214.xhp msgctxt "" @@ -1338,7 +1338,7 @@ "2\n" "help.text" msgid "When creating or editing an SQL query, use the icons in the Query Design Bar to control the display of data." -msgstr "" +msgstr "Viรฐ aรฐ bรบa til eรฐa breyta SQL fyrirspurn, notaรฐu tรกknmyndirnar รก Fyrirspurnahรถnnun-stikunni til aรฐ stรฝra birtingu gagna." #: main0214.xhp msgctxt "" @@ -1373,7 +1373,7 @@ "tit\n" "help.text" msgid "Form Design Toolbar" -msgstr "Slรก fyrir eyรฐublaรฐahรถnnun" +msgstr "Stika fyrir eyรฐublaรฐahรถnnun" #: main0226.xhp msgctxt "" @@ -1382,7 +1382,7 @@ "1\n" "help.text" msgid "Form Design Toolbar" -msgstr "Slรก fyrir eyรฐublaรฐaleiรฐsรถgn" +msgstr "Stika fyrir eyรฐublaรฐaleiรฐsรถgn" #: main0226.xhp msgctxt "" @@ -1391,7 +1391,7 @@ "2\n" "help.text" msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode." -msgstr "Slรกin fyrir eyรฐublaรฐahรถnnun birtist รพegar unniรฐ er รญ hรถnnunarham og valdir eru eyรฐublaรฐahlutir." +msgstr "Stikan fyrir eyรฐublaรฐahรถnnun birtist รพegar unniรฐ er รญ hรถnnunarham og valdir eru eyรฐublaรฐahlutir." #: main0226.xhp msgctxt "" @@ -1480,7 +1480,7 @@ "tit\n" "help.text" msgid "Edit Points Bar" -msgstr "Punktaslรก" +msgstr "Punktastika" #: main0227.xhp msgctxt "" @@ -1488,7 +1488,7 @@ "bm_id3149987\n" "help.text" msgid "lines; editing pointscurves; editing pointsEdit Points bar" -msgstr "" +msgstr "lรญnur; breyta punktumferlar; breyta punktumPunktastika" #: main0227.xhp msgctxt "" @@ -1497,7 +1497,7 @@ "39\n" "help.text" msgid "Edit Points Bar" -msgstr "Punktaslรก" +msgstr "Punktastika" #: main0227.xhp msgctxt "" @@ -1506,7 +1506,7 @@ "40\n" "help.text" msgid "The Edit Points Bar appears when you select a polygon object and click Edit Points." -msgstr "" +msgstr "Punktbreytingaslรกin birtist รพegar รพรบ velur marghyrning og smellir รก Breyta punktum." #: main0227.xhp msgctxt "" @@ -1515,7 +1515,7 @@ "68\n" "help.text" msgid "The functions provided allow you to edit the points of a curve or an object converted to a curve. The following icons are available:" -msgstr "" +msgstr "Meรฐfylgjandi aรฐgerรฐir gera kleift aรฐ breyta punktum รก ferli eรฐa hlutum sem breytt hefur veriรฐ รญ feril. Eftirfarandi tรกknmyndir eru รญ boรฐi:" #: main0227.xhp msgctxt "" @@ -1533,7 +1533,7 @@ "43\n" "help.text" msgid "The Edit Points icon allows you to activate or deactivate the edit mode for Bรฉzier objects. In the edit mode, individual points of the drawing object can be selected." -msgstr "" +msgstr "Tรกknmyndin Breyta punktum gerir รพรฉr kleift aรฐ gera breytingaham virkan eรฐa รณvirkan fyrir Bรฉzier-hluti. ร breytingaham er hรฆgt aรฐ velja staka punkta รญ teiknuรฐum hlutum." #: main0227.xhp msgctxt "" @@ -1568,7 +1568,7 @@ "46\n" "help.text" msgid "Activates a mode in which you can move points. The mouse pointer displays a small empty square when resting on a point. Drag that point to another location. The curve on both sides of the point follows the movement; the section of the curve between the next points changes shape." -msgstr "" +msgstr "Virkjar ham รพannig aรฐ รพรบ getir fรฆrt punkta. Mรบsarbendillinn birtir lรญtinn auรฐan ferning viรฐ aรฐ svรญfa yfir punkt. Dragรฐu รพann punkt รก einhvern annan staรฐ. Ferillinn sitt hvoru megin viรฐ punktinn mun fylgja eftir hreyfingunni; sรก hluti ferilsins sem nรฆr aรฐ nรฆstu punktum breytir um lรถgun." #: main0227.xhp msgctxt "" @@ -1577,7 +1577,7 @@ "47\n" "help.text" msgid "Point at the curve between two points or within a closed curve and drag the mouse to shift the entire curve without distorting the form." -msgstr "" +msgstr "Settu bendilinn milli tveggja punkta eรฐa inn รก lokaรฐan feril og dragรฐu meรฐ mรบsinni til รพess aรฐ fรฆra til allan ferilinn รกn รพess aรฐ aflaga hann." #: main0227.xhp msgctxt "" @@ -1612,7 +1612,7 @@ "50\n" "help.text" msgid "Activates the insert mode. This mode allows you to insert points. You can also move points, just as in the move mode. If, however, you click at the curve between two points and move the mouse a little while holding down the mouse button you insert a new point. The point is a smooth point, and the lines to the control points are parallel and remain so when moved." -msgstr "" +msgstr "Virkjar innsetningarham. รžessi hamur gerir kleift aรฐ setja inn punkta. รžรบ getur einnig hreyft punkta, rรฉtt eins og รญ fรฆrsluham. Hinsvegar, ef รพรบ smellir รก feril รก milli tveggja punkta og hreyfir mรบsina lรญtillega รก meรฐan รพรบ heldur niรฐri mรบsarhnappnum muntu setja inn nรฝjan punkt. Sรก punktur er mjรบkur punktur, sem รพรฝรฐir aรฐ lรญnurnar sem tengjast stรฝripunktunum eru samsรญรฐa og munu haldast รพannig viรฐ tilfรฆrslu." #: main0227.xhp msgctxt "" @@ -1621,7 +1621,7 @@ "51\n" "help.text" msgid "If you wish to create a corner point you must first insert either a smooth or a symmetrical point which is then converted to a corner point by using Corner Point." -msgstr "" +msgstr "Ef รพรบ vilt bรบa til hornpunkt verรฐurรฐu fyrst aรฐ setja inn samhverfan eรฐa mjรบkan punkt, sem sรญรฐan er umbreytt รญ hornpunkt meรฐ รพvรญ aรฐ nota tรกknmyndina Hornpunktur." #: main0227.xhp msgctxt "" @@ -1656,7 +1656,7 @@ "56\n" "help.text" msgid "Use the Delete Points icon to delete one or several selected points. If you wish to select several points click the appropriate points while holding down the Shift key." -msgstr "" +msgstr "Notaรฐu tรกknmyndina Eyรฐa punktum til aรฐ eyรฐa einum eรฐa fleiri punktum. Ef รพรบ vilt eyรฐa mรถrgum punktum รญ einu geturรฐu valiรฐ รพรก meรฐ รพvรญ aรฐ halda niรฐri Shift-lyklinum." #: main0227.xhp msgctxt "" @@ -1665,7 +1665,7 @@ "57\n" "help.text" msgid "First select the points to be deleted, and then click this icon, or press Del." -msgstr "" +msgstr "Veldu fyrst punkta sem รก aรฐ eyรฐa og smelltu sรญรฐan รก รพessa tรกknmynd eรฐa รฝttu รก Del-lykilinn." #: main0227.xhp msgctxt "" @@ -1691,7 +1691,7 @@ "59\n" "help.text" msgid "Split Curve" -msgstr "Slรญta kรบrvu" +msgstr "Slรญta feril" #: main0227.xhp msgctxt "" @@ -1700,7 +1700,7 @@ "60\n" "help.text" msgid "The Split Curve icon splits a curve. Select the point or points where you want to split the curve, then click the icon." -msgstr "" +msgstr "Tรกknmyndin Slรญta feril skiptir upp ferlum. Veldu punkt eรฐa punkta รพar sem รพรบ vilt slรญta ferilinn, smelltu sรญรฐan รก tรกknmyndina." #: main0227.xhp msgctxt "" @@ -1717,7 +1717,7 @@ "61\n" "help.text" msgid "Split Curve" -msgstr "Slรญta kรบrvu" +msgstr "Slรญta feril" #: main0227.xhp msgctxt "" @@ -1726,7 +1726,7 @@ "62\n" "help.text" msgid "Convert To Curve" -msgstr "Umbreyta รญ kรบrvu" +msgstr "Umbreyta รญ feril" #: main0227.xhp msgctxt "" @@ -1735,7 +1735,7 @@ "63\n" "help.text" msgid "Converts a curve into a straight line or converts a straight line into a curve. If you select a single point, the curve before the point will be converted. If two points are selected, the curve between both points will be converted. If you select more than two points, each time you click this icon, a different portion of the curve will be converted. If necessary, round points are converted into corner points and corner points are converted into round points." -msgstr "" +msgstr "Umbreytir ferli รญ beina lรญnu eรฐa umbreytir beinni lรญnu รญ feril. Ef รพรบ velur einn punkt, verรฐur ferlinum รก undan punktinum umbreytt. Ef tveir punktar eru valdir, verรฐur ferlinum รก milli punktanna tveggja umbreytt. Ef รพรบ velur fleiri en tvo punkta, verรฐur mismunandi hluta ferilsins umbreytt รญ hvert skipti sem รพรบ smellir รก รพessa tรกknmynd. Ef nauรฐsynlegt รพykir, er mjรบkum punktum umbreytt รญ hornpunkta og hornpunktum รญ mjรบka punkta." #: main0227.xhp msgctxt "" @@ -1744,7 +1744,7 @@ "64\n" "help.text" msgid "If a certain section of the curve is straight, the end points of the line have a maximum of one control point each. They cannot be modified to round points unless the straight line is converted back to a curve." -msgstr "" +msgstr "Ef tiltekinn hluti ferils er bein lรญna, hafa endapunktar lรญnubรบtsins einungis einn stรฝripunkt hver. Ekki er hรฆgt aรฐ breyta รพeim รญ mjรบka punkta nema beinu lรญnunni sรฉ umbreytt aftur รญ feril." #: main0227.xhp msgctxt "" @@ -1761,7 +1761,7 @@ "65\n" "help.text" msgid "Convert To Curve" -msgstr "Umbreyta รญ kรบrvu" +msgstr "Umbreyta รญ feril" #: main0227.xhp msgctxt "" @@ -1779,7 +1779,7 @@ "67\n" "help.text" msgid "Converts the selected point or points into corner points. Corner points have two movable control points, which are independent from each other. A curved line, therefore, does not go straight through a corner point, but forms a corner." -msgstr "" +msgstr "Umbreytir vรถldum punkti eรฐa punktum รญ hornpunkta. Hornpunktar hafa tvo fรฆranlega stรฝripunkta, sem eru รณhรกรฐir hvor รถรฐrum. Sveigรฐ lรญna myndi รพar af leiรฐandi ekki halda beint รกfram รญ gegnum hornpunkt, heldur breyta um stefnu og mynda horn." #: main0227.xhp msgctxt "" @@ -1814,7 +1814,7 @@ "29\n" "help.text" msgid "Converts a corner point or symmetrical point into a smooth point. Both control points of the corner point are aligned in parallel, and can only be moved simultaneously. The control points may differentiate in length, allowing you to vary the degree of curvature." -msgstr "" +msgstr "Umbreytir hornpunkti eรฐa samhverfum punkti รญ mjรบkan punkt. Bรกรฐum stรฝripunktum hornpunktsins verรฐur komiรฐ fyrir รก samsรญรฐa lรญnum, og verรฐur einungis hรฆgt aรฐ hreyfa รพรก bรกรฐa รญ einu. Fjarlรฆgรฐin รญ stรฝripunktana gรฆti veriรฐ misjรถfn, sem leyfir รพรฉr aรฐ sรฝsla meรฐ sveigjuna รก ferlinum." #: main0227.xhp msgctxt "" @@ -1849,7 +1849,7 @@ "32\n" "help.text" msgid "This icon converts a corner point or a smooth point into a symmetrical point. Both control points of the corner point are aligned in parallel and have the same length. They can only be moved simultaneously and the degree of curvature is the same in both directions." -msgstr "" +msgstr "Umbreytir hornpunkti eรฐa mjรบkum punkti รญ samhverfan punkt. Bรกรฐum stรฝripunktum hornpunktsins verรฐur komiรฐ fyrir รก samsรญรฐa lรญnum, og verรฐur fjarlรฆgรฐin รญ stรฝripunktana jรถfn. Aรฐeins er hรฆgt aรฐ hreyfa bรกรฐa stรฝripunktana รญ einu, og verรฐur sveigja รก ferilsins sรบ sama รญ bรกรฐar รกttir." #: main0227.xhp msgctxt "" @@ -1875,7 +1875,7 @@ "33\n" "help.text" msgid "Close Bรฉzier" -msgstr "Loka Bรฉzier-kรบrvu" +msgstr "Loka Bรฉzier-ferli" #: main0227.xhp msgctxt "" @@ -1884,7 +1884,7 @@ "35\n" "help.text" msgid "Closes a line or a curve. A line is closed by connecting the last point with the first point, indicated by an enlarged square." -msgstr "" +msgstr "Lokar lรญnu eรฐa ferli. Lรญnu er lokaรฐ meรฐ รพvรญ aรฐ tengja sรญรฐasta punkt hennar viรฐ รพann fyrsta, gefinn til kynna meรฐ stรฆkkuรฐum ferningi." #: main0227.xhp msgctxt "" @@ -1901,7 +1901,7 @@ "34\n" "help.text" msgid "Close Bรฉzier" -msgstr "Loka Bรฉzier-kรบrvu" +msgstr "Loka Bรฉzier-ferli" #: main0227.xhp msgctxt "" @@ -1919,7 +1919,7 @@ "38\n" "help.text" msgid "Marks the current point or the selected points for deletion. This happens in the event that the point is located on a straight line. If you convert a curve or a polygon with the Convert to Curve icon into a straight line or you change a curve with the mouse so that a point lies on the straight line, it is removed. The angle from which the point reduction is to take place can be set by choosing %PRODUCTNAME Draw - Grid in the Options dialog boxcan be set by choosing %PRODUCTNAME Impress - Grid in the Options dialog boxis 15ยฐ by default." -msgstr "" +msgstr "Merkir nรบverandi punkt eรฐa valda punkta til eyรฐingar. รžetta er gert รญ รพeim tilfellum รพegar punkturinn er staรฐsettur รก beinni lรญnu. Ef รพรบ umbreytir boglรญnu eรฐa marghyrningi meรฐ Umbreyta รญ feril tรกkninu yfir รญ beinar lรญnur eรฐa aรฐ รพรบ breytir ferli meรฐ mรบsinni รพannig aรฐ punktur liggur รก beinu lรญnunni, รพรก er hann fjarlรฆgรฐur. Horniรฐ, รบt frรก hverju sem fjarlรฆging punktanna รก sรฉr staรฐ, mรก stilla meรฐ รพvรญ aรฐ fara รญ %PRODUCTNAME Draw - Hnitanet รญ valkostaglugganummรก stilla meรฐ รพvรญ aรฐ fara รญ %PRODUCTNAME Impress - Hnitanet รญ valkostaglugganum og er sjรกlfgefiรฐ 15ยฐ." #: main0227.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/00.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-26 16:09+0000\n" +"PO-Revision-Date: 2015-10-19 16:06+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440605359.000000\n" +"X-POOTLE-MTIME: 1445270801.000000\n" #: 00000004.xhp msgctxt "" @@ -47,7 +47,7 @@ "par_id5316324\n" "help.text" msgid "Opens the Custom Animation window on the Task pane." -msgstr "" +msgstr "Opnar glugga fyrir sรฉrsniรฐnar hreyfimyndir รก verkefnaspjaldi." #: 00000004.xhp msgctxt "" @@ -211,7 +211,7 @@ "4\n" "help.text" msgid "Choose Edit - Delete Slide" -msgstr "" +msgstr "Veldu Breyta - Eyรฐa skyggnu" #: 00000402.xhp msgctxt "" @@ -229,7 +229,7 @@ "6\n" "help.text" msgid "Choose Edit - Fields" -msgstr "" +msgstr "Veldu Breyta - Gagnasviรฐ" #: 00000402.xhp msgctxt "" @@ -237,7 +237,7 @@ "par_id8695944\n" "help.text" msgid "Click the Glue Points icon on the Drawing Bar " -msgstr "" +msgstr "Smelltu รก tรกknmyndina Festipunktar รก teiknistikunni " #: 00000403.xhp msgctxt "" @@ -263,7 +263,7 @@ "2\n" "help.text" msgid "Choose View - Ruler" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Skoรฐa - Mรฆlistika" #: 00000403.xhp msgctxt "" @@ -290,7 +290,7 @@ "8\n" "help.text" msgid "Choose View - Color/Grayscale" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Skoรฐa - Litur/Grรกtรณna" #: 00000403.xhp msgctxt "" @@ -298,7 +298,7 @@ "par_idN106A4\n" "help.text" msgid "Choose View - Task Pane" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Skoรฐa - Verkefnaspjald" #: 00000403.xhp msgctxt "" @@ -462,7 +462,7 @@ "37\n" "help.text" msgid "Choose View - Normal" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Skoรฐa - Venjulegt" #: 00000403.xhp msgctxt "" @@ -471,7 +471,7 @@ "56\n" "help.text" msgid "Choose View - Master - Slide Master" -msgstr "Veldu Skoรฐa - Yfirsรญรฐa - Yfirskyggna " +msgstr "Veldu Skoรฐa - Yfirsรญรฐa - Yfirskyggna" #: 00000403.xhp msgctxt "" @@ -480,7 +480,7 @@ "39\n" "help.text" msgid "Choose View - Notes Page" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Skoรฐa - Minnispunktasรญรฐa" #: 00000404.xhp msgctxt "" @@ -683,7 +683,7 @@ "17\n" "help.text" msgid "Choose Insert - Fields" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ" #: 00000404.xhp msgctxt "" @@ -692,7 +692,7 @@ "22\n" "help.text" msgid "Choose Insert - Fields - Date (fixed)" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Dagsetning (fรถst)" #: 00000404.xhp msgctxt "" @@ -701,7 +701,7 @@ "18\n" "help.text" msgid "Choose Insert - Fields - Date (variable)" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Dagsetning (breytileg)" #: 00000404.xhp msgctxt "" @@ -710,7 +710,7 @@ "19\n" "help.text" msgid "Choose Insert - Fields - Time (fixed)" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Tรญmi (fastur)" #: 00000404.xhp msgctxt "" @@ -719,7 +719,7 @@ "20\n" "help.text" msgid "Choose Insert - Fields - Time (variable)" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Tรญmi (breytilegur)" #: 00000404.xhp msgctxt "" @@ -728,7 +728,7 @@ "21\n" "help.text" msgid "Choose Insert - Fields - Page Number" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Blaรฐsรญรฐunรบmer" #: 00000404.xhp msgctxt "" @@ -737,7 +737,7 @@ "23\n" "help.text" msgid "Choose Insert - Fields - Author" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Hรถfundur" #: 00000404.xhp msgctxt "" @@ -746,7 +746,7 @@ "24\n" "help.text" msgid "Choose Insert - Fields - File Name" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Setja inn - Gagnasviรฐ - Skrรกarheiti" #: 00000405.xhp msgctxt "" @@ -790,7 +790,7 @@ "9\n" "help.text" msgid "Choose Format - Page" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Snรญรฐa - Sรญรฐa" #: 00000405.xhp msgctxt "" @@ -808,7 +808,7 @@ "14\n" "help.text" msgid "Choose Format - Page and then click the Background tab" -msgstr "" +msgstr "Veldu Snรญรฐa - Sรญรฐu og smelltu sรญรฐan รก Bakgrunnur-flipann" #: 00000405.xhp msgctxt "" @@ -817,7 +817,7 @@ "10\n" "help.text" msgid "Choose Format - Slide Layout" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Snรญรฐa - Framsetning skyggnu" #: 00000405.xhp msgctxt "" @@ -835,7 +835,7 @@ "17\n" "help.text" msgid "Choose Format - Layer (only $[officename] Draw)" -msgstr "" +msgstr "Veldu Snรญรฐa - Lag (aรฐeins รญ $[officename] Draw)" #: 00000405.xhp msgctxt "" @@ -844,7 +844,7 @@ "12\n" "help.text" msgid "Choose Format - Slide Design" -msgstr "Veldu Skrรก - Flytja รบt" +msgstr "Veldu Snรญรฐa - Skyggnuhรถnnun" #: 00000406.xhp msgctxt "" @@ -1002,7 +1002,7 @@ "13\n" "help.text" msgid "Choose Slide Show - Custom Slide Show" -msgstr "Skyggnusรฝning - Sรฉrsniรฐin skyggnusรฝning>" +msgstr "Veldu Skyggnusรฝning - Sรฉrsniรฐin skyggnusรฝning" #: 00000413.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-26 16:02+0000\n" +"PO-Revision-Date: 2015-10-16 12:46+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440604940.000000\n" +"X-POOTLE-MTIME: 1444999605.000000\n" #: 01170000.xhp msgctxt "" @@ -2178,7 +2178,6 @@ msgstr "" #: 03152000.xhp -#, fuzzy msgctxt "" "03152000.xhp\n" "par_id3351542\n" @@ -2187,7 +2186,6 @@ msgstr "" #: 03152000.xhp -#, fuzzy msgctxt "" "03152000.xhp\n" "par_idN106AF\n" @@ -2409,7 +2407,7 @@ "tit\n" "help.text" msgid "Color/Grayscale" -msgstr "Litur/grรกskali" +msgstr "Litur/grรกtรณna" #: 03180000.xhp msgctxt "" @@ -2462,7 +2460,7 @@ "5\n" "help.text" msgid "Grayscale" -msgstr "Grรกskali" +msgstr "Grรกtรณna" #: 03180000.xhp msgctxt "" @@ -5438,7 +5436,7 @@ "tit\n" "help.text" msgid "Animation" -msgstr "Teiknimyndir" +msgstr "Hreyfing" #: 06050000.xhp msgctxt "" @@ -5447,7 +5445,7 @@ "1\n" "help.text" msgid "Animation" -msgstr "Teiknimyndir" +msgstr "Hreyfing" #: 06050000.xhp msgctxt "" @@ -5474,7 +5472,7 @@ "3\n" "help.text" msgid "Animation" -msgstr "Teiknimyndir" +msgstr "Hreyfing" #: 06050000.xhp msgctxt "" @@ -5950,7 +5948,7 @@ "tit\n" "help.text" msgid "Custom Animation Pane" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Spjald fyrir sรฉrsniรฐnar hreyfingar" #: 06060000.xhp msgctxt "" @@ -5967,7 +5965,7 @@ "1\n" "help.text" msgid "Custom Animation Pane" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Spjald fyrir sรฉrsniรฐnar hreyfingar" #: 06060000.xhp msgctxt "" @@ -5984,7 +5982,7 @@ "par_idN1078E\n" "help.text" msgid "Animation List" -msgstr "" +msgstr "Listi yfir hreyfingar" #: 06060000.xhp msgctxt "" @@ -7679,7 +7677,7 @@ "17\n" "help.text" msgid "Preview of the original image." -msgstr "" +msgstr "Forskoรฐun upprunalegu myndarinnar." #: 13050200.xhp msgctxt "" @@ -7724,7 +7722,7 @@ "22\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: 13050200.xhp msgctxt "" @@ -8272,7 +8270,7 @@ "tit\n" "help.text" msgid "Custom Animation" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Sรฉrsniรฐin hreyfing" #: animationeffect.xhp msgctxt "" @@ -8280,7 +8278,7 @@ "par_idN10547\n" "help.text" msgid "Custom Animation" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Sรฉrsniรฐin hreyfing" #: animationeffect.xhp msgctxt "" @@ -9131,7 +9129,6 @@ msgstr "" #: taskpanel.xhp -#, fuzzy msgctxt "" "taskpanel.xhp\n" "par_idN105D4\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/02.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-26 16:08+0000\n" +"PO-Revision-Date: 2015-10-16 10:24+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440605305.000000\n" +"X-POOTLE-MTIME: 1444991043.000000\n" #: 04010000.xhp msgctxt "" @@ -4071,7 +4071,7 @@ "72\n" "help.text" msgid "Curved Connector" -msgstr "Bogin lรญna" +msgstr "Bogin tengilรญna" #: 10100000.xhp msgctxt "" @@ -4097,7 +4097,7 @@ "74\n" "help.text" msgid "Curved Connector" -msgstr "Bogin lรญna" +msgstr "Bogin tengilรญna" #: 10100000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:11+0200\n" -"PO-Revision-Date: 2015-08-26 16:04+0000\n" +"PO-Revision-Date: 2015-10-16 13:11+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440605096.000000\n" +"X-POOTLE-MTIME: 1445001069.000000\n" #: 3d_create.xhp msgctxt "" @@ -454,7 +454,7 @@ "tit\n" "help.text" msgid "Exporting Animations in GIF Format" -msgstr "" +msgstr "Flytja hreyfingar รบt รก GIF-sniรฐi" #: animated_gif_save.xhp msgctxt "" @@ -471,7 +471,7 @@ "76\n" "help.text" msgid "Exporting Animations in GIF Format" -msgstr "" +msgstr "Flytja hreyfingar รบt รก GIF-sniรฐi" #: animated_gif_save.xhp msgctxt "" @@ -678,7 +678,7 @@ "78\n" "help.text" msgid "Choose Slide Show - Custom Animation." -msgstr "" +msgstr "Veldu Skyggnusรฝning - Sรฉrsniรฐin hreyfing." #: animated_objects.xhp msgctxt "" @@ -2126,7 +2126,7 @@ "18\n" "help.text" msgid "Selecting placeholders" -msgstr "" +msgstr "Velja frรกtรถkutรกkn" #: keyboard.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/simpress.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/simpress.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-13 17:39+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 11:30+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439487597.000000\n" +"X-POOTLE-MTIME: 1444995017.000000\n" #: main0000.xhp msgctxt "" @@ -1680,7 +1680,7 @@ "14\n" "help.text" msgid "You can also assign a number of dynamic effects to your slides, including animation and transition effects." -msgstr "รžรบ getur รบthlutaรฐ fjรถlmรถrgum virkum sjรณnhverfingum eรฐa brellum รก skyggnurnar รพรญnar, รพar meรฐ tรถldum hreyfibrellum og millifรฆrslum." +msgstr "รžรบ getur รบthlutaรฐ fjรถlmรถrgum virkum sjรณnhverfingum eรฐa brellum รก skyggnurnar รพรญnar, รพar meรฐ tรถldum hreyfibrellum og millifรฆrslum." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/smath/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/smath/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,16 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2012-02-21 01:01+0200\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2015-10-14 12:03+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444824199.000000\n" #: 02080000.xhp msgctxt "" @@ -294,7 +295,7 @@ "1\n" "help.text" msgid "Update" -msgstr "Sniรฐ" +msgstr "Uppfรฆra" #: 03070000.xhp msgctxt "" @@ -371,7 +372,7 @@ "1\n" "help.text" msgid "Elements" -msgstr "Hreinsa viรฐfรถng" +msgstr "Einindi" #: 03090000.xhp msgctxt "" @@ -1580,7 +1581,7 @@ "par_idN10564\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1606,7 +1607,7 @@ "par_idN10565\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1632,7 +1633,7 @@ "par_idN10566\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1658,7 +1659,7 @@ "par_idN10567\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1684,7 +1685,7 @@ "par_idN10568\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1710,7 +1711,7 @@ "par_idN10569\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1736,7 +1737,7 @@ "par_idN10570\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -1762,7 +1763,7 @@ "par_idN10571\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03090200.xhp msgctxt "" @@ -7492,7 +7493,7 @@ "par_idN10E08\n" "help.text" msgid "< or lt" -msgstr "eรฐa eรฐa |" +msgstr "< eรฐa lt" #: 03091502.xhp msgctxt "" @@ -7517,7 +7518,7 @@ "par_id9464726\n" "help.text" msgid "<< or ll" -msgstr "eรฐa eรฐa |" +msgstr "<< eรฐa ll" #: 03091502.xhp msgctxt "" @@ -7534,7 +7535,7 @@ "par_idN11059\n" "help.text" msgid "<= or le" -msgstr "eรฐa eรฐa |" +msgstr "<= eรฐa le" #: 03091502.xhp msgctxt "" @@ -7932,7 +7933,7 @@ "par_id3153958\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -7949,7 +7950,7 @@ "par_id3153959\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -7966,7 +7967,7 @@ "par_id3153960\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -7983,7 +7984,7 @@ "par_id3153961\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -8000,7 +8001,7 @@ "par_id3153962\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -8017,7 +8018,7 @@ "par_id3153963\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -8034,7 +8035,7 @@ "par_id3153964\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -8051,7 +8052,7 @@ "par_id3153965\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091502.xhp msgctxt "" @@ -9945,7 +9946,7 @@ "par_idA3162627\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091507.xhp msgctxt "" @@ -10565,7 +10566,7 @@ "par_idN12F9F\n" "help.text" msgid "\\lbrace \\rbrace or \\{ \\}" -msgstr "eรฐa eรฐa |" +msgstr "\\lbrace \rbrace eรฐa \\{ \\}" #: 03091508.xhp msgctxt "" @@ -11007,7 +11008,7 @@ "1\n" "help.text" msgid "Other Symbols" -msgstr "Aรฐgerรฐir" +msgstr "ร–nnur tรกkn" #: 03091600.xhp msgctxt "" @@ -11137,7 +11138,7 @@ "par_idA3155330\n" "help.text" msgid "Icon" -msgstr "Tรกknmynd" +msgstr "Tรกknmynd" #: 03091600.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/smath.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/smath.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/smath.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/smath.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,17 +3,18 @@ msgstr "" "Project-Id-Version: smath\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:02+0100\n" -"PO-Revision-Date: 2011-08-05 09:41+0000\n" -"Last-Translator: Sveinn รญ Felli \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-10-16 13:11+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1445001088.000000\n" #: main0000.xhp msgctxt "" @@ -224,7 +225,7 @@ "2\n" "help.text" msgid "The commands in this menu are used to edit formulas. In addition to basic commands, (for example, copying contents) there are functions specific to $[officename] Math such as searching for placeholders or errors." -msgstr "Aรฐgerรฐir รญ รพessari valmynd eru notaรฐar til aรฐ breyta formรบlum. Fyrir utan grunnaรฐgerรฐir, (til dรฆmis, afrita innihald) รพรก eru lรญka aรฐgerรฐir sem eru sรฉrtรฆkar fyrir $[officename] Math eins og til dรฆmis aรฐ leita aรฐ staรฐgenglum eรฐa villum." +msgstr "Aรฐgerรฐir รญ รพessari valmynd eru notaรฐar til aรฐ breyta formรบlum. Fyrir utan grunnaรฐgerรฐir, (til dรฆmis, afrita innihald) รพรก eru lรญka aรฐgerรฐir sem eru sรฉrtรฆkar fyrir $[officename] Math eins og til dรฆmis aรฐ leita aรฐ frรกtรถkutรกknum eรฐa villum." #: main0103.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/00.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/00.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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: 2013-02-20 08:04+0000\n" +"PO-Revision-Date: 2015-10-19 15:14+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1361347493.000000\n" +"X-POOTLE-MTIME: 1445267684.000000\n" #: 00000004.xhp msgctxt "" @@ -380,7 +380,7 @@ "2\n" "help.text" msgid "Choose View - Ruler" -msgstr "" +msgstr "Veldu Skoรฐa - Mรฆlistika" #: 00000403.xhp msgctxt "" @@ -452,7 +452,7 @@ "7\n" "help.text" msgid "On Standard bar, click" -msgstr "" +msgstr "ร stรถรฐluรฐu stikunni, smelltu รก" #: 00000403.xhp msgctxt "" @@ -478,7 +478,7 @@ "9\n" "help.text" msgid "Choose View - Web Layout" -msgstr "" +msgstr "Veldu Skoรฐa - Vefskipulag" #: 00000403.xhp msgctxt "" @@ -487,7 +487,7 @@ "10\n" "help.text" msgid "On Tools bar, enable" -msgstr "" +msgstr "ร verkfรฆrastikunni, virkjaรฐu" #: 00000403.xhp msgctxt "" @@ -513,7 +513,7 @@ "12\n" "help.text" msgid "Choose View - Print Layout" -msgstr "" +msgstr "Veldu Skoรฐa - Prentskipulag" #: 00000403.xhp msgctxt "" @@ -657,7 +657,7 @@ "5\n" "help.text" msgid "On Insert toolbar, click" -msgstr "" +msgstr "ร innsetningarstikunni, smelltu รก" #: 00000404.xhp msgctxt "" @@ -772,7 +772,7 @@ "71\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: 00000404.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-09 14:40+0000\n" +"PO-Revision-Date: 2015-10-16 12:48+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441809647.000000\n" +"X-POOTLE-MTIME: 1444999729.000000\n" #: 01120000.xhp msgctxt "" @@ -22,10 +22,9 @@ "tit\n" "help.text" msgid "Print Preview" -msgstr "" +msgstr "Prentskoรฐun" #: 01120000.xhp -#, fuzzy msgctxt "" "01120000.xhp\n" "hd_id2013916\n" @@ -3550,7 +3549,7 @@ "4\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: 02170000.xhp msgctxt "" @@ -4160,7 +4159,7 @@ "tit\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: 04020100.xhp msgctxt "" @@ -4312,7 +4311,7 @@ "23\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: 04020100.xhp msgctxt "" @@ -12250,7 +12249,7 @@ "1\n" "help.text" msgid "Entries (indexes/tables)" -msgstr "Yfirlit yfir tรถflur" +msgstr "Fรฆrslur (atriรฐaskrรกr/tรถflur)" #: 04120220.xhp msgctxt "" @@ -12881,7 +12880,7 @@ "1\n" "help.text" msgid "Entries (user-defined index)" -msgstr "Efni รญ stafrรณfsrรถรฐ" +msgstr "Fรฆrslur (efnisyfirlit skilgreint af notanda)" #: 04120225.xhp msgctxt "" @@ -13246,7 +13245,7 @@ "12\n" "help.text" msgid "Formatting bibliography entries" -msgstr "Skilgreina bรณkagagnagrunnsfรฆrslu" +msgstr "Snรญรฐa bรณkagagnagrunnsfรฆrslur" #: 04120250.xhp msgctxt "" @@ -15268,7 +15267,7 @@ "1\n" "help.text" msgid "Outline & Numbering" -msgstr "Tรถlusetning" +msgstr "Tรถlusetning og efnisskipan" #: 05030800.xhp msgctxt "" @@ -18071,7 +18070,7 @@ "39\n" "help.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: 05060201.xhp msgctxt "" @@ -18097,7 +18096,7 @@ "41\n" "help.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: 05060201.xhp msgctxt "" @@ -18161,14 +18160,13 @@ msgstr "" #: 05060300.xhp -#, fuzzy msgctxt "" "05060300.xhp\n" "hd_id3154473\n" "1\n" "help.text" msgid "Image" -msgstr "Breyta" +msgstr "Mynd" #: 05060300.xhp msgctxt "" @@ -20909,7 +20907,7 @@ "4\n" "help.text" msgid "Width..." -msgstr "Setja inn..." +msgstr "Breidd..." #: 05120000.xhp msgctxt "" @@ -20918,7 +20916,7 @@ "6\n" "help.text" msgid "Optimal width" -msgstr "Besta hรฆรฐ" +msgstr "Besta breidd" #: 05120000.xhp msgctxt "" @@ -22358,7 +22356,7 @@ "1\n" "help.text" msgid "While Typing" -msgstr "Tรถlusetning" +msgstr "ร meรฐan skrifaรฐ er" #: 05150100.xhp msgctxt "" @@ -22394,7 +22392,7 @@ "25\n" "help.text" msgid "Other AutoCorrect rules" -msgstr "Sjรกlfvirk leiรฐrรฉtting" +msgstr "Aรฐrar reglur viรฐ sjรกlfvirka leiรฐrรฉttingu" #: 05150101.xhp msgctxt "" @@ -23231,7 +23229,7 @@ "7\n" "help.text" msgid "In background" -msgstr "Fjรถlvi" +msgstr "ร bakgrunni" #: 05180000.xhp msgctxt "" @@ -23258,7 +23256,7 @@ "8\n" "help.text" msgid "First paragraph" -msgstr "Faldar mรกlsgreinar" +msgstr "Fyrsta mรกlsgrein" #: 05180000.xhp msgctxt "" @@ -24216,7 +24214,7 @@ "1\n" "help.text" msgid "Footnotes/Endnotes Settings" -msgstr "Neรฐanmรกlsgreinar/eftirmรกlar" +msgstr "Stillingar neรฐanmรกlsgreina/eftirmรกla" #: 06080000.xhp msgctxt "" @@ -26252,7 +26250,7 @@ "par_idN105CC\n" "help.text" msgid "Mail Merge Wizard - Starting document" -msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu" +msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu - Upphafsskjal" #: mailmerge00.xhp msgctxt "" @@ -26412,7 +26410,7 @@ "par_idN1058B\n" "help.text" msgid "Mail Merge Wizard - Document type" -msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu" +msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu - Tegund skjals" #: mailmerge02.xhp msgctxt "" @@ -26476,7 +26474,7 @@ "par_idN10572\n" "help.text" msgid "Mail Merge Wizard - Addresses" -msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu" +msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu - Heimilisfรถng" #: mailmerge03.xhp msgctxt "" @@ -26812,7 +26810,7 @@ "par_idN105B1\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: mailmerge04.xhp msgctxt "" @@ -26860,7 +26858,7 @@ "par_idN105D4\n" "help.text" msgid "Mail Merge Wizard - Adjust layout" -msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu" +msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu - Laga framsetningu" #: mailmerge05.xhp msgctxt "" @@ -26996,7 +26994,7 @@ "par_idN10580\n" "help.text" msgid "Mail Merge Wizard - Edit document" -msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu" +msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu - Breyta skjali" #: mailmerge06.xhp msgctxt "" @@ -27220,7 +27218,7 @@ "par_idN10580\n" "help.text" msgid "Mail Merge Wizard - Save, print or send" -msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu" +msgstr "Leiรฐarvรญsir fyrir pรณstsameiningu - Vista, prenta eรฐa senda" #: mailmerge08.xhp msgctxt "" @@ -27790,7 +27788,7 @@ "par_idN10585\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: mm_cusaddfie.xhp msgctxt "" @@ -28016,7 +28014,7 @@ "par_idN10574\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: mm_cusgrelin.xhp msgctxt "" @@ -28352,7 +28350,7 @@ "par_idN10555\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: mm_matfie.xhp msgctxt "" @@ -28458,7 +28456,7 @@ "par_idN10585\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: mm_newaddblo.xhp msgctxt "" @@ -28882,7 +28880,7 @@ "par_idN10557\n" "help.text" msgid "Preview" -msgstr "Forsรฝn" +msgstr "Forskoรฐun" #: mm_seltab.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/02.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-09 14:22+0000\n" +"PO-Revision-Date: 2015-10-16 12:50+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441808546.000000\n" +"X-POOTLE-MTIME: 1444999845.000000\n" #: 02110000.xhp msgctxt "" @@ -961,7 +961,7 @@ "tit\n" "help.text" msgid "Preview Zoom" -msgstr "Aรฐdrรกttur forsรฝnar" +msgstr "Aรฐdrรกttur forskoรฐunar" #: 10030000.xhp msgctxt "" @@ -970,7 +970,7 @@ "1\n" "help.text" msgid "Preview Zoom" -msgstr "Aรฐdrรกttur forsรฝnar" +msgstr "Aรฐdrรกttur forskoรฐunar" #: 10030000.xhp msgctxt "" @@ -987,7 +987,7 @@ "tit\n" "help.text" msgid "Two Pages Preview" -msgstr "" +msgstr "Forskoรฐun tveggja sรญรฐna" #: 10050000.xhp msgctxt "" @@ -996,7 +996,7 @@ "1\n" "help.text" msgid "Two Pages Preview" -msgstr "" +msgstr "Forskoรฐun tveggja sรญรฐna" #: 10050000.xhp msgctxt "" @@ -1022,7 +1022,7 @@ "3\n" "help.text" msgid "Two Pages Preview" -msgstr "" +msgstr "Forskoรฐun tveggja sรญรฐna" #: 10070000.xhp msgctxt "" @@ -1030,7 +1030,7 @@ "tit\n" "help.text" msgid "Multiple Pages Preview" -msgstr "" +msgstr "Forskoรฐun margra sรญรฐna" #: 10070000.xhp msgctxt "" @@ -1056,7 +1056,7 @@ "3\n" "help.text" msgid "Multiple Pages Preview" -msgstr "" +msgstr "Forskoรฐun margra sรญรฐna" #: 10070000.xhp msgctxt "" @@ -3178,7 +3178,7 @@ "18\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: 18010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/04.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/04.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/04.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/04.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 18:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-14 15:01+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439489272.000000\n" +"X-POOTLE-MTIME: 1444834887.000000\n" #: 01020000.xhp msgctxt "" @@ -769,7 +769,7 @@ "89\n" "help.text" msgid "Redo last action" -msgstr "Endurtaka sรญรฐustu aรฐgerรฐ" +msgstr "Gera aftur sรญรฐustu aรฐgerรฐ" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter/guide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter/guide.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-09-09 14:38+0000\n" +"PO-Revision-Date: 2015-10-14 13:50+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441809511.000000\n" +"X-POOTLE-MTIME: 1444830643.000000\n" #: anchor_object.xhp msgctxt "" @@ -1001,7 +1001,7 @@ "28\n" "help.text" msgid "Choose Edit - AutoText." -msgstr "Choose Breyta - Sjรกlfvirkur texti." +msgstr "Veldu Breyta - Sjรกlfvirkur texti." #: autotext.xhp msgctxt "" @@ -1849,7 +1849,7 @@ "par_id6129947\n" "help.text" msgid "Choose Table - Table properties." -msgstr "Choose Tafla - Eiginleikar tรถflu." +msgstr "Veldu Tafla - Eiginleikar tรถflu." #: borders.xhp msgctxt "" @@ -5835,7 +5835,7 @@ "tit\n" "help.text" msgid "Master Documents and Subdocuments" -msgstr "" +msgstr "Stรฝriskjรถl og undirskjรถl" #: globaldoc.xhp msgctxt "" @@ -6098,7 +6098,7 @@ "37\n" "help.text" msgid "To Edit a Master Document" -msgstr "" +msgstr "Aรฐ breyta stรฝriskjali (master)" #: globaldoc_howtos.xhp msgctxt "" @@ -13360,7 +13360,7 @@ "15\n" "help.text" msgid "Choose Format - Sections." -msgstr "Choose Snรญรฐa - Hlutar." +msgstr "Veldu Snรญรฐa - Hlutar." #: section_edit.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter.po libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/helpcontent2/source/text/swriter.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/helpcontent2/source/text/swriter.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: swriter\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-26 15:12+0000\n" +"PO-Revision-Date: 2015-10-16 12:47+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440601965.000000\n" +"X-POOTLE-MTIME: 1444999655.000000\n" #: main0000.xhp msgctxt "" @@ -395,7 +395,7 @@ "4\n" "help.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: main0104.xhp msgctxt "" @@ -1621,7 +1621,7 @@ "tit\n" "help.text" msgid "Print Preview" -msgstr "Forskoรฐa prentun" +msgstr "Prentskoรฐun" #: main0210.xhp msgctxt "" @@ -1630,7 +1630,7 @@ "1\n" "help.text" msgid "Print Preview" -msgstr "Forskoรฐa prentun" +msgstr "Prentskoรฐun" #: main0210.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/nlpsolver/src/locale.po libreoffice-l10n-5.0.3~rc2/translations/source/is/nlpsolver/src/locale.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/nlpsolver/src/locale.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/nlpsolver/src/locale.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:06+0200\n" -"PO-Revision-Date: 2012-04-05 16:39+0200\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: LANGUAGE \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-10-14 09:34+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444815267.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -173,7 +174,7 @@ "NLPSolverStatusDialog.Controls.lblSolution\n" "property.text" msgid "Current Solution:" -msgstr "รžessi kafli" +msgstr "Nรบverandi lausn:" #: NLPSolverStatusDialog_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: UI\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-09-09 15:20+0000\n" +"PO-Revision-Date: 2015-10-16 12:51+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441812001.000000\n" +"X-POOTLE-MTIME: 1444999907.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -293,7 +293,7 @@ "Label\n" "value.text" msgid "Reset Filter" -msgstr " Nรบllstilla sรญu" +msgstr "Nรบllstilla sรญu" #: CalcCommands.xcu msgctxt "" @@ -3290,7 +3290,7 @@ "Label\n" "value.text" msgid "~Data" -msgstr "G~รถgn" +msgstr "~Gรถgn" #: CalcCommands.xcu msgctxt "" @@ -3605,7 +3605,7 @@ "Label\n" "value.text" msgid "~Replace Image..." -msgstr "Skipta รบt ~mynd" +msgstr "Skipta รบt ~mynd..." #: CalcWindowState.xcu msgctxt "" @@ -4154,7 +4154,7 @@ "Label\n" "value.text" msgid "S~econdary X Axis Title..." -msgstr "Aukatitill รก X-รกs..." +msgstr "~Aukatitill รก X-รกs..." #: ChartCommands.xcu msgctxt "" @@ -4163,7 +4163,7 @@ "Label\n" "value.text" msgid "Se~condary Y Axis Title..." -msgstr "Aukatitill รก Y-รกs..." +msgstr "Au~katitill รก Y-รกs..." #: ChartCommands.xcu msgctxt "" @@ -4262,7 +4262,7 @@ "Label\n" "value.text" msgid "Y Axis Minor ~Grid..." -msgstr "Aukamรถskvar รก Y-รกs..." +msgstr "Aukamรถskvar รก ~Y-รกs..." #: ChartCommands.xcu msgctxt "" @@ -4271,7 +4271,7 @@ "Label\n" "value.text" msgid "X Axis ~Minor Grid..." -msgstr "Aukamรถskvar รก X-รกs..." +msgstr "Aukamรถskvar รก ~X-รกs..." #: ChartCommands.xcu msgctxt "" @@ -4280,7 +4280,7 @@ "Label\n" "value.text" msgid "Z Ax~is Minor Grid..." -msgstr "Aukamรถskvar รก Z-รกs..." +msgstr "Aukamรถskvar รก ~Z-รกs..." #: ChartCommands.xcu msgctxt "" @@ -4559,7 +4559,7 @@ "Label\n" "value.text" msgid "Delete Mean ~Value Line" -msgstr "Eyรฐa miรฐgildislรญnu" +msgstr "E~yรฐa miรฐgildislรญnu" #: ChartCommands.xcu msgctxt "" @@ -5144,7 +5144,7 @@ "UIName\n" "value.text" msgid "Align at Section" -msgstr "Jafna viรฐ kafla" +msgstr "Jafna viรฐ efnishluta" #: DbReportWindowState.xcu msgctxt "" @@ -5153,7 +5153,7 @@ "UIName\n" "value.text" msgid "Shrink at Section" -msgstr "Minnka viรฐ kafla" +msgstr "Minnka viรฐ efnishluta" #: DbReportWindowState.xcu msgctxt "" @@ -5864,7 +5864,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Forskoรฐa" +msgstr "Forskoรฐun" #: DbuCommands.xcu msgctxt "" @@ -5909,7 +5909,7 @@ "Label\n" "value.text" msgid "Preview" -msgstr "Forskoรฐa" +msgstr "Forskoรฐun" #: DrawImpressCommands.xcu msgctxt "" @@ -6350,7 +6350,7 @@ "Label\n" "value.text" msgid "Custom Animation..." -msgstr "Sรฉrsniรฐnar hreyfimyndir..." +msgstr "Sรฉrsniรฐin hreyfing..." #: DrawImpressCommands.xcu msgctxt "" @@ -6602,7 +6602,7 @@ "Label\n" "value.text" msgid "~Grayscale" -msgstr "~Grรกskali" +msgstr "~Grรกtรณna" #: DrawImpressCommands.xcu msgctxt "" @@ -6629,7 +6629,7 @@ "Label\n" "value.text" msgid "~Grayscale" -msgstr "~Grรกskali" +msgstr "~Grรกtรณna" #: DrawImpressCommands.xcu msgctxt "" @@ -6791,7 +6791,7 @@ "Label\n" "value.text" msgid "~Outline" -msgstr "รš~tlรญna" +msgstr "~Efnisskipan" #: DrawImpressCommands.xcu msgctxt "" @@ -6944,7 +6944,7 @@ "Label\n" "value.text" msgid "To ~Curve" -msgstr "ร ~kรบrvu" +msgstr "ร ~feril" #: DrawImpressCommands.xcu msgctxt "" @@ -7124,7 +7124,7 @@ "Label\n" "value.text" msgid "Slide Layout" -msgstr "~Framsetning skyggnu" +msgstr "Framsetning skyggnu" #: DrawImpressCommands.xcu msgctxt "" @@ -7403,7 +7403,7 @@ "Label\n" "value.text" msgid "Curve" -msgstr "Boglรญna" +msgstr "Ferill" #: DrawImpressCommands.xcu msgctxt "" @@ -7448,7 +7448,7 @@ "Label\n" "value.text" msgid "Curved Connector" -msgstr "Bogin lรญna" +msgstr "Bogin tengilรญna" #: DrawImpressCommands.xcu msgctxt "" @@ -8015,7 +8015,7 @@ "Label\n" "value.text" msgid "~Color/Grayscale" -msgstr "~Litur/grรกskali" +msgstr "~Litur/grรกtรณna" #: DrawImpressCommands.xcu msgctxt "" @@ -9338,7 +9338,7 @@ "Label\n" "value.text" msgid "Curve Up" -msgstr "Sveigist upp" +msgstr "Ferill upp" #: Effects.xcu msgctxt "" @@ -10013,7 +10013,7 @@ "Label\n" "value.text" msgid "Curve Down" -msgstr "Kรบrfa niรฐur" +msgstr "Ferill niรฐur" #: Effects.xcu msgctxt "" @@ -10409,7 +10409,7 @@ "Label\n" "value.text" msgid "S Curve 1" -msgstr "S boglรญna 1" +msgstr "S ferill 1" #: Effects.xcu msgctxt "" @@ -10418,7 +10418,7 @@ "Label\n" "value.text" msgid "S Curve 2" -msgstr "S boglรญna 2" +msgstr "S ferill 2" #: Effects.xcu msgctxt "" @@ -10787,7 +10787,7 @@ "Label\n" "value.text" msgid "Lines and Curves" -msgstr "Lรญnur og kรบrvur" +msgstr "Lรญnur og ferlar" #: Effects.xcu msgctxt "" @@ -12011,7 +12011,7 @@ "Label\n" "value.text" msgid "Lines and Curves" -msgstr "Lรญnur og kรบrvur" +msgstr "Lรญnur og ferlar" #: Effects.xcu msgctxt "" @@ -12272,7 +12272,7 @@ "Label\n" "value.text" msgid "Preview in Web Browser" -msgstr "Sรฝna รญ vefskoรฐara" +msgstr "Forskoรฐa รญ vafra" #: GenericCommands.xcu msgctxt "" @@ -13460,7 +13460,7 @@ "Label\n" "value.text" msgid "Curve Up" -msgstr "Sveigist upp" +msgstr "Ferill upp" #: GenericCommands.xcu msgctxt "" @@ -13469,7 +13469,7 @@ "Label\n" "value.text" msgid "Curve Down" -msgstr "Kรบrfa niรฐur" +msgstr "Ferill niรฐur" #: GenericCommands.xcu msgctxt "" @@ -13586,7 +13586,7 @@ "Label\n" "value.text" msgid "Arch Up (Curve)" -msgstr "Bogi upp" +msgstr "Bogi upp (ferill)" #: GenericCommands.xcu msgctxt "" @@ -13595,7 +13595,7 @@ "Label\n" "value.text" msgid "Arch Down (Curve)" -msgstr "Bogi niรฐur" +msgstr "Bogi niรฐur (ferill)" #: GenericCommands.xcu msgctxt "" @@ -13604,7 +13604,7 @@ "Label\n" "value.text" msgid "Arch Left (Curve)" -msgstr "Bogi vinstri (Boginn)" +msgstr "Bogi vinstri (ferill)" #: GenericCommands.xcu msgctxt "" @@ -13613,7 +13613,7 @@ "Label\n" "value.text" msgid "Arch Right (Curve)" -msgstr "Bogi hรฆgri (Boginn)" +msgstr "Bogi hรฆgri (ferill)" #: GenericCommands.xcu msgctxt "" @@ -13622,7 +13622,7 @@ "Label\n" "value.text" msgid "Circle (Curve)" -msgstr "Hringur (Ferill)" +msgstr "Hringur (ferill)" #: GenericCommands.xcu msgctxt "" @@ -13631,7 +13631,7 @@ "Label\n" "value.text" msgid "Open Circle (Curve)" -msgstr "Opinn hringur (Boginn)" +msgstr "Opinn hringur (ferill)" #: GenericCommands.xcu msgctxt "" @@ -14459,7 +14459,7 @@ "Label\n" "value.text" msgid "Eliminate Points" -msgstr "รštrรฝma punktum" +msgstr "Eyรฐa punktum" #: GenericCommands.xcu msgctxt "" @@ -14605,7 +14605,7 @@ "Label\n" "value.text" msgid "Curve, Filled" -msgstr "Kรบrva, fyllt" +msgstr "Ferill, fylltur" #: GenericCommands.xcu msgctxt "" @@ -14659,7 +14659,7 @@ "Label\n" "value.text" msgid "Close Bรฉzier" -msgstr "Loka Bรฉzier-kรบrvu" +msgstr "Loka Bรฉzier-ferli" #: GenericCommands.xcu msgctxt "" @@ -14704,7 +14704,7 @@ "Label\n" "value.text" msgid "Split Curve" -msgstr "Slรญta kรบrvu" +msgstr "Slรญta feril" #: GenericCommands.xcu msgctxt "" @@ -14983,7 +14983,7 @@ "Label\n" "value.text" msgid "Convert to Curve" -msgstr "Umbreyta รญ kรบrvu" +msgstr "Umbreyta รญ feril" #: GenericCommands.xcu msgctxt "" @@ -14992,7 +14992,7 @@ "Label\n" "value.text" msgid "Stop Loading" -msgstr "Stรถรฐva aรฐ hlaรฐa" +msgstr "Stรถรฐva hleรฐslu" #: GenericCommands.xcu msgctxt "" @@ -15010,7 +15010,7 @@ "Label\n" "value.text" msgid "~Hiragana" -msgstr "~Hiraganรญska" +msgstr "~Hiragana" #: GenericCommands.xcu msgctxt "" @@ -15982,7 +15982,7 @@ "Label\n" "value.text" msgid "~Image..." -msgstr "~Mynd" +msgstr "~Mynd..." #: GenericCommands.xcu msgctxt "" @@ -16387,7 +16387,7 @@ "Label\n" "value.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: GenericCommands.xcu msgctxt "" @@ -16990,7 +16990,7 @@ "Label\n" "value.text" msgid "Curve" -msgstr "Boglรญna" +msgstr "Ferill" #: GenericCommands.xcu msgctxt "" @@ -18988,7 +18988,7 @@ "Label\n" "value.text" msgid "Recent Doc~uments" -msgstr "Nรฝleg skj~รถl" +msgstr "Nรฝleg s~kjรถl" #: GenericCommands.xcu msgctxt "" @@ -19375,7 +19375,7 @@ "Label\n" "value.text" msgid "S~oft hyphen" -msgstr "Setja inn breytilegt bandstrik" +msgstr "Bre~ytileg bandstrik" #: GenericCommands.xcu msgctxt "" @@ -19393,7 +19393,7 @@ "Label\n" "value.text" msgid "No-~width optional break" -msgstr "Breiddarlaus mรถguleg skil" +msgstr "~Breiddarlaus mรถguleg skil" #: GenericCommands.xcu msgctxt "" @@ -19402,7 +19402,7 @@ "Label\n" "value.text" msgid "No-width no ~break" -msgstr "Breiddarlaus andskil" +msgstr "Brei~ddarlaus andskil" #: GenericCommands.xcu msgctxt "" @@ -19735,7 +19735,7 @@ "UIName\n" "value.text" msgid "Outline" -msgstr "รštlรญna" +msgstr "Efnisskipan" #: ImpressWindowState.xcu msgctxt "" @@ -20320,7 +20320,7 @@ "Label\n" "value.text" msgid "~Conditional Formatting..." -msgstr "Skilyrt f~orsnรญรฐing" +msgstr "Skilyrt f~orsnรญรฐing..." #: ReportCommands.xcu msgctxt "" @@ -20527,7 +20527,7 @@ "Label\n" "value.text" msgid "~Select Objects in Section" -msgstr "~Velja hluti รญ kafla" +msgstr "~Velja hluti รญ efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20536,7 +20536,7 @@ "Label\n" "value.text" msgid "Left Align on Section" -msgstr "Vinstri-jafna รก kafla" +msgstr "Vinstri-jafna รก efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20545,7 +20545,7 @@ "Label\n" "value.text" msgid "Right Align on Section" -msgstr "Hรฆgri-jafna รก kafla" +msgstr "Hรฆgri-jafna รก efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20554,7 +20554,7 @@ "Label\n" "value.text" msgid "Top Align on Section" -msgstr "Jafna efst รก kafla" +msgstr "Jafna efst รก efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20563,7 +20563,7 @@ "Label\n" "value.text" msgid "Bottom Align on Section" -msgstr "Jafna neรฐst รก kafla" +msgstr "Jafna neรฐst รก efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20572,7 +20572,7 @@ "Label\n" "value.text" msgid "Centered on Section" -msgstr "Miรฐja รก kafla" +msgstr "Miรฐja รก efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20581,7 +20581,7 @@ "Label\n" "value.text" msgid "Middle on Section" -msgstr "Miรฐjaรฐ รก kafla" +msgstr "Miรฐjaรฐ รก efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20644,7 +20644,7 @@ "Label\n" "value.text" msgid "Section alignment" -msgstr "Jรถfnun kafla" +msgstr "Jรถfnun efnishluta" #: ReportCommands.xcu msgctxt "" @@ -20725,7 +20725,7 @@ "Label\n" "value.text" msgid "Section" -msgstr " Kafli" +msgstr "Efnishluti" #: ReportCommands.xcu msgctxt "" @@ -20824,7 +20824,7 @@ "Title\n" "value.text" msgid "Custom Animation" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Sรฉrsniรฐin hreyfing" #: Sidebar.xcu msgctxt "" @@ -20995,7 +20995,7 @@ "Title\n" "value.text" msgid "Custom Animation" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Sรฉrsniรฐin hreyfing" #: Sidebar.xcu msgctxt "" @@ -21130,7 +21130,7 @@ "Title\n" "value.text" msgid "Style Presets" -msgstr "Forstillingar stรญla:" +msgstr "Forstillingar stรญla" #: Sidebar.xcu msgctxt "" @@ -21508,7 +21508,7 @@ "Label\n" "value.text" msgid "Preview Zoom" -msgstr "Aรฐdrรกttur forsรฝnar" +msgstr "Aรฐdrรกttur forskoรฐunar" #: WriterCommands.xcu msgctxt "" @@ -21535,7 +21535,7 @@ "Label\n" "value.text" msgid "~Section..." -msgstr "~Kafli..." +msgstr "~Efnishluti..." #: WriterCommands.xcu msgctxt "" @@ -21751,7 +21751,7 @@ "Label\n" "value.text" msgid "All ~Charts" -msgstr "~ร–ll lรญnurit" +msgstr "ร–~ll lรญnurit" #: WriterCommands.xcu msgctxt "" @@ -22579,7 +22579,7 @@ "Label\n" "value.text" msgid "To Next Section" -msgstr "Aรฐ nรฆsta kafla" +msgstr "Aรฐ nรฆsta efnishluta" #: WriterCommands.xcu msgctxt "" @@ -22588,7 +22588,7 @@ "Label\n" "value.text" msgid "To Previous Section" -msgstr "Aรฐ fyrri kafla" +msgstr "Aรฐ fyrri efnishluta" #: WriterCommands.xcu msgctxt "" @@ -22759,7 +22759,7 @@ "ContextLabel\n" "value.text" msgid "~Image..." -msgstr "~Mynd" +msgstr "~Mynd..." #: WriterCommands.xcu msgctxt "" @@ -23893,7 +23893,7 @@ "Label\n" "value.text" msgid "~Sections..." -msgstr "~Kaflar..." +msgstr "~Efnishlutar..." #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: Office\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-25 16:13+0000\n" +"PO-Revision-Date: 2015-10-15 16:49+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440519189.000000\n" +"X-POOTLE-MTIME: 1444927764.000000\n" #: Addons.xcu msgctxt "" @@ -1229,7 +1229,7 @@ "STR_DELETE_NOTES_PAGES\n" "value.text" msgid "~Clear notes" -msgstr "~Eyรฐa minnismiรฐum" +msgstr "~Eyรฐa minnispunktum" #: PresentationMinimizer.xcu msgctxt "" @@ -11579,7 +11579,7 @@ "DisplayName\n" "value.text" msgid "Master documents" -msgstr "Aรฐalskjรถl" +msgstr "Stรฝriskjรถl" #: UI.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/reportdesign/source/ui/inspection.po libreoffice-l10n-5.0.3~rc2/translations/source/is/reportdesign/source/ui/inspection.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/reportdesign/source/ui/inspection.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/reportdesign/source/ui/inspection.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-08-05 22:26+0000\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: LANGUAGE \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-10-15 16:31+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1375741610.0\n" +"X-POOTLE-MTIME: 1444926715.000000\n" #: inspection.src msgctxt "" @@ -267,7 +267,7 @@ "2\n" "string.text" msgid "Section" -msgstr "Hluti" +msgstr "Efnishluti" #: inspection.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: src\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-09-09 15:25+0000\n" +"PO-Revision-Date: 2015-10-15 16:52+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441812308.000000\n" +"X-POOTLE-MTIME: 1444927942.000000\n" #: condformatdlg.src msgctxt "" @@ -23,7 +23,7 @@ "STR_CONDITION\n" "string.text" msgid "Condition " -msgstr "Skilyrรฐi" +msgstr "Skilyrรฐi " #: condformatdlg.src msgctxt "" @@ -5265,7 +5265,7 @@ "STR_COND_LAST7DAYS\n" "string.text" msgid "in the last 7 days" -msgstr "sรญรฐustu 7 daga" +msgstr "sรญรฐustu 7 daga" #: globstr.src msgctxt "" @@ -5292,7 +5292,7 @@ "STR_COND_NEXTWEEK\n" "string.text" msgid "next week" -msgstr "ร nรฆstu viku" +msgstr "รญ nรฆstu viku" #: globstr.src msgctxt "" @@ -5319,7 +5319,7 @@ "STR_COND_NEXTMONTH\n" "string.text" msgid "next month" -msgstr "ร nรฆsta mรกnuรฐi" +msgstr "รญ nรฆsta mรกnuรฐi" #: globstr.src msgctxt "" @@ -5346,7 +5346,7 @@ "STR_COND_NEXTYEAR\n" "string.text" msgid "next year" -msgstr "Nรฆsta รกr" +msgstr "nรฆsta รกr" #: globstr.src msgctxt "" @@ -5888,7 +5888,7 @@ "SID_PASTE_ONLY_TEXT\n" "menuitem.text" msgid "~Text" -msgstr "~Texti" +msgstr "~Texta" #: popup.src msgctxt "" @@ -5897,7 +5897,7 @@ "SID_PASTE_ONLY_VALUE\n" "menuitem.text" msgid "~Number" -msgstr "~Tala" +msgstr "~Tรถlu" #: popup.src msgctxt "" @@ -5906,7 +5906,7 @@ "SID_PASTE_ONLY_FORMULA\n" "menuitem.text" msgid "~Formula" -msgstr "~Formรบla" +msgstr "~Formรบlu" #: popup.src msgctxt "" @@ -9305,7 +9305,7 @@ "9\n" "string.text" msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period." -msgstr "Upphafstรญmabiliรฐ. Fyrsta tรญmabiliรฐ sem รก aรฐ nota. U = 1 skilgreinir fyrsta tรญmabiliรฐ." +msgstr "Upphafstรญmabiliรฐ. Fyrsta tรญmabiliรฐ sem รก aรฐ nota. U = 1 skilgreinir fyrsta tรญmabiliรฐ." #: scfuncs.src msgctxt "" @@ -9422,7 +9422,7 @@ "9\n" "string.text" msgid "The start period. The first period to be taken into account. S = 1 denotes the very first period." -msgstr "Upphafstรญmabiliรฐ. Fyrsta tรญmabiliรฐ sem รก aรฐ nota. U = 1 skilgreinir fyrsta tรญmabiliรฐ." +msgstr "Upphafstรญmabiliรฐ. Fyrsta tรญmabiliรฐ sem รก aรฐ nota. U = 1 skilgreinir fyrsta tรญmabiliรฐ." #: scfuncs.src msgctxt "" @@ -10808,7 +10808,7 @@ "1\n" "string.text" msgid "Defines the logical value as FALSE." -msgstr "Skilgreinir rรถkgildiรฐ sem SATT." +msgstr "Skilgreinir rรถkgildiรฐ sem ร“SATT." #: scfuncs.src msgctxt "" @@ -11132,7 +11132,7 @@ "3\n" "string.text" msgid "The base a of the power a^b." -msgstr "Gildiรฐ a รญ veldinu veldinu a^b." +msgstr "Gildiรฐ a รญ veldinu a^b." #: scfuncs.src msgctxt "" @@ -11447,7 +11447,7 @@ "6\n" "string.text" msgid "criteria " -msgstr "forsenda" +msgstr "forsenda " #: scfuncs.src msgctxt "" @@ -11510,7 +11510,7 @@ "6\n" "string.text" msgid "criteria " -msgstr "forsenda" +msgstr "forsenda " #: scfuncs.src msgctxt "" @@ -11555,7 +11555,7 @@ "4\n" "string.text" msgid "criteria " -msgstr "forsenda" +msgstr "forsenda " #: scfuncs.src msgctxt "" @@ -21958,7 +21958,7 @@ "5\n" "string.text" msgid "The number of rows to be moved either up or down." -msgstr "Fjรถldi raรฐa sem sem fรฆra รก annaรฐhvort upp eรฐa niรฐur." +msgstr "Fjรถldi raรฐa sem fรฆra รก annaรฐhvort upp eรฐa niรฐur." #: scfuncs.src msgctxt "" @@ -23173,7 +23173,7 @@ "3\n" "string.text" msgid "The text in which the end partial words are to be determined." -msgstr "Textinn sem sem finna รก stafi aftast รบr." +msgstr "Textinn sem finna รก stafi aftast รบr." #: scfuncs.src msgctxt "" @@ -23263,7 +23263,7 @@ "1\n" "string.text" msgid "Repeats text a given number of times." -msgstr "Endurtekur texta." +msgstr "Endurtekur texta รกkveรฐiรฐ mรถrgum sinnum." #: scfuncs.src msgctxt "" @@ -23876,7 +23876,7 @@ "1\n" "string.text" msgid "Bitwise \"AND\" of two integers." -msgstr "Bita-OG af tveimur tรถlum." +msgstr "Bita- \"OG\" af tveimur tรถlum." #: scfuncs.src msgctxt "" @@ -23921,7 +23921,7 @@ "1\n" "string.text" msgid "Bitwise \"OR\" of two integers." -msgstr "Bita-EรA af tveimur tรถlum." +msgstr "Bita- \"EรA\" af tveimur tรถlum." #: scfuncs.src msgctxt "" @@ -24407,7 +24407,7 @@ "1\n" "string.text" msgid "Get some webcontent from an URI." -msgstr "Fรก eitthvaรฐ vefefni frรก slรณรฐ" +msgstr "Fรก eitthvaรฐ vefefni frรก slรณรฐ." #: scfuncs.src msgctxt "" @@ -25526,7 +25526,7 @@ "~All sheets\n" "itemlist.text" msgid "~All sheets" -msgstr "~ร–ll blรถรฐ" +msgstr "ร–ll ~blรถรฐ" #: scstring.src msgctxt "" @@ -25571,7 +25571,7 @@ "Pa~ges\n" "itemlist.text" msgid "Pa~ges" -msgstr "Sรญรฐur" +msgstr "Sรญรฐ~ur" #: scstring.src msgctxt "" @@ -25845,7 +25845,7 @@ "STR_DEL_AUTOFORMAT_MSG\n" "string.text" msgid "Do you really want to delete the # AutoFomat?" -msgstr "Viltu รญ alvรถrunni eyรฐa sjรกlfvirku sniรฐi #?" +msgstr "Viltu รญ alvรถrunni eyรฐa sjรกlfvirka sniรฐinu #?" #: scstring.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sc/uiconfig/scalc/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-25 16:12+0000\n" +"PO-Revision-Date: 2015-10-14 15:27+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440519155.000000\n" +"X-POOTLE-MTIME: 1444836453.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -122,7 +122,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Hausar/Fรฆtur" +msgstr "Sรญรฐuhausar/sรญรฐufรฆtur" #: allheaderfooterdialog.ui msgctxt "" @@ -3062,7 +3062,7 @@ "label\n" "string.text" msgid "Borders" -msgstr "Spรกssรญur" +msgstr "Jaรฐrar" #: formatcellsdialog.ui msgctxt "" @@ -3593,7 +3593,7 @@ "label\n" "string.text" msgid "_Footer" -msgstr "_Fรณtur" +msgstr "Sรญรฐu_fรณtur" #: headerfootercontent.ui msgctxt "" @@ -3845,7 +3845,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Hausar/Fรฆtur" +msgstr "Sรญรฐuhausar/sรญรฐufรฆtur" #: headerfooterdialog.ui msgctxt "" @@ -7247,7 +7247,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Hausar/Fรฆtur" +msgstr "Sรญรฐuhausar/sรญรฐufรฆtur" #: sharedfooterdialog.ui msgctxt "" @@ -7283,7 +7283,7 @@ "title\n" "string.text" msgid "Headers/Footers" -msgstr "Hausar/Fรฆtur" +msgstr "Sรญรฐuhausar/sรญรฐufรฆtur" #: sharedheaderdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/scaddins/source/datefunc.po libreoffice-l10n-5.0.3~rc2/translations/source/is/scaddins/source/datefunc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/scaddins/source/datefunc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/scaddins/source/datefunc.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-04-05 11:02+0200\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: LANGUAGE \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-10-14 10:37+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444819035.000000\n" #: datefunc.src msgctxt "" @@ -211,7 +212,7 @@ "1\n" "string.text" msgid "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)." -msgstr "Gefur 1 (TRUE) ef dagsetningin er dagur รญ hlaupรกri, annars 0 (FALSE)." +msgstr "Gefur 1 (SATT) ef dagsetningin er dagur รญ hlaupรกri, annars 0 (ร“SATT)." #: datefunc.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/scp2/source/extensions.po libreoffice-l10n-5.0.3~rc2/translations/source/is/scp2/source/extensions.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/scp2/source/extensions.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/scp2/source/extensions.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: extensions\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-06-04 20:46+0000\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-13 08:05+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1356517313.0\n" +"X-POOTLE-MTIME: 1444723557.000000\n" #: module_extensions.ulf msgctxt "" @@ -38,7 +38,7 @@ "STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MEDIAWIKI\n" "LngText.text" msgid "MediaWiki Publisher" -msgstr "MediaWiki รบtgรกfuforrit" +msgstr "MediaWiki รบtgรกfustjรณrn" #: module_extensions.ulf msgctxt "" @@ -46,7 +46,7 @@ "STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MEDIAWIKI\n" "LngText.text" msgid "MediaWiki Publisher" -msgstr "MediaWiki รบtgรกfuforrit" +msgstr "MediaWiki รบtgรกfustjรณrn" #: module_extensions.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sd/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sd/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sd/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: app\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-20 14:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 12:52+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440079631.000000\n" +"X-POOTLE-MTIME: 1444999938.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -23,7 +23,7 @@ "SID_CHANGEBEZIER\n" "menuitem.text" msgid "To ~Curve" -msgstr "ร ~kรบrvu" +msgstr "ร ~feril" #: menuids3_tmpl.src msgctxt "" @@ -680,7 +680,7 @@ "SID_BEZIER_CUTLINE\n" "menuitem.text" msgid "~Split Curve" -msgstr "~Slรญta kรบrvu" +msgstr "~Slรญta feril" #: menuids_tmpl.src msgctxt "" @@ -689,7 +689,7 @@ "SID_BEZIER_CONVERT\n" "menuitem.text" msgid "Con~vert to Curve" -msgstr "Umbreyta รญ kรบr~vu" +msgstr "Umbre~yta รญ feril" #: menuids_tmpl.src msgctxt "" @@ -1319,7 +1319,7 @@ "SID_TP_SHOW_LARGE_PREVIEW\n" "menuitem.text" msgid "Show ~Large Preview" -msgstr "Sรฝna s~tรณra forsรฝningu" +msgstr "Sรฝna s~tรณra forskoรฐun" #: popup.src msgctxt "" @@ -1328,7 +1328,7 @@ "SID_TP_SHOW_SMALL_PREVIEW\n" "menuitem.text" msgid "Show S~mall Preview" -msgstr "Sรฝna ~litla forsรฝningu" +msgstr "Sรฝna ~litla forskoรฐun" #: popup.src msgctxt "" @@ -1364,7 +1364,7 @@ "SID_TP_SHOW_LARGE_PREVIEW\n" "menuitem.text" msgid "Show ~Large Preview" -msgstr "Sรฝna s~tรณra forsรฝningu" +msgstr "Sรฝna s~tรณra forskoรฐun" #: popup.src msgctxt "" @@ -1373,7 +1373,7 @@ "SID_TP_SHOW_SMALL_PREVIEW\n" "menuitem.text" msgid "Show S~mall Preview" -msgstr "Sรฝna ~litla forsรฝningu" +msgstr "Sรฝna ~litla forskoรฐun" #: popup.src msgctxt "" @@ -2580,7 +2580,7 @@ "STR_ASK_FOR_CONVERT_TO_BEZIER\n" "string.text" msgid "Convert selected object to curve?" -msgstr "Umbreyta vรถldum hlut รญ kรบrvu?" +msgstr "Umbreyta vรถldum hlut รญ feril?" #: strings.src msgctxt "" @@ -3808,7 +3808,7 @@ "STR_TASKPANEL_PREPARING_PREVIEW_SUBSTITUTION\n" "string.text" msgid "Preparing preview" -msgstr "Forskoรฐun undirbรบin" +msgstr "Undirbรฝ forskoรฐun" #: strings.src msgctxt "" @@ -3848,7 +3848,7 @@ "STR_CUSTOMANIMATIONPANE\n" "string.text" msgid "Custom Animation" -msgstr "Sรฉrsniรฐnar hreyfimyndir" +msgstr "Sรฉrsniรฐin hreyfing" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-20 14:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 10:09+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440079557.000000\n" +"X-POOTLE-MTIME: 1444990172.000000\n" #: assistentdialog.ui msgctxt "" @@ -851,7 +851,7 @@ "label\n" "string.text" msgid "_Repeat:" -msgstr "Endu_rtekning:" +msgstr "Endu_rtaka:" #: customanimationtimingtab.ui msgctxt "" @@ -1346,7 +1346,7 @@ "title\n" "string.text" msgid "Header and Footer" -msgstr "Haus og fรณtur" +msgstr "Sรญรฐuhaus og fรณtur" #: headerfooterdialog.ui msgctxt "" @@ -1751,7 +1751,7 @@ "label\n" "string.text" msgid "Do not distort objects in curve" -msgstr "Ekki afmynda hluti รญ kรบrvu" +msgstr "Ekki afmynda hluti รญ ferli" #: optimpressgeneralpage.ui msgctxt "" @@ -3101,7 +3101,7 @@ "label\n" "string.text" msgid "_Rulers visible" -msgstr "Sรฝnilega_r mรฆlistikur" +msgstr "Sรฝnilegar _reglustikur" #: sdviewpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sfx2/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sfx2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sfx2/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-20 13:51+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-24 13:51+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440078692.000000\n" +"X-POOTLE-MTIME: 1443102716.000000\n" #: alienwarndialog.ui msgctxt "" @@ -759,7 +759,7 @@ "\n" "ร–ll vรถrumerki og skrรกsett vรถrumerki eru eign eigenda hvers รพeirra um sig.\n" "\n" -"Hรถfundarrรฉttur ยฉ 2000, 2015 รพรกttakendur รญ LibreOffice og tengdir aรฐilar. ร–ll rรฉttindi รกskilin.\n" +"Hรถfundarrรฉttur ยฉ 2000, 2015 รพรกtttakendur รญ LibreOffice og tengdir aรฐilar. ร–ll rรฉttindi รกskilin.\n" "\n" "รžessi hugbรบnaรฐur var gerรฐur af %OOOVENDOR, byggรฐur รก OpenOffice.org, sem aftur er undir klausunni 'Hรถfundarrรฉttur 2000, 2011 Oracle og/eรฐa tengdir aรฐilar'. %OOOVENDOR รพakkar รถllum รพรกtttakendum รญ verkefninu, endilega skoรฐaรฐu http://www.libreoffice.org/ til aรฐ fรก nรกnari upplรฝsingar." diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/is/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-03-16 15:42+0000\n" +"PO-Revision-Date: 2015-10-13 13:21+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1426520551.000000\n" +"X-POOTLE-MTIME: 1444742485.000000\n" #: commands.src msgctxt "" @@ -422,7 +422,7 @@ "RID_FACTX_HELP\n" "string.text" msgid "Factorial" -msgstr "Hrรณpmerktur" +msgstr "Hrรณpmerkt" #: commands.src msgctxt "" @@ -1299,7 +1299,7 @@ "RID_LRCEILX_HELP\n" "string.text" msgid "Upper Ceil" -msgstr "" +msgstr "Efri takmรถrk" #: commands.src msgctxt "" @@ -1307,7 +1307,7 @@ "RID_LRFLOORX_HELP\n" "string.text" msgid "Floor" -msgstr "Gรณlf" +msgstr "Neรฐri takmรถrk" #: commands.src msgctxt "" @@ -1379,7 +1379,7 @@ "RID_SLRCEILX_HELP\n" "string.text" msgid "Ceiling (Scalable)" -msgstr "" +msgstr "Efri takmรถrk (skalanleg)" #: commands.src msgctxt "" @@ -1387,7 +1387,7 @@ "RID_SLRFLOORX_HELP\n" "string.text" msgid "Floor (Scalable)" -msgstr "" +msgstr "Neรฐri takmรถrk (skalanleg)" #: commands.src msgctxt "" @@ -1923,7 +1923,7 @@ "RID_CATEGORY_SET_OPERATIONS\n" "string.text" msgid "Set Operations" -msgstr "Mengja aรฐgerรฐir" +msgstr "Mengjaaรฐgerรฐir" #: commands.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/svtools/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/is/svtools/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/svtools/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: misc\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-25 16:10+0000\n" +"PO-Revision-Date: 2015-10-14 13:51+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440519028.000000\n" +"X-POOTLE-MTIME: 1444830683.000000\n" #: imagemgr.src msgctxt "" @@ -126,7 +126,7 @@ "STR_DESCRIPTION_GLOBALDOC\n" "string.text" msgid "StarWriter 4.0 / 5.0 Master Document" -msgstr "StarWriter 4.0 / 5.0 aรฐalstรฝriskjal" +msgstr "StarWriter 4.0 / 5.0 stรฝriskjal" #: imagemgr.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/source/form.po libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/source/form.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/source/form.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/source/form.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2014-11-20 11:20+0000\n" +"PO-Revision-Date: 2015-10-14 10:59+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416482412.000000\n" +"X-POOTLE-MTIME: 1444820366.000000\n" #: datanavi.src msgctxt "" @@ -1284,7 +1284,7 @@ "4\n" "string.text" msgid "TRUE" -msgstr "TRUE" +msgstr "SATT" #: fmstring.src msgctxt "" @@ -1293,7 +1293,7 @@ "5\n" "string.text" msgid "FALSE" -msgstr "FALSE" +msgstr "ร“SATT" #: fmstring.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/source/gallery2.po libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/source/gallery2.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/source/gallery2.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/source/gallery2.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: gallery2\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2014-11-20 11:20+0000\n" +"PO-Revision-Date: 2015-10-16 11:25+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416482413.000000\n" +"X-POOTLE-MTIME: 1444994743.000000\n" #: gallery.src msgctxt "" @@ -314,7 +314,7 @@ "RID_GALLERYSTR_THEME_ANIMATIONS\n" "string.text" msgid "Animations" -msgstr "Hreyfimyndir" +msgstr "Hreyfingar" #: galtheme.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/source/svdraw.po libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/source/svdraw.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/source/svdraw.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/source/svdraw.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: svdraw\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-20 11:20+0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-16 10:13+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416482413.000000\n" +"X-POOTLE-MTIME: 1444990408.000000\n" #: svdstr.src msgctxt "" @@ -414,7 +414,7 @@ "STR_ObjNameSingulPATHLINE\n" "string.text" msgid "Bรฉzier curve" -msgstr "Bรฉzier kรบrva" +msgstr "Bรฉzier-ferill" #: svdstr.src msgctxt "" @@ -422,7 +422,7 @@ "STR_ObjNamePluralPATHLINE\n" "string.text" msgid "Bรฉzier curves" -msgstr "Bรฉzier kรบrvur" +msgstr "Bรฉzier-ferlar" #: svdstr.src msgctxt "" @@ -430,7 +430,7 @@ "STR_ObjNameSingulPATHFILL\n" "string.text" msgid "Bรฉzier curve" -msgstr "Bรฉzier kรบrva" +msgstr "Bรฉzier-ferill" #: svdstr.src msgctxt "" @@ -438,7 +438,7 @@ "STR_ObjNamePluralPATHFILL\n" "string.text" msgid "Bรฉzier curves" -msgstr "Bรฉzier kรบrvur" +msgstr "Bรฉzier-ferlar" #: svdstr.src msgctxt "" @@ -478,7 +478,7 @@ "STR_ObjNameSingulCOMBLINE\n" "string.text" msgid "Curve" -msgstr "Boglรญna" +msgstr "Ferill" #: svdstr.src msgctxt "" @@ -494,7 +494,7 @@ "STR_ObjNameSingulCOMBFILL\n" "string.text" msgid "Curve" -msgstr "Boglรญna" +msgstr "Ferill" #: svdstr.src msgctxt "" @@ -542,7 +542,7 @@ "STR_ObjNameSingulTEXT\n" "string.text" msgid "Text Frame" -msgstr "Textarammi" +msgstr "Umgjรถrรฐ textaramma" #: svdstr.src msgctxt "" @@ -630,7 +630,7 @@ "STR_ObjNamePluralOUTLINETEXT\n" "string.text" msgid "Outline Texts" -msgstr "รštlรญnutexti" +msgstr "รštlรญnutextar" #: svdstr.src msgctxt "" @@ -1294,7 +1294,7 @@ "STR_EditCrookContortion\n" "string.text" msgid "Curve %1 in circle" -msgstr "Bogi %1 รญ hring" +msgstr "Ferill %1 รญ hring" #: svdstr.src msgctxt "" @@ -1422,7 +1422,7 @@ "STR_EditConvToCurve\n" "string.text" msgid "Convert %1 to curve" -msgstr "Umbreyta %1 รญ lรญnu" +msgstr "Umbreyta %1 รญ feril" #: svdstr.src msgctxt "" @@ -1430,7 +1430,7 @@ "STR_EditConvToCurves\n" "string.text" msgid "Convert %1 to curves" -msgstr "Umbreyta %1 รญ lรญnur" +msgstr "Umbreyta %1 รญ ferla" #: svdstr.src msgctxt "" @@ -1758,7 +1758,7 @@ "STR_DragMethCrookContortion\n" "string.text" msgid "Curve %1 in circle" -msgstr "Bogi %1 รญ hring" +msgstr "Ferill %1 รญ hring" #: svdstr.src msgctxt "" @@ -1838,7 +1838,7 @@ "STR_ViewTextEdit\n" "string.text" msgid "TextEdit: Paragraph %1, Row %2, Column %3" -msgstr "TextEdit: Mรกlsgrein %1, Rรถรฐ %2, Dรกlkur %3" +msgstr "Breyting รก texta: Mรกlsgrein %1, Rรถรฐ %2, Dรกlkur %3" #: svdstr.src msgctxt "" @@ -1846,7 +1846,7 @@ "STR_ViewMarked\n" "string.text" msgid "%1 selected" -msgstr "%1 valiรฐ" +msgstr "%1 valin" #: svdstr.src msgctxt "" @@ -2398,7 +2398,7 @@ "STR_ItemValEDGE_BEZIER\n" "string.text" msgid "Curved Connector" -msgstr "Bogin lรญna" +msgstr "Bogin tengilรญna" #: svdstr.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-20 13:32+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-16 10:13+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440077568.000000\n" +"X-POOTLE-MTIME: 1444990431.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2946,7 +2946,7 @@ "label\n" "string.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: floatingcontour.ui msgctxt "" @@ -3294,7 +3294,7 @@ "label\n" "string.text" msgid "Redo" -msgstr "Endurtaka" +msgstr "Gera aftur" #: imapdialog.ui msgctxt "" @@ -4837,7 +4837,7 @@ "tooltip_markup\n" "string.text" msgid "Curve" -msgstr "Boglรญna" +msgstr "Ferill" #: sidebarinsert.ui msgctxt "" @@ -4846,7 +4846,7 @@ "tooltip_text\n" "string.text" msgid "Curve" -msgstr "Boglรญna" +msgstr "Ferill" #: sidebarinsert.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/core/undo.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/core/undo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/core/undo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/core/undo.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: undo\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-18 14:45+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-15 16:32+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416321915.000000\n" +"X-POOTLE-MTIME: 1444926768.000000\n" #: undo.src msgctxt "" @@ -286,7 +286,7 @@ "STR_INSERTSECTION\n" "string.text" msgid "Insert section" -msgstr "Setja inn svรฆรฐi" +msgstr "Setja inn efnishluta" #: undo.src msgctxt "" @@ -294,7 +294,7 @@ "STR_DELETESECTION\n" "string.text" msgid "Delete section" -msgstr "Eyรฐa grein" +msgstr "Eyรฐa efnishluta" #: undo.src msgctxt "" @@ -302,7 +302,7 @@ "STR_CHANGESECTION\n" "string.text" msgid "Modify section" -msgstr "Breyta hluta" +msgstr "Breyta efnishluta" #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: app\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-25 16:07+0000\n" +"PO-Revision-Date: 2015-10-15 16:33+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440518861.000000\n" +"X-POOTLE-MTIME: 1444926785.000000\n" #: app.src msgctxt "" @@ -399,7 +399,7 @@ "STR_LOAD_GLOBAL_DOC\n" "string.text" msgid "Name and Path of Master Document" -msgstr "Heiti og slรณรฐ รก yfirskrรก" +msgstr "Heiti og slรณรฐ รก stรฝriskjali" #: app.src msgctxt "" @@ -687,7 +687,7 @@ "STR_REGION_DEFNAME\n" "string.text" msgid "Section" -msgstr "Hluti" +msgstr "Efnishluti" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/ui/config.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/ui/config.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/ui/config.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/ui/config.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: config\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-18 14:35+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-16 13:05+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1374861019.0\n" +"X-POOTLE-MTIME: 1445000724.000000\n" #: optdlg.src msgctxt "" @@ -92,7 +92,7 @@ "~Text placeholders\n" "itemlist.text" msgid "~Text placeholders" -msgstr "~Textastaรฐgengill" +msgstr "~Textafrรกtรถkutรกkn" #: optdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: utlui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-25 16:07+0000\n" +"PO-Revision-Date: 2015-10-15 16:33+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440518869.000000\n" +"X-POOTLE-MTIME: 1444926798.000000\n" #: poolfmt.src msgctxt "" @@ -1821,7 +1821,7 @@ "STR_CONTENT_TYPE_REGION\n" "string.text" msgid "Sections" -msgstr "Hlutar" +msgstr "Efnishlutar" #: utlui.src msgctxt "" @@ -1981,7 +1981,7 @@ "STR_CONTENT_TYPE_SINGLE_REGION\n" "string.text" msgid "Section" -msgstr "Kafli" +msgstr "Efnishluti" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/uibase/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/uibase/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/uibase/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/uibase/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-20 11:20+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-15 16:33+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416482402.000000\n" +"X-POOTLE-MTIME: 1444926830.000000\n" #: regionsw.src msgctxt "" @@ -22,7 +22,7 @@ "STR_REG_DUPLICATE\n" "string.text" msgid "Section name changed:" -msgstr "Heiti hluta breyttist:" +msgstr "Heiti efnishluta breyttist:" #: regionsw.src msgctxt "" @@ -30,7 +30,7 @@ "STR_INFO_DUPLICATE\n" "string.text" msgid "Duplicate section name" -msgstr "Tvรญtak รก heiti hlutar" +msgstr "Tvรญtak รก heiti efnishlutar" #: regionsw.src msgctxt "" @@ -38,7 +38,7 @@ "STR_QUERY_CONNECT\n" "string.text" msgid "A file connection will delete the contents of the current section. Connect anyway?" -msgstr "Tenging viรฐ skrรก mun eyรฐa innihaldi รพessa hluta. Tengjast samt?" +msgstr "Tenging viรฐ skrรก mun eyรฐa innihaldi รพessa efnishluta. Tengjast samt?" #: regionsw.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/uibase/ribbar.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/uibase/ribbar.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/uibase/ribbar.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/uibase/ribbar.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-20 11:20+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-15 16:34+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416482402.000000\n" +"X-POOTLE-MTIME: 1444926859.000000\n" #: inputwin.src msgctxt "" @@ -445,7 +445,7 @@ "ST_REG\n" "string.text" msgid "Section" -msgstr "Hluti" +msgstr "Efnishluti" #: workctrl.src msgctxt "" @@ -589,7 +589,7 @@ "STR_IMGBTN_REG_DOWN\n" "string.text" msgid "Next section" -msgstr "Nรฆsti hluti" +msgstr "Nรฆsti efnishluti" #: workctrl.src msgctxt "" @@ -717,7 +717,7 @@ "STR_IMGBTN_REG_UP\n" "string.text" msgid "Previous section" -msgstr "Fyrri hluti" +msgstr "Fyrri efnishluti" #: workctrl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/uibase/uiview.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/uibase/uiview.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/source/uibase/uiview.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/source/uibase/uiview.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-20 11:19+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-16 12:52+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: LANGUAGE \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416482398.000000\n" +"X-POOTLE-MTIME: 1444999970.000000\n" #: view.src msgctxt "" @@ -94,7 +94,7 @@ "STR_ERROR_NOLANG\n" "string.text" msgid "No language is selected in the proofed section." -msgstr "Ekkert tungumรกl er valiรฐ fyrir yfirlesna hlutann." +msgstr "Ekkert tungumรกl er valiรฐ fyrir yfirlesna efnishlutann." #: view.src msgctxt "" @@ -190,7 +190,7 @@ "RID_PVIEW_TOOLBOX\n" "string.text" msgid "Print Preview" -msgstr "Forskoรฐun รบtprentunar" +msgstr "Prentskoรฐun" #: view.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: ui\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-25 16:09+0000\n" +"PO-Revision-Date: 2015-10-16 13:06+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440518968.000000\n" +"X-POOTLE-MTIME: 1445000767.000000\n" #: abstractdialog.ui msgctxt "" @@ -689,7 +689,7 @@ "label\n" "string.text" msgid "_File system" -msgstr "Skrรกr_kerfiรฐ" +msgstr "Skrรกaker_fiรฐ" #: autotext.ui msgctxt "" @@ -1337,7 +1337,7 @@ "label\n" "string.text" msgid "AutoText - Section" -msgstr "Sjรกlfvirkur texti - Kafli" +msgstr "Sjรกlfvirkur texti - Efnishluti" #: cardformatpage.ui msgctxt "" @@ -1886,7 +1886,7 @@ "1\n" "stringlist.text" msgid "Current Section" -msgstr "รžessi kafli" +msgstr "รžessi efnishluti" #: columnpage.ui msgctxt "" @@ -1895,7 +1895,7 @@ "2\n" "stringlist.text" msgid "Selected section" -msgstr "Valda kafla" +msgstr "Valinn efnishluti" #: columnpage.ui msgctxt "" @@ -2021,7 +2021,7 @@ "3\n" "stringlist.text" msgid "Section" -msgstr "Hluti" +msgstr "Efnishluti" #: conditionpage.ui msgctxt "" @@ -2867,7 +2867,7 @@ "title\n" "string.text" msgid "Edit Sections" -msgstr "Breyta hlutum" +msgstr "Breyta efnishlutum" #: editsectiondialog.ui msgctxt "" @@ -2885,7 +2885,7 @@ "label\n" "string.text" msgid "Section" -msgstr "Svรฆรฐi" +msgstr "Efnishluti" #: editsectiondialog.ui msgctxt "" @@ -2921,7 +2921,7 @@ "label\n" "string.text" msgid "_Section" -msgstr "_Val" +msgstr "_Efnishluti" #: editsectiondialog.ui msgctxt "" @@ -4878,7 +4878,7 @@ "label\n" "string.text" msgid "C_ollect at end of section" -msgstr "Safna saman viรฐ enda _hluta" +msgstr "Safna saman viรฐ enda _efnishluta" #: footnotesendnotestabpage.ui msgctxt "" @@ -5787,7 +5787,7 @@ "label\n" "string.text" msgid "_Before section" -msgstr "ร un_dan hluta" +msgstr "ร un_dan efnishluta" #: indentpage.ui msgctxt "" @@ -5796,7 +5796,7 @@ "label\n" "string.text" msgid "_After section" -msgstr "ร _eftir hluta" +msgstr "ร _eftir efnishluta" #: indentpage.ui msgctxt "" @@ -6543,7 +6543,7 @@ "title\n" "string.text" msgid "Insert Section" -msgstr "Setja inn hlutasvรฆรฐi" +msgstr "Setja inn efnishluta" #: insertsectiondialog.ui msgctxt "" @@ -6561,7 +6561,7 @@ "label\n" "string.text" msgid "Section" -msgstr "Hluti" +msgstr "Efnishluti" #: insertsectiondialog.ui msgctxt "" @@ -7596,7 +7596,7 @@ "label\n" "string.text" msgid "Fields are used to personalize form letters. The fields are placeholders for data from a data source, such as a database. The fields in the form letter must be connected to the data source." -msgstr "Gagnasviรฐ er hรฆgt aรฐ nota til aรฐ persรณnugera brรฉf. Sviรฐin eru staรฐgenglar fyrir gรถgn frรก gagnagjafa, t.d. gagnagrunni. Sviรฐ รญ slรญkum eyรฐubrรฉfum verรฐa aรฐ vera tengd viรฐ einhvern gagnagjafa." +msgstr "Gagnasviรฐ er hรฆgt aรฐ nota til aรฐ persรณnugera brรฉf. Sviรฐin eru frรกtรถkutรกkn fyrir gรถgn frรก gagnagjafa, t.d. gagnagrunni. Sviรฐ รญ slรญkum eyรฐubrรฉfum verรฐa aรฐ vera tengd viรฐ einhvern gagnagjafa." #: mergeconnectdialog.ui msgctxt "" @@ -11057,7 +11057,7 @@ "label\n" "string.text" msgid "Outline & Numbering" -msgstr "รštlรญnur & tรถlusetning" +msgstr "Efnisskipan og tรถlusetning" #: paradialog.ui msgctxt "" @@ -11345,7 +11345,7 @@ "label\n" "string.text" msgid "Text placeholders" -msgstr "Textastaรฐgengill" +msgstr "Textafrรกtรถkutรกkn" #: printeroptions.ui msgctxt "" @@ -11498,7 +11498,7 @@ "label\n" "string.text" msgid "Text _placeholder" -msgstr "_Textastaรฐgengill" +msgstr "Texta_frรกtรถkutรกkn" #: printoptionspage.ui msgctxt "" @@ -12218,7 +12218,7 @@ "label\n" "string.text" msgid "New Section" -msgstr "Nรฝr hluti" +msgstr "Nรฝr efnishluti" #: sectionpage.ui msgctxt "" @@ -12245,7 +12245,7 @@ "label\n" "string.text" msgid "_Section" -msgstr "_Hluti" +msgstr "_Efnishluti" #: sectionpage.ui msgctxt "" @@ -13757,7 +13757,7 @@ "label\n" "string.text" msgid "Outline & Numbering" -msgstr "รštlรญnur & tรถlusetning" +msgstr "Efnisskipan og tรถlusetning" #: templatedialog2.ui msgctxt "" @@ -15566,7 +15566,7 @@ "label\n" "string.text" msgid "Hori_zontal ruler" -msgstr "Lรกrรฉtt _reglustika" +msgstr "Lรกrรฉtt re_glustika" #: viewoptionspage.ui msgctxt "" @@ -15575,7 +15575,7 @@ "label\n" "string.text" msgid "Verti_cal ruler" -msgstr "_Lรณรฐrรฉtt stika" +msgstr "Lรณรฐrรฉtt reglusti_ka" #: viewoptionspage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/swext/mediawiki/help.po libreoffice-l10n-5.0.3~rc2/translations/source/is/swext/mediawiki/help.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/swext/mediawiki/help.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/swext/mediawiki/help.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-06-04 21:04+0000\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: Icelandic \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-10-13 08:07+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1358804643.0\n" +"X-POOTLE-MTIME: 1444723635.000000\n" #: help.tree msgctxt "" @@ -38,7 +38,7 @@ "tit\n" "help.text" msgid "Wiki Publisher" -msgstr "Wiki Publisher" +msgstr "Wiki รบtgรกfustjรณrn" #: wiki.xhp msgctxt "" @@ -46,7 +46,7 @@ "bm_id3154408\n" "help.text" msgid "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" -msgstr "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" +msgstr "Wiki;Wiki รบtgรกfustjรณrnWiki รบtgรกfustjรณrnextensions;MediaWiki" #: wiki.xhp msgctxt "" @@ -54,7 +54,7 @@ "hd_id5993530\n" "help.text" msgid "Wiki Publisher" -msgstr "Wiki Publisher" +msgstr "Wiki รบtgรกfustjรณrn" #: wiki.xhp msgctxt "" @@ -62,7 +62,7 @@ "par_id9647511\n" "help.text" msgid "By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all Wiki users can read your document on the Wiki." -msgstr "Meรฐ รพvรญ aรฐ nota Wiki Publisher geturรฐu sent Writer textaskjaliรฐ sem รพรบ ert aรฐ vinna รญ inn รก MediaWiki-รพjรณn. Eftir innsendinguna geta allir notendur kvikunnar (Wiki) lesiรฐ skjaliรฐ รพitt รก kvikuvefnum." +msgstr "Meรฐ รพvรญ aรฐ nota Wiki Publisher รบtgรกfustjรณrn geturรฐu sent Writer textaskjaliรฐ sem รพรบ ert aรฐ vinna รญ inn รก MediaWiki-รพjรณn. Eftir innsendinguna geta allir notendur kvikunnar (Wiki) lesiรฐ skjaliรฐ รพitt รก kvikuvefnum." #: wiki.xhp msgctxt "" @@ -102,7 +102,7 @@ "hd_id8047120\n" "help.text" msgid "Installing Wiki Publisher" -msgstr "Setja upp Wiki Publisher" +msgstr "Setja upp Wiki รบtgรกfustjรณrn" #: wiki.xhp msgctxt "" @@ -110,7 +110,7 @@ "par_id4277169\n" "help.text" msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose Tools - Options - %PRODUCTNAME - Advanced. Ensure that \"Use a Java runtime environment\" is marked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE 1.4 or later and restart %PRODUCTNAME." -msgstr "รรฐur en รพรบ setur inn Wiki Publisher, gakktu รพรก รบr skugga um aรฐ %PRODUCTNAME sรฉ aรฐ nota Java keyrsluumhverfni (JRE) Til aรฐ athuga stรถรฐu JRE, veldu Verkfรฆri - Valkostir - %PRODUCTNAME - Java. Gakktu รบr skugga um aรฐ hakaรฐ sรฉ viรฐ \"Nota Java keyrsluumhverfi\" og aรฐ mappa fyrir Java keyrsluumhverfi sรฉ valin รญ stรณra listareitnum. Ef ekkert JRE er รพegar virkt, virkjaรฐu รพรก JRE 1.4 eรฐa nรฝrri รบtgรกfu og endurrรฆstu sรญรฐan %PRODUCTNAME." +msgstr "รรฐur en รพรบ setur inn Wiki Publisher รบtgรกfustjรณrn, gakktu รพรก รบr skugga um aรฐ %PRODUCTNAME sรฉ aรฐ nota Java keyrsluumhverfni (JRE) Til aรฐ athuga stรถรฐu JRE, veldu Verkfรฆri - Valkostir - %PRODUCTNAME - Java. Gakktu รบr skugga um aรฐ hakaรฐ sรฉ viรฐ \"Nota Java keyrsluumhverfi\" og aรฐ mappa fyrir Java keyrsluumhverfi sรฉ valin รญ stรณra listareitnum. Ef ekkert JRE er รพegar virkt, virkjaรฐu รพรก JRE 1.4 eรฐa nรฝrri รบtgรกfu og endurrรฆstu sรญรฐan %PRODUCTNAME." #: wiki.xhp msgctxt "" @@ -398,7 +398,7 @@ "par_id8654133\n" "help.text" msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the Wiki server." -msgstr "Eftirfarandi listi sรฝnir yfirlit yfir รพau textasniรฐ sem Wiki Publisher getur hlaรฐiรฐ upp รก Wiki รพjรณninn." +msgstr "Eftirfarandi listi sรฝnir yfirlit yfir รพau textasniรฐ sem Wiki-รบtgรกfustjรณrn getur hlaรฐiรฐ upp รก Wiki รพjรณninn." #: wikiformats.xhp msgctxt "" @@ -702,7 +702,7 @@ "par_id1188390\n" "help.text" msgid "You can add, edit and remove MediaWiki servers. Open the dialog by Tools - Options - Internet - MediaWiki. Alternatively, choose Tools - Extension Manager, select the Wiki Publisher, and click the Options button." -msgstr "รžรบ getur bรฆtt viรฐ, breytt og fjarlรฆgt MediaWiki miรฐlara. Opnaรฐu samskiptagluggann meรฐ รพvรญ aรฐ velja Verkfรฆri - Valkostir - Internet - MediaWiki. Einnig er hรฆgt aรฐ velja Verkfรฆri - Viรฐbรณtastjรณri, velja sรญรฐan Wiki Publisher, og smella รก hnappinn 'Valkostir'." +msgstr "รžรบ getur bรฆtt viรฐ, breytt og fjarlรฆgt MediaWiki miรฐlara. Opnaรฐu samskiptagluggann meรฐ รพvรญ aรฐ velja Verkfรฆri - Valkostir - Internet - MediaWiki. Einnig er hรฆgt aรฐ velja Verkfรฆri - Viรฐbรณtastjรณri, velja sรญรฐan Wiki Publisher รบtgรกfustjรณrn, og smella รก hnappinn 'Valkostir'." #: wikisettings.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-l10n-5.0.3~rc2/translations/source/is/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-04-05 11:03+0200\n" -"Last-Translator: Sveinn รญ Felli \n" -"Language-Team: LANGUAGE \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-10-13 08:07+0000\n" +"Last-Translator: Sveinn รญ Felli \n" +"Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1444723653.000000\n" #: WikiExtension.xcu msgctxt "" @@ -292,7 +293,7 @@ "Dlg_MediaWiki_Extension_String\n" "value.text" msgid "Wiki Publisher" -msgstr "Wiki Publisher" +msgstr "Wiki รบtgรกfustjรณrn" #: WikiExtension.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/vcl/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/is/vcl/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/vcl/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: src\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-11-19 11:24+0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-13 13:32+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1416396274.000000\n" +"X-POOTLE-MTIME: 1444743174.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -1241,7 +1241,7 @@ "cm\n" "itemlist.text" msgid "cm" -msgstr "cm" +msgstr "sm" #: units.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/wizards/source/formwizard.po libreoffice-l10n-5.0.3~rc2/translations/source/is/wizards/source/formwizard.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/wizards/source/formwizard.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/wizards/source/formwizard.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: formwizard\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-17 17:49+0000\n" +"PO-Revision-Date: 2015-10-16 13:08+0000\n" "Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439833786.000000\n" +"X-POOTLE-MTIME: 1445000914.000000\n" #: dbwizres.src msgctxt "" @@ -2020,7 +2020,7 @@ "RID_DB_REPORT_WIZARD_START + 72\n" "string.text" msgid "An error occurred in the wizard.
The template '%PATH' could be erroneous.
Either the required sections or tables do not exist or exist under the wrong name.
See the Help for more detailed information.
Please select another template." -msgstr "Upp kom villa รญ leiรฐarvรญsinum.
Sniรฐmรกtiรฐ '%PATH' gรฆti veriรฐ vitlaust.
Annaรฐhvort vantar nauรฐsynleg svรฆรฐi eรฐa tรถflur eรฐa รพau eru meรฐ rangt nafn.
Kรญktu รก hjรกlpina fyrir meiri upplรฝsingar.
Veldu annaรฐ sniรฐmรกt." +msgstr "Upp kom villa รญ leiรฐarvรญsinum.
Sniรฐmรกtiรฐ '%PATH' gรฆti veriรฐ vitlaust.
Annaรฐhvort vantar nauรฐsynlega efnishluta eรฐa tรถflur eรฐa รพeir eru meรฐ rangt nafn.
Kรญktu รก hjรกlpina fyrir meiri upplรฝsingar.
Veldu annaรฐ sniรฐmรกt." #: dbwizres.src msgctxt "" @@ -2937,7 +2937,7 @@ "RID_LETTERWIZARDDIALOG_START + 18\n" "string.text" msgid "~Footer" -msgstr "~Fรณtur" +msgstr "Sรญรฐu~fรณtur" #: dbwizres.src msgctxt "" @@ -2961,7 +2961,7 @@ "RID_LETTERWIZARDDIALOG_START + 21\n" "string.text" msgid "Use placeholders for ~recipient's address" -msgstr "Nota breytur fyrir heimilisfang ~mรณttakanda" +msgstr "Nota frรกtรถkutรกkn fyrir heimilisfang ~mรณttakanda" #: dbwizres.src msgctxt "" @@ -3377,7 +3377,7 @@ "RID_LETTERWIZARDROADMAP_START + 2\n" "string.text" msgid "Letterhead layout" -msgstr "Uppsetning haus brรฉfs" +msgstr "Uppsetning รก haus brรฉfsins" #: dbwizres.src msgctxt "" @@ -3481,7 +3481,7 @@ "RID_FAXWIZARDDIALOG_START + 9\n" "string.text" msgid "~Footer" -msgstr "~Fรณtur" +msgstr "Sรญรฐu~fรณtur" #: dbwizres.src msgctxt "" @@ -3713,7 +3713,7 @@ "RID_FAXWIZARDDIALOG_START + 38\n" "string.text" msgid "Use placeholders for ~recipient's address" -msgstr "Nota breytur fyrir heimilisfang ~mรณttakanda" +msgstr "Nota frรกtรถkutรกkn fyrir heimilisfang ~mรณttakanda" #: dbwizres.src msgctxt "" @@ -5333,7 +5333,7 @@ "RID_AGENDAWIZARDDIALOG_START +17\n" "string.text" msgid "Placeholders will be used in empty fields. You can replace placeholders with text later." -msgstr "ร auรฐum gagnareitum verรฐa gagnastaรฐgenglar. รžรบ getur sรญรฐar skrifaรฐ yfir รพรก meรฐ texta." +msgstr "ร auรฐum gagnareitum verรฐa frรกtรถkutรกkn รญ staรฐ gagna. รžรบ getur sรญรฐar skrifaรฐ yfir รพau meรฐ texta." #: dbwizres.src msgctxt "" @@ -5445,7 +5445,7 @@ "RID_AGENDAWIZARDDIALOG_START +31\n" "string.text" msgid "The agenda template will include placeholders for the names of the selected people. When creating an agenda from the template, you can replace these placeholder with the appropriate names." -msgstr "Sniรฐmรกtiรฐ fyrir dagskrรกrgerรฐ mun innihalda staรฐgรถngusvรฆรฐi fyrir nรถfn fรณlksins sem valiรฐ er. รžegar dagskrรก er bรบin til รบt frรก sniรฐmรกtinu, geturรฐu skipt รพessum svรฆรฐum รบt fyrir viรฐeiganfi nรถfn." +msgstr "Sniรฐmรกtiรฐ fyrir dagskrรกrgerรฐ mun innihalda frรกtรถkutรกkn fyrir nรถfn fรณlksins sem valiรฐ er. รžegar dagskrรก er bรบin til รบt frรก sniรฐmรกtinu, geturรฐu skipt รพessum tรกknum รบt fyrir viรฐeigandi nรถfn." #: dbwizres.src msgctxt "" @@ -5485,7 +5485,7 @@ "RID_AGENDAWIZARDDIALOG_START +36\n" "string.text" msgid "The agenda template will include placeholders for the selected items." -msgstr "Dagskrรกrsniรฐiรฐ inniheldur รบtskiptanleg tรกkn fyrir valda hluti." +msgstr "Dagskrรกrsniรฐiรฐ inniheldur รบtskiptanleg frรกtรถkutรกkn fyrir valin atriรฐi." #: dbwizres.src msgctxt "" @@ -5621,7 +5621,7 @@ "RID_AGENDAWIZARDDIALOG_START +55\n" "string.text" msgid "Name and location" -msgstr "Nafn og staรฐsetning" +msgstr "Titill og staรฐsetning" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/is/wizards/source/template.po libreoffice-l10n-5.0.3~rc2/translations/source/is/wizards/source/template.po --- libreoffice-l10n-5.0.2~rc2/translations/source/is/wizards/source/template.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/is/wizards/source/template.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: template\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-01-23 08:11+0000\n" -"Last-Translator: Sveinn รญ Felli \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-10-16 13:08+0000\n" +"Last-Translator: Sveinn รญ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1445000927.000000\n" #: template.src msgctxt "" @@ -309,7 +310,7 @@ "CorrespondenceFields\n" "string.text" msgid "Click placeholder and overwrite" -msgstr "Smelltu รก gagnastaรฐgengilinn og skrifaรฐu yfir" +msgstr "Smelltu รก frรกtรถkutรกkn og skrifaรฐu yfir" #: template.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.0.3~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.0.2~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/it/helpcontent2/source/text/shared/optionen.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 18:20+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-07 21:08+0000\n" +"Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439490046.000000\n" +"X-POOTLE-MTIME: 1444252082.000000\n" #: 01000000.xhp msgctxt "" @@ -1026,7 +1026,7 @@ "62\n" "help.text" msgid "You can choose which file format will be applied as the default when saving documents of various document types. If you always exchange your documents with other persons who use Microsoft Office, for example, you may specify here that %PRODUCTNAME only uses the Microsoft Office file formats as a default." -msgstr "Potete scegliere il formato predefinito da applicare per il salvataggio dei diversi tipi di documento. Se, ad esempio, siete soliti scambiare i vostri documenti con altre persone che utilizzano Microsoft Office, potete specificare l'uso dei formati di Microsoft Office come standard per il salvataggio dei file." +msgstr "Potete scegliere il formato predefinito da applicare per il salvataggio dei diversi tipi di documento. Se, ad esempio, siete soliti scambiare i vostri documenti con altre persone che utilizzano Microsoft Office, potete specificare in %PRODUCTNAME l'uso dei formati di Microsoft Office come standard per il salvataggio dei file." #: 01010200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/it/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.0.3~rc2/translations/source/it/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/it/helpcontent2/source/text/smath/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/it/helpcontent2/source/text/smath/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2015-08-13 18:40+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-07 21:10+0000\n" +"Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439491250.000000\n" +"X-POOTLE-MTIME: 1444252215.000000\n" #: 02080000.xhp msgctxt "" @@ -4419,7 +4419,7 @@ "bm_id3153150\n" "help.text" msgid "formatting;in $[officename] Math$[officename] Math; formattingsuperscriptsbinomialsvertical elementslines; inserting in formulassubscriptsstacksvertical arrangement of elementssmall gapsalignment; left (Math)left-justified alignment (Math)alignment; horizontally centered (Math)centered horizontally; alignment (Math)alignment; right (Math)right-justified alignment in %PRODUCTNAME Mathmatrices; arrangingspaces in formulasgaps in formulasinserting; gapsarranging;matricesformulas;aligningaligning formulas" -msgstr "Formattare;in $[officename] Math$[officename] Math; formattazioneApiceBinomialeVerticale, elementoRiga; inserire nelle formulePediceStackVerticale, ordinamento degli elementiSpazio intermedio piccoloAllineamento; sinistra (Math)Sinistra, allineamento giustificato a (Math)Allineamento; centrato orizzontalmente (Math)Centrato orizzontalmente; allineamento (Math)Allineamento; destra (Math)Destra, allineamento giustificato a (Math)Matrice; ordinareSpazio nelle formuleSpazio intermedio nelle formuleInserire; spazi intermediOrdinare;matriciFormula;allineamentoAllineare formule" +msgstr "Formattare;in $[officename] Math$[officename] Math; formattazioneApiceBinomialeVerticale, elementoRiga; inserire nelle formulePediceStackVerticale, ordinamento degli elementiSpazio intermedio piccoloAllineamento; sinistra (Math)Sinistra, allineamento giustificato a (Math)Allineamento; centrato orizzontalmente (Math)Centrato orizzontalmente; allineamento (Math)Allineamento; destra (Math)Destra, allineamento giustificato a (in %PRODUCTNAME Math)Matrice; ordinareSpazio nelle formuleSpazio intermedio nelle formuleInserire; spazi intermediOrdinare;matriciFormula;allineamentoAllineare formule" #: 03090700.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/it/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/it/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/it/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/it/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ja/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/ja/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ja/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ja/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-01 11:48+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2015-10-01 07:54+0000\n" +"Last-Translator: Ikuya Awashiro \n" "Language-Team: none\n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438429737.000000\n" +"X-POOTLE-MTIME: 1443686088.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -5225,7 +5225,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "้กžไผผๅบฆ..." #: fmsearchdialog.ui msgctxt "" @@ -5243,7 +5243,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "้กžไผผๅบฆ..." #: fmsearchdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 17:20+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-27 06:57+0000\n" +"Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439572840.000000\n" +"X-POOTLE-MTIME: 1443337049.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -20922,7 +20922,7 @@ "Title\n" "value.text" msgid "Area" -msgstr "็ฏ„ๅ›ฒ" +msgstr "้ ˜ๅŸŸ" #: Sidebar.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ja/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/ja/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ja/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ja/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-27 11:35+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2015-10-01 07:54+0000\n" +"Last-Translator: Ikuya Awashiro \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437996955.000000\n" +"X-POOTLE-MTIME: 1443686093.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2671,7 +2671,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "้กžไผผๅบฆ..." #: findreplacedialog.ui msgctxt "" @@ -2707,7 +2707,7 @@ "label\n" "string.text" msgid "Sounds..." -msgstr "" +msgstr "ใ‚ใ„ใพใ„ๅบฆ..." #: findreplacedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ja/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ja/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ja/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ja/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-27 02:38+0000\n" +"PO-Revision-Date: 2015-09-27 06:47+0000\n" "Last-Translator: paz Ohhashi \n" "Language-Team: none\n" "Language: ja\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440643083.000000\n" +"X-POOTLE-MTIME: 1443336444.000000\n" #: abstractdialog.ui msgctxt "" @@ -5175,7 +5175,7 @@ "title\n" "string.text" msgid "Frame" -msgstr "ใƒ•ใƒฌใƒผใƒ " +msgstr "ๆž " #: framedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ja/wizards/source/formwizard.po libreoffice-l10n-5.0.3~rc2/translations/source/ja/wizards/source/formwizard.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ja/wizards/source/formwizard.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ja/wizards/source/formwizard.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-02 10:51+0000\n" +"PO-Revision-Date: 2015-10-21 09:44+0000\n" "Last-Translator: baffclan \n" "Language-Team: LANGUAGE \n" "Language: ja\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430563892.000000\n" +"X-POOTLE-MTIME: 1445420654.000000\n" #: dbwizres.src msgctxt "" @@ -4707,7 +4707,7 @@ "RID_WEBWIZARDDIALOG_START +111\n" "string.text" msgid "A security error occurred while exporting the document '%FILENAME'." -msgstr "ใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆ '%FILENAME' ใฎใ‚จใ‚ฏใ‚นใƒใƒผใƒˆไธญใซใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใƒผใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚" +msgstr "ใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆ '%FILENAME' ใฎใ‚จใ‚ฏใ‚นใƒใƒผใƒˆไธญใซใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ka/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ka/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ka/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ka/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ka/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/ka/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ka/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ka/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ka/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ka/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ka/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ka/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ka/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ka/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ka/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ka/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kk/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/kk/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kk/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kk/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 17:35+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-22 21:16+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439573708.000000\n" +"X-POOTLE-MTIME: 1442956560.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,14 +3302,13 @@ msgstr "ะ‘ะฐั‚ ะฐ~ะถั‹ั€ะฐัƒั‹ะฝ ำฉัˆั–ั€ัƒ" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" msgid "F~ill" -msgstr "ะขะพะปั‚ั‹ั€ัƒ" +msgstr "ะขะพ~ะปั‚ั‹ั€ัƒ" #: CalcCommands.xcu msgctxt "" @@ -15149,7 +15148,6 @@ msgstr "~ะœะฐั€ะบะตั€ะปะตั€ ะถำ™ะฝะต ะฝำฉะผั–ั€ะปะตัƒ..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kk/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/kk/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kk/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kk/sc/source/ui/src.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 17:48+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-22 21:16+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439574522.000000\n" +"X-POOTLE-MTIME: 1442956569.000000\n" #: condformatdlg.src msgctxt "" @@ -4920,7 +4920,6 @@ msgstr "ะั‚ั‹" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kk/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/kk/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kk/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kk/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 18:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-22 21:16+0000\n" +"Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: LANGUAGE \n" "Language: kk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439575824.000000\n" +"X-POOTLE-MTIME: 1442956587.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "ะ–ะฐะนะผะฐา“ะฐ ั‚ำ™ะฝ" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kk/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/kk/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kk/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kk/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/km/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/km/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/km/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/km/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/km/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/km/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/km/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/km/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kmr-Latn/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kn/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/kn/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kn/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kn/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ko/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ko/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ko/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ko/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ko/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ko/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ko/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ko/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kok/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/kok/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kok/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kok/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kok/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/kok/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kok/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kok/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/kok/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/kok/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/kok/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/kok/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ks/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ks/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ks/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ks/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ks/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ks/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ks/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ks/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ks/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ks/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ks/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ks/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/lo/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/lo/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/lo/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/lo/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/lo/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/lo/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/lo/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/lo/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/lv/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/lv/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/lv/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/lv/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mai/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/mai/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mai/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mai/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mai/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/mai/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mai/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mai/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mai/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/mai/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mai/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mai/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:40-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mk/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/mk/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mk/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mk/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mk/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/mk/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mk/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mk/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ml/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ml/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ml/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ml/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ml/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ml/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ml/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ml/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mn/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/mn/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mn/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mn/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mn/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/mn/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mn/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mn/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mni/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/mni/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mni/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mni/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mni/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/mni/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mni/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mni/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mni/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/mni/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mni/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mni/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/my/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/my/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/my/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/my/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/my/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/my/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/my/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/my/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/my/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/my/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/my/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/my/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/basctl/uiconfig/basicide/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-02-25 00:12+0000\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2015-09-20 10:38+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: none\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424823158.000000\n" +"X-POOTLE-MTIME: 1442745490.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -125,24 +125,22 @@ msgstr "Velg standardsprรฅk for brukergrensesnittet" #: defaultlanguage.ui -#, fuzzy msgctxt "" "defaultlanguage.ui\n" "defaultlabel\n" "label\n" "string.text" msgid "Default language:" -msgstr "Standardsprรฅk" +msgstr "Standardsprรฅk:" #: defaultlanguage.ui -#, fuzzy msgctxt "" "defaultlanguage.ui\n" "checkedlabel\n" "label\n" "string.text" msgid "Available languages:" -msgstr "Tilgjengelige sprรฅk" +msgstr "Tilgjengelige sprรฅk:" #: defaultlanguage.ui msgctxt "" @@ -199,14 +197,13 @@ msgstr "Du er i ferd med รฅ slette ressursene for det valgte sprรฅket/de valgte sprรฅkene. All tekst i brukergrensesnittet for dette sprรฅket/disse sprรฅkene blir slettet." #: dialogpage.ui -#, fuzzy msgctxt "" "dialogpage.ui\n" "label1\n" "label\n" "string.text" msgid "Dialog:" -msgstr "Dialogvindu" +msgstr "Dialogvindu:" #: dialogpage.ui msgctxt "" @@ -337,24 +334,22 @@ msgstr "Valg" #: libpage.ui -#, fuzzy msgctxt "" "libpage.ui\n" "label1\n" "label\n" "string.text" msgid "L_ocation:" -msgstr "_Plassering" +msgstr "_Plassering:" #: libpage.ui -#, fuzzy msgctxt "" "libpage.ui\n" "lingudictsft\n" "label\n" "string.text" msgid "_Library:" -msgstr "_Bibliotek" +msgstr "_Bibliotek:" #: libpage.ui msgctxt "" @@ -439,14 +434,13 @@ msgstr "Hรฅndter sprรฅk i brukergrensesnittet [$1]" #: managelanguages.ui -#, fuzzy msgctxt "" "managelanguages.ui\n" "label1\n" "label\n" "string.text" msgid "Present languages:" -msgstr "Tilgjengelige sprรฅk" +msgstr "Tilgjengelige sprรฅk:" #: managelanguages.ui msgctxt "" @@ -476,14 +470,13 @@ msgstr "Standard" #: modulepage.ui -#, fuzzy msgctxt "" "modulepage.ui\n" "label1\n" "label\n" "string.text" msgid "M_odule:" -msgstr "M_odul" +msgstr "M_odul:" #: modulepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/chart2/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/chart2/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/chart2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/chart2/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:22+0100\n" -"PO-Revision-Date: 2015-02-17 07:57+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 09:28+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424159834.000000\n" +"X-POOTLE-MTIME: 1442741284.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: chardialog.ui msgctxt "" @@ -2678,7 +2678,7 @@ "label\n" "string.text" msgid "Data series in _columns" -msgstr "Dataserier i _rader" +msgstr "Dataserier i _kolonner" #: tp_RangeChooser.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/connectivity/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/connectivity/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/connectivity/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/connectivity/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-21 21:56+0000\n" +"PO-Revision-Date: 2015-09-20 10:38+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194182.000000\n" +"X-POOTLE-MTIME: 1442745514.000000\n" #: conn_error_message.src msgctxt "" @@ -1120,4 +1120,4 @@ "STR_ERROR_NEW_VERSION\n" "string.text" msgid "The connection could not be established. The database was created by a newer version of %PRODUCTNAME." -msgstr "" +msgstr "Forbindelsen kunne ikke etableres. Databasen ble opprettet med en nyere versjon av %PRODUCTNAME." diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/source/dialogs.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/source/dialogs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/source/dialogs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-13 03:08+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 10:40+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431486538.000000\n" +"X-POOTLE-MTIME: 1442745615.000000\n" #: cuires.src msgctxt "" @@ -103,7 +103,7 @@ "RID_SVXSTR_THOUSAND_SEP\n" "string.text" msgid "Thousands separator" -msgstr "" +msgstr "Tusenskille" #: cuires.src msgctxt "" @@ -111,7 +111,7 @@ "RID_SVXSTR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "Teknisk notasjon" #: cuires.src msgctxt "" @@ -383,16 +383,15 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP\n" "string.text" msgid "Mail" -msgstr "" +msgstr "E-post" #: hyperdlg.src -#, fuzzy msgctxt "" "hyperdlg.src\n" "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to an e-mail address." -msgstr "Her lager man en hyperlenke til en e-post-adresse eller temagruppe." +msgstr "Her lager man en hyperlenke til en e-post-adresse." #: hyperdlg.src msgctxt "" @@ -488,7 +487,7 @@ "RID_SVXSTR_ADD_IMAGE\n" "string.text" msgid "Add Image" -msgstr "" +msgstr "Legg til bilde" #: passwdomdlg.src msgctxt "" @@ -528,7 +527,7 @@ "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2\n" "string.text" msgid "Set the password by entering the same password in both boxes." -msgstr "" +msgstr "Sett passordet ved รฅ skrive inn det same passordet i begge boksene." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/source/options.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/source/options.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/source/options.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/source/options.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-21 21:57+0000\n" +"PO-Revision-Date: 2015-09-20 09:29+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194260.000000\n" +"X-POOTLE-MTIME: 1442741394.000000\n" #: connpooloptions.src msgctxt "" @@ -781,7 +781,7 @@ "Fonts\n" "itemlist.text" msgid "Fonts" -msgstr "Skrifter" +msgstr "Skrifttyper" #: treeopt.src msgctxt "" @@ -988,7 +988,7 @@ "Basic Fonts (Western)\n" "itemlist.text" msgid "Basic Fonts (Western)" -msgstr "Enkle skrifter (vestlig)" +msgstr "Standard skrifttyper (vestlige)" #: treeopt.src msgctxt "" @@ -997,7 +997,7 @@ "Basic Fonts (Asian)\n" "itemlist.text" msgid "Basic Fonts (Asian)" -msgstr "Enkle skrifter (asiatisk)" +msgstr "Standard skrifttyper (asiatiske)" #: treeopt.src msgctxt "" @@ -1006,7 +1006,7 @@ "Basic Fonts (CTL)\n" "itemlist.text" msgid "Basic Fonts (CTL)" -msgstr "Enkle skrifter (CTL)" +msgstr "Standard skrifttyper (CTL)" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/source/tabpages.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/source/tabpages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/source/tabpages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/source/tabpages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-02-18 23:24+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 10:40+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424301854.000000\n" +"X-POOTLE-MTIME: 1442745622.000000\n" #: border.src msgctxt "" @@ -943,7 +943,7 @@ "RID_SVXSTR_CHARNAME_FONT\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: strings.src msgctxt "" @@ -967,7 +967,7 @@ "RID_SVXSTR_CHARNAME_HIGHLIGHTING\n" "string.text" msgid "Highlighting Color" -msgstr "" +msgstr "Uthevingsfarge" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-21 19:49+0000\n" +"PO-Revision-Date: 2015-09-20 10:47+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440186550.000000\n" +"X-POOTLE-MTIME: 1442746073.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME er en moderne og brukervennlig รฅpen kildekode-produktivitetspakke for tekstbehandling, regneark, presentasjoner, og mer." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" msgid "Copyright ยฉ 2000 - 2015 LibreOffice contributors." -msgstr "Opphavsrett ยฉ 2000 - 2014 LibreOffice (bidragsyterne)." +msgstr "Copyright ยฉ 2000 - 2015 LibreOffice contributors." #: aboutdialog.ui msgctxt "" @@ -216,14 +215,13 @@ msgstr "Dette produktet ble utgitt av %OOOVENDOR" #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "link\n" "label\n" "string.text" msgid "https://www.libreoffice.org/about-us/credits/" -msgstr "http://www.libreoffice.org/about-us/credits/" +msgstr "https://www.libreoffice.org/about-us/credits/" #: accelconfigpage.ui msgctxt "" @@ -1225,7 +1223,6 @@ msgstr "_Gjennomsiktighet:" #: backgroundpage.ui -#, fuzzy msgctxt "" "backgroundpage.ui\n" "background_label\n" @@ -1619,17 +1616,16 @@ "label\n" "string.text" msgid "Operating system:" -msgstr "" +msgstr "Operativsystem:" #: blackorwhitelistentrydialog.ui -#, fuzzy msgctxt "" "blackorwhitelistentrydialog.ui\n" "label5\n" "label\n" "string.text" msgid "Version:" -msgstr "Versjon" +msgstr "Versjon:" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1638,7 +1634,7 @@ "label\n" "string.text" msgid "OpenCL vendor:" -msgstr "" +msgstr "OpenCL-leverandรธr:" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1665,7 +1661,7 @@ "label\n" "string.text" msgid "Edit OpenCL Blacklist Entry" -msgstr "" +msgstr "Rediger OpenCL blacklist-oppfรธring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1674,7 +1670,7 @@ "label\n" "string.text" msgid "Create OpenCL Blacklist Entry" -msgstr "" +msgstr "Lag OpenCL blacklist-oppfรธring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1683,7 +1679,7 @@ "label\n" "string.text" msgid "Edit OpenCL Whitelist Entry" -msgstr "" +msgstr "Rediger OpenCL whitelist-oppfรธring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1692,7 +1688,7 @@ "label\n" "string.text" msgid "Create OpenCL Whitelist Entry" -msgstr "" +msgstr "Lag OpenCL whitelist-oppfรธring" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1701,7 +1697,7 @@ "label\n" "string.text" msgid "OpenCL Information" -msgstr "" +msgstr "OpenCL-informasjon" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1710,7 +1706,7 @@ "0\n" "stringlist.text" msgid "Any" -msgstr "" +msgstr "Enhver" #: borderareatransparencydialog.ui msgctxt "" @@ -2727,7 +2723,7 @@ "label\n" "string.text" msgid "CTL Font" -msgstr "CTL-skrift" +msgstr "CTL-skrifttype" #: charnamepage.ui msgctxt "" @@ -3357,7 +3353,7 @@ "label\n" "string.text" msgid "_Pickโ€ฆ" -msgstr "" +msgstr "_Velgโ€ฆ" #: colorpage.ui msgctxt "" @@ -3540,14 +3536,13 @@ msgstr "_Gul:" #: colorpickerdialog.ui -#, fuzzy msgctxt "" "colorpickerdialog.ui\n" "label8\n" "label\n" "string.text" msgid "_Key:" -msgstr "_Taster" +msgstr "_Tast:" #: colorpickerdialog.ui msgctxt "" @@ -5230,7 +5225,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Likheter..." #: fmsearchdialog.ui msgctxt "" @@ -5248,7 +5243,7 @@ "label\n" "string.text" msgid "Similarities..." -msgstr "" +msgstr "Likheter..." #: fmsearchdialog.ui msgctxt "" @@ -5356,7 +5351,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: formatcellsdialog.ui msgctxt "" @@ -6607,7 +6602,7 @@ "label\n" "string.text" msgid "Mail" -msgstr "" +msgstr "E-post" #: hyperlinkmailpage.ui msgctxt "" @@ -10167,7 +10162,7 @@ "label\n" "string.text" msgid "Suppress hidden elements of documents" -msgstr "" +msgstr "Undertrykk skjulte elementer i dokumenter" #: optemailpage.ui msgctxt "" @@ -10212,7 +10207,7 @@ "label\n" "string.text" msgid "Export as:" -msgstr "" +msgstr "Eksporter som:" #: optfltrembedpage.ui msgctxt "" @@ -10221,7 +10216,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: optfltrembedpage.ui msgctxt "" @@ -10230,7 +10225,7 @@ "label\n" "string.text" msgid "Shading" -msgstr "" +msgstr "Skyggelegging" #: optfltrembedpage.ui msgctxt "" @@ -10239,7 +10234,7 @@ "label\n" "string.text" msgid "Character Highlighting" -msgstr "" +msgstr "Tegnfremheving" #: optfltrpage.ui msgctxt "" @@ -10383,7 +10378,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: optfontspage.ui msgctxt "" @@ -10446,7 +10441,7 @@ "label\n" "string.text" msgid "_Non-proportional fonts only" -msgstr "_Bare skrifter med fast bredde" +msgstr "_Bare skrifttyper med fast bredde" #: optfontspage.ui msgctxt "" @@ -10581,7 +10576,7 @@ "label\n" "string.text" msgid "Collect usage data and send it to The Document Foundation" -msgstr "" +msgstr "Samla inn bruksdata og send de til The Document Foundation" #: optgeneralpage.ui msgctxt "" @@ -10590,7 +10585,7 @@ "label\n" "string.text" msgid "Help Improve %PRODUCTNAME" -msgstr "" +msgstr "Hjelp til med รฅ gjรธre %PRODUCTNAME bedre" #: opthtmlpage.ui msgctxt "" @@ -11508,7 +11503,7 @@ "label\n" "string.text" msgid "Operating System" -msgstr "" +msgstr "Operativsystem" #: optopenclpage.ui msgctxt "" @@ -11520,7 +11515,6 @@ msgstr "OS-versjon" #: optopenclpage.ui -#, fuzzy msgctxt "" "optopenclpage.ui\n" "vendor\n" @@ -11548,14 +11542,13 @@ msgstr "Driverversjon" #: optopenclpage.ui -#, fuzzy msgctxt "" "optopenclpage.ui\n" "label4\n" "label\n" "string.text" msgid "OpenCL blacklist" -msgstr "OpenCL-svarteliste:" +msgstr "OpenCL-svarteliste" #: optopenclpage.ui msgctxt "" @@ -11585,14 +11578,13 @@ msgstr "_Slett" #: optopenclpage.ui -#, fuzzy msgctxt "" "optopenclpage.ui\n" "label5\n" "label\n" "string.text" msgid "OpenCL whitelist" -msgstr "OpenCL-hvitliste:" +msgstr "OpenCL-hvitliste" #: optopenclpage.ui msgctxt "" @@ -12033,7 +12025,7 @@ "label\n" "string.text" msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export." -msgstr "" +msgstr "Vedlikehold en liste over URL-adresser for Time Stamping Authority (TSA) som benyttes sammen med digital signatur i PDF-filer." #: optsecuritypage.ui msgctxt "" @@ -12042,7 +12034,7 @@ "label\n" "string.text" msgid "_TSAs..." -msgstr "" +msgstr "_TSA'er..." #: optsecuritypage.ui msgctxt "" @@ -12051,7 +12043,7 @@ "label\n" "string.text" msgid "TSAs" -msgstr "" +msgstr "TSA'er" #: optsecuritypage.ui msgctxt "" @@ -12579,7 +12571,7 @@ "label\n" "string.text" msgid "Force OpenGL even if blacklisted" -msgstr "" +msgstr "Tving bruk av OpenGL selv om rutinen er svartelista" #: optviewpage.ui msgctxt "" @@ -12588,10 +12580,9 @@ "tooltip_text\n" "string.text" msgid "Enabling this may expose driver bugs" -msgstr "" +msgstr "ร… gjรธre dette kan fรธre til driverfeil" #: optviewpage.ui -#, fuzzy msgctxt "" "optviewpage.ui\n" "label2\n" @@ -12670,7 +12661,7 @@ "label\n" "string.text" msgid "Show p_review of fonts" -msgstr "Vis _forhรฅndsvisning av skrifter" +msgstr "Vis _forhรฅndsvisning av skrifttyper" #: optviewpage.ui msgctxt "" @@ -12679,7 +12670,7 @@ "label\n" "string.text" msgid "Show font h_istory" -msgstr "Vis skrifth_istorie" +msgstr "Vis skrifttypeh_istorie" #: optviewpage.ui msgctxt "" @@ -12688,7 +12679,7 @@ "label\n" "string.text" msgid "Font Lists" -msgstr "Skriftlister" +msgstr "Skrifttypelister" #: optviewpage.ui msgctxt "" @@ -12832,7 +12823,7 @@ "10\n" "stringlist.text" msgid "Breeze" -msgstr "" +msgstr "Breeze" #: optviewpage.ui msgctxt "" @@ -14197,7 +14188,7 @@ "label\n" "string.text" msgid "Add and Resize" -msgstr "" +msgstr "Legg til og endre stรธrrelse" #: pickgraphicpage.ui msgctxt "" @@ -15124,7 +15115,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: searchformatdialog.ui msgctxt "" @@ -15196,7 +15187,7 @@ "label\n" "string.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #: securityoptionsdialog.ui msgctxt "" @@ -16978,7 +16969,7 @@ "title\n" "string.text" msgid "Time Stamping Authority URLs" -msgstr "" +msgstr "URL'er for tidsstempelautoriteter" #: tsaurldialog.ui msgctxt "" @@ -17005,7 +16996,7 @@ "label\n" "string.text" msgid "Add or delete Time Stamp Authority URLs" -msgstr "" +msgstr "Tilfรธy eller fjern URL'er for tidsstempelautoriteter" #: tsaurldialog.ui msgctxt "" @@ -17014,7 +17005,7 @@ "label\n" "string.text" msgid "Enter a Time Stamp Authority URL" -msgstr "" +msgstr "Tast inn en URL for en tidsstempelautoritet (TSA)" #: tsaurldialog.ui msgctxt "" @@ -17023,7 +17014,7 @@ "label\n" "string.text" msgid "TSA URL" -msgstr "" +msgstr "TSA-URL" #: twolinespage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/dbaccess/source/ext/macromigration.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-02-25 00:12+0000\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2015-09-20 10:48+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424823158.000000\n" +"X-POOTLE-MTIME: 1442746085.000000\n" #: macromigration.src msgctxt "" @@ -200,7 +200,7 @@ "STR_INVALID_BACKUP_LOCATION\n" "string.text" msgid "You need to choose a backup location other than the document location itself." -msgstr "" +msgstr "Du mรฅ velge en plassering for sikkerhetskopien som ikke er den samme som dokumentplasseringen." #: macromigration.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/dbaccess/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/dbaccess/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/dbaccess/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/dbaccess/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-09-04 18:54+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 10:48+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1409856897.000000\n" +"X-POOTLE-MTIME: 1442746111.000000\n" #: app.src msgctxt "" @@ -429,6 +429,10 @@ "\n" "Do you want to close all documents now?" msgstr "" +"Tilkoblingstypen er endret.\n" +"Alle skjemaer, rapporter, spรธrringer og tabeller mรฅ lukkes fรธr endringene kan tas i bruk.\n" +"\n" +"Vil du lukke alle dokumentene nรฅ?" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/dbaccess/source/ui/browser.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/dbaccess/source/ui/browser.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/dbaccess/source/ui/browser.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/dbaccess/source/ui/browser.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-02-25 00:12+0000\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2015-09-20 10:48+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424823158.000000\n" +"X-POOTLE-MTIME: 1442746119.000000\n" #: sbabrw.src msgctxt "" @@ -118,7 +118,7 @@ "STR_QUERY_CONNECTION_LOST\n" "string.text" msgid "The connection to the database has been lost. Do you want to reconnect?" -msgstr "" +msgstr "Mistet tilkoblinga til databasen. Vil du koble til igjen?" #: sbabrw.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-21 22:05+0000\n" +"PO-Revision-Date: 2015-09-20 10:30+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194716.000000\n" +"X-POOTLE-MTIME: 1442745026.000000\n" #: ActionTe.ulf msgctxt "" @@ -454,7 +454,7 @@ "OOO_ACTIONTEXT_55\n" "LngText.text" msgid "Registering fonts" -msgstr "Registrerer skrifter" +msgstr "Registrerer skrifttyper" #: ActionTe.ulf msgctxt "" @@ -870,7 +870,7 @@ "OOO_ACTIONTEXT_111\n" "LngText.text" msgid "Unregistering fonts" -msgstr "Avregistrerer skrifter" +msgstr "Avregistrerer skrifttyper" #: ActionTe.ulf msgctxt "" @@ -3342,7 +3342,7 @@ "OOO_ERROR_70\n" "LngText.text" msgid "The file [2][3] is being held in use {by the following process: Name: [4], ID: [5], Window Title: [6]}. Close that application and retry." -msgstr "Fila [2][3] er i bruk {av den fรธlgende prosessen: Navn: [4], ID: [5], Vindustittel: [6]}. Lukk det programmet og prรธv pรฅ nytt." +msgstr "Filen [2][3] er i bruk {av den fรธlgende prosessen: Navn: [4], ID: [5], Vindustittel: [6]}. Lukk det programmet og prรธv pรฅ nytt." #: Error.ulf msgctxt "" @@ -3606,7 +3606,7 @@ "OOO_ERROR_103\n" "LngText.text" msgid "Could not register font [2]. Verify that you have sufficient permissions to install fonts, and that the system supports this font." -msgstr "Klarte ikke รฅ registrere skrifta [2]. Sjekk til at du har tilstrekkelig tilgang til รฅ installere skrifter og at denne skrifta kan brukes sammen med datasystemet." +msgstr "Klarte ikke รฅ registrere skrifttypen [2]. Sjekk til at du har tilstrekkelig tilgang til รฅ installere skrifttyper og at denne skrifttypen kan brukes sammen med datasystemet." #: Error.ulf msgctxt "" @@ -3614,7 +3614,7 @@ "OOO_ERROR_104\n" "LngText.text" msgid "Could not unregister font [2]. Verify that you have sufficient permissions to remove fonts." -msgstr "Klarte ikke รฅ avregistrere skrifta [2]. Sjekk at du har tilstrekkelig tilgang til รฅ fjerne skrifter." +msgstr "Klarte ikke รฅ avregistrere skrifttypen [2]. Sjekk at du har tilstrekkelig tilgang til รฅ fjerne skrifttyper." #: Error.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/librelogo/source/pythonpath.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/librelogo/source/pythonpath.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/librelogo/source/pythonpath.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/librelogo/source/pythonpath.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-09-13 00:04+0000\n" -"Last-Translator: Klaus Ade \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 09:36+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: Norwegian Bokmรฅl <>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1410566678.000000\n" +"X-POOTLE-MTIME: 1442741792.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -278,7 +278,7 @@ "FONTCOLOR\n" "property.text" msgid "fontcolor|textcolor|textcolour" -msgstr "tekstfarge|textcolor" +msgstr "tekstfarge|textcolor|textcolour" #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-21 22:06+0000\n" +"PO-Revision-Date: 2015-09-20 09:41+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194778.000000\n" +"X-POOTLE-MTIME: 1442742081.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -8401,7 +8401,7 @@ "Label\n" "value.text" msgid "Increase Font Size" -msgstr "" +msgstr "Stรธrre skrift" #: DrawImpressCommands.xcu msgctxt "" @@ -8419,7 +8419,7 @@ "Label\n" "value.text" msgid "Decrease Font Size" -msgstr "" +msgstr "Mindre skrift" #: DrawImpressCommands.xcu msgctxt "" @@ -9410,7 +9410,7 @@ "Label\n" "value.text" msgid "Change Font" -msgstr "Endre skrift" +msgstr "Endre skrifttype" #: Effects.xcu msgctxt "" @@ -9437,7 +9437,7 @@ "Label\n" "value.text" msgid "Change Font Style" -msgstr "Endre skriftstil" +msgstr "Endre skrifttypestil" #: Effects.xcu msgctxt "" @@ -12299,7 +12299,7 @@ "Label\n" "value.text" msgid "Fontwork Gallery..." -msgstr "Skriftformingsgalleri โ€ฆ" +msgstr "Skriftformingsgalleriโ€ฆ" #: GenericCommands.xcu msgctxt "" @@ -13829,7 +13829,7 @@ "Label\n" "value.text" msgid "Font Name" -msgstr "Skriftnavn" +msgstr "Skrifttypenavn" #: GenericCommands.xcu msgctxt "" @@ -19136,7 +19136,7 @@ "Label\n" "value.text" msgid "Character Font Effects..." -msgstr "Skrifteffekter โ€ฆ" +msgstr "Skrifteffekterโ€ฆ" #: GenericCommands.xcu msgctxt "" @@ -20010,7 +20010,7 @@ "Label\n" "value.text" msgid "~Fonts..." -msgstr "Skrift~er โ€ฆ" +msgstr "Skrifttyp~erโ€ฆ" #: MathCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-13 03:18+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:37+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431487120.000000\n" +"X-POOTLE-MTIME: 1442741848.000000\n" #: Addons.xcu msgctxt "" @@ -1825,7 +1825,7 @@ "Right\n" "value.text" msgid "Grow/Shrink size of notes font" -msgstr "ร˜k eller minsk stรธrrelsen pรฅ skrifta for merknader" +msgstr "ร˜k eller minsk stรธrrelsen pรฅ skrifttypen for merknader" #: PresenterScreen.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/readlicense_oo/docs.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/readlicense_oo/docs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/readlicense_oo/docs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/readlicense_oo/docs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-21 22:06+0000\n" +"PO-Revision-Date: 2015-09-20 10:10+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194816.000000\n" +"X-POOTLE-MTIME: 1442743835.000000\n" #: readme.xrm msgctxt "" @@ -62,7 +62,7 @@ "A11\n" "readmeitem.text" msgid "${PRODUCTNAME} is free for use by everybody. You may take this copy of ${PRODUCTNAME} and install it on as many computers as you like, and use it for any purpose you like (including commercial, government, public administration and educational use). For further details see the license text packaged with this ${PRODUCTNAME} download." -msgstr "${PRODUCTNAME} er gratis รฅ bruke for alle. Du kan installere dette eksemplaret av ${PRODUCTNAME} pรฅ sรฅ mange datamaskiner du vil, og bruke det til hva du vil (gjelder ogsรฅ bruk i det offentlige, i nรฆringslivet og innen utdanning). Du kan lese mer om vilkรฅrene i lisensteksten som fรธlger med ${PRODUCTNAME} eller pรฅ http://www.openoffice.org/license.html" +msgstr "${PRODUCTNAME} er gratis รฅ bruke for alle. Du kan installere dette eksemplaret av ${PRODUCTNAME} pรฅ sรฅ mange datamaskiner du vil, og bruke det til hva du vil (gjelder ogsรฅ bruk i det offentlige, i nรฆringslivet og innen utdanning). Du kan lese mer om vilkรฅrene i lisensteksten som fรธlgjer med ${PRODUCTNAME}." #: readme.xrm msgctxt "" @@ -702,7 +702,7 @@ "reportbugs1\n" "readmeitem.text" msgid "Our system for reporting, tracking and solving bugs is currently BugZilla, kindly hosted at https://bugs.libreoffice.org/. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}." -msgstr "Systemet for rapportering, sporing og lรธsning av feil er for รธyeblikket BugZilla, pรฅ https://bugs.freedesktop.org/. Vi oppfordrer alle brukere som fรธler seg forpliktet, til รฅ rapportere feil som mรฅtte dukke opp pรฅ deres spesifikke plattform. Energisk feilrapportering er et av de mest verdifulle bidragene brukermiljรธet kommer med i forhold til den pรฅgรฅende utviklingen og forbedringen av ${PRODUCTNAME}." +msgstr "Systemet for rapportering, sporing og lรธsning av feil er for รธyeblikket BugZilla, pรฅ https://bugs.libreoffice.org/. Vi oppfordrer alle brukere som fรธler seg forpliktet, til รฅ rapportere feil som mรฅtte dukke opp pรฅ deres spesifikke plattform. Energisk feilrapportering er et av de mest verdifulle bidragene brukermiljรธet kommer med i forhold til den pรฅgรฅende utviklingen og forbedringen av ${PRODUCTNAME}." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/reportdesign/source/ui/inspection.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/reportdesign/source/ui/inspection.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/reportdesign/source/ui/inspection.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/reportdesign/source/ui/inspection.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-11-14 18:44+0000\n" -"Last-Translator: Olav \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 09:42+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.0\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1384454666.0\n" +"X-POOTLE-MTIME: 1442742160.000000\n" #: inspection.src msgctxt "" @@ -416,7 +416,7 @@ "RID_STR_FONT\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: inspection.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/reportdesign/source/ui/report.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/reportdesign/source/ui/report.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/reportdesign/source/ui/report.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/reportdesign/source/ui/report.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2014-06-02 15:32+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:42+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1401723125.000000\n" +"X-POOTLE-MTIME: 1442742170.000000\n" #: report.src msgctxt "" @@ -637,7 +637,7 @@ "RID_STR_UNDO_CHANGEFONT\n" "string.text" msgid "Change font" -msgstr "Endre skrift" +msgstr "Endre skrifttype" #: report.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/reportdesign/uiconfig/dbreport/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 21:16+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:43+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439587012.000000\n" +"X-POOTLE-MTIME: 1442742190.000000\n" #: backgrounddialog.ui msgctxt "" @@ -268,7 +268,7 @@ "label\n" "string.text" msgid "Font Color" -msgstr "" +msgstr "Skriftfarge" #: conditionwin.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-21 22:09+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:43+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194974.000000\n" +"X-POOTLE-MTIME: 1442742225.000000\n" #: condformatdlg.src msgctxt "" @@ -24960,7 +24960,7 @@ "SCSTR_CHAR_ATTRS\n" "string.text" msgid "Font Attributes" -msgstr "Skriftegenskaper" +msgstr "Skrifttypeegenskaper" #: scstring.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sc/uiconfig/scalc/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-21 22:09+0000\n" +"PO-Revision-Date: 2015-09-20 09:44+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440194989.000000\n" +"X-POOTLE-MTIME: 1442742272.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -3026,7 +3026,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: formatcellsdialog.ui msgctxt "" @@ -3745,7 +3745,7 @@ "label\n" "string.text" msgid "Use the buttons to change the font or insert field commands such as date, time, etc." -msgstr "Bruk knappene til รฅ endre skrift eller sette inn feltkommandoer som dato, klokkeslett, osv." +msgstr "Bruk knappene til รฅ endre skrifttypen eller sette inn feltkommandoer som dato, klokkeslett, osv." #: headerfootercontent.ui msgctxt "" @@ -5401,7 +5401,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: paratemplatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-05-07 21:16+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 10:13+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399497370.000000\n" +"X-POOTLE-MTIME: 1442744009.000000\n" #: analysis.src msgctxt "" @@ -4694,7 +4694,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd first period" -msgstr "Gir prisen per 100 valutaenheter i nominell verdi for et verdipapir med en ulik fรธrste periode" +msgstr "Gir prisen per $100 valutaenheter i nominell verdi for et verdipapir med en oddetall fรธrste periode" #: analysis.src msgctxt "" @@ -5036,7 +5036,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd last period" -msgstr "Gir prisen per 100 valutaenheter i pรฅlydende verdi for et verdipapir med en ulik siste periode" +msgstr "Gir prisen per $100 valutaenheter i pรฅlydende verdi for et verdipapir med en oddetall siste periode" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/scp2/source/accessories.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/scp2/source/accessories.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/scp2/source/accessories.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/scp2/source/accessories.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-02-25 00:12+0000\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2015-09-20 09:45+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424823158.000000\n" +"X-POOTLE-MTIME: 1442742323.000000\n" #: module_accessories.ulf msgctxt "" @@ -38,7 +38,7 @@ "STR_NAME_MODULE_OPTIONAL_ACCESSORIES_FONTS\n" "LngText.text" msgid "Fonts" -msgstr "Skrifter" +msgstr "Skrifttyper" #: module_font_accessories.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sd/source/ui/animations.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sd/source/ui/animations.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sd/source/ui/animations.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sd/source/ui/animations.po 2015-10-24 15:21:48.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-11 18:25+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 09:46+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386786318.0\n" +"X-POOTLE-MTIME: 1442742364.000000\n" #: CustomAnimation.src msgctxt "" @@ -376,7 +376,7 @@ "STR_CUSTOMANIMATION_FONT_PROPERTY\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: CustomAnimation.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sd/uiconfig/sdraw/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-02-25 00:12+0000\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2015-09-20 09:46+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: none\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424823158.000000\n" +"X-POOTLE-MTIME: 1442742399.000000\n" #: breakdialog.ui msgctxt "" @@ -384,7 +384,7 @@ "label\n" "string.text" msgid "Fonts" -msgstr "Skrifter" +msgstr "Skrifttyper" #: drawchardialog.ui msgctxt "" @@ -537,7 +537,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: drawprtldialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-13 03:27+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:46+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: none\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431487630.000000\n" +"X-POOTLE-MTIME: 1442742411.000000\n" #: assistentdialog.ui msgctxt "" @@ -3501,7 +3501,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: templatedialog.ui #, fuzzy diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sfx2/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sfx2/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sfx2/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sfx2/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-08-21 22:11+0000\n" +"PO-Revision-Date: 2015-09-20 09:47+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440195114.000000\n" +"X-POOTLE-MTIME: 1442742423.000000\n" #: dialog.src msgctxt "" @@ -185,7 +185,7 @@ "STR_FONT_TABPAGE\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: dinfdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sfx2/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sfx2/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sfx2/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-13 03:28+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-18 15:45+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: none\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431487692.000000\n" +"X-POOTLE-MTIME: 1445183106.000000\n" #: alienwarndialog.ui msgctxt "" @@ -267,7 +267,7 @@ "label\n" "string.text" msgid "Font Embedding" -msgstr "Skriftinnbygging" +msgstr "Skrifttypeinnbygging" #: documentinfopage.ui msgctxt "" @@ -1366,7 +1366,7 @@ "label\n" "string.text" msgid "_Donโ€™t Save" -msgstr "_Ikkje lagre" +msgstr "_Ikke lagre" #: searchdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-21 22:12+0000\n" +"PO-Revision-Date: 2015-09-20 09:48+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440195144.000000\n" +"X-POOTLE-MTIME: 1442742521.000000\n" #: commands.src msgctxt "" @@ -1078,7 +1078,7 @@ "RID_BOLDX_HELP\n" "string.text" msgid "Bold Font" -msgstr "Halvfet skrift" +msgstr "Fet skrift" #: commands.src msgctxt "" @@ -1102,7 +1102,7 @@ "RID_FONTXY_HELP\n" "string.text" msgid "Change Font" -msgstr "Endre skrift" +msgstr "Endre skrifttype" #: commands.src msgctxt "" @@ -2347,7 +2347,7 @@ "STR_FONT\n" "string.text" msgid "font" -msgstr "skrift" +msgstr "skrifttype" #: smres.src msgctxt "" @@ -4389,7 +4389,7 @@ "RID_BOLDX\n" "toolboxitem.text" msgid "Bold Font" -msgstr "Halvfet skrift" +msgstr "Fet skrift" #: toolbox.src msgctxt "" @@ -4416,7 +4416,7 @@ "RID_FONTXY\n" "toolboxitem.text" msgid "Change Font" -msgstr "Endre skrift" +msgstr "Endre skrifttype" #: toolbox.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/starmath/uiconfig/smath/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-13 03:30+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:49+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: none\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431487836.000000\n" +"X-POOTLE-MTIME: 1442742585.000000\n" #: alignmentdialog.ui msgctxt "" @@ -141,7 +141,7 @@ "title\n" "string.text" msgid "Fonts" -msgstr "Skrifter" +msgstr "Skrifttyper" #: fontdialog.ui msgctxt "" @@ -150,7 +150,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: fontdialog.ui msgctxt "" @@ -274,7 +274,7 @@ "title\n" "string.text" msgid "Fonts" -msgstr "Skrifter" +msgstr "Skrifttyper" #: fonttypedialog.ui msgctxt "" @@ -335,14 +335,13 @@ msgstr "_Tekst" #: fonttypedialog.ui -#, fuzzy msgctxt "" "fonttypedialog.ui\n" "formulaL\n" "label\n" "string.text" msgid "Formula Fonts" -msgstr "Formelskrifter" +msgstr "Formelskrifttyper" #: fonttypedialog.ui #, fuzzy @@ -373,14 +372,13 @@ msgstr "" #: fonttypedialog.ui -#, fuzzy msgctxt "" "fonttypedialog.ui\n" "customL\n" "label\n" "string.text" msgid "Custom Fonts" -msgstr "Selvvalgte skrifter" +msgstr "Selvvalgte skrifttyper" #: fonttypedialog.ui msgctxt "" @@ -1164,14 +1162,13 @@ msgstr "_Symbolsett" #: symdefinedialog.ui -#, fuzzy msgctxt "" "symdefinedialog.ui\n" "fontText\n" "label\n" "string.text" msgid "_Font:" -msgstr "_Skrift" +msgstr "_Skrifttype:" #: symdefinedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svtools/source/control.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svtools/source/control.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svtools/source/control.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svtools/source/control.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2014-09-13 00:04+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:51+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1410566671.000000\n" +"X-POOTLE-MTIME: 1442742683.000000\n" #: calendar.src msgctxt "" @@ -302,7 +302,7 @@ "STR_SVT_FONTMAP_BOTH\n" "string.text" msgid "The same font will be used on both your printer and your screen." -msgstr "Den samme skrifta vil bli brukt bรฅde pรฅ utskrifta og pรฅ skjermen." +msgstr "Den samme skrifttypen vil bli brukt bรฅde pรฅ utskriften og pรฅ skjermen." #: ctrltool.src msgctxt "" @@ -310,7 +310,7 @@ "STR_SVT_FONTMAP_PRINTERONLY\n" "string.text" msgid "This is a printer font. The screen image may differ." -msgstr "Dette er en skrift for skrivere. Utseendet pรฅ skjermen kan vรฆre forskjellig." +msgstr "Dette er en skrifttype for skrivere. Utseendet pรฅ skjermen kan vรฆre forskjellig." #: ctrltool.src msgctxt "" @@ -318,7 +318,7 @@ "STR_SVT_FONTMAP_SCREENONLY\n" "string.text" msgid "This is a screen font. The printer image may differ." -msgstr "Dette er en skrift for skjermer. Utseendet pรฅ utskrifta kan se annerledes ut." +msgstr "Dette er en skrifttype for skjermer. Utseendet pรฅ utskriften kan se annerledes ut." #: ctrltool.src msgctxt "" @@ -334,7 +334,7 @@ "STR_SVT_FONTMAP_STYLENOTAVAILABLE\n" "string.text" msgid "This font style will be simulated or the closest matching style will be used." -msgstr "Denne skriftstilen vil bli simulert, eller den nรฆrmeste, tilsvarende stilen vil bli brukt." +msgstr "Denne skrifttypen vil bli simulert, eller den nรฆrmeste, tilsvarende stilen vil bli brukt." #: ctrltool.src msgctxt "" @@ -342,7 +342,7 @@ "STR_SVT_FONTMAP_NOTAVAILABLE\n" "string.text" msgid "This font has not been installed. The closest available font will be used." -msgstr "Denne skrifta er ikke installert. Den nรฆrmeste tilgjengelige skrifta vil bli brukt i stedet." +msgstr "Denne skrifttypen er ikke installert. Den nรฆrmeste tilgjengelige skrifttypen vil bli brukt i stedet." #: filectrl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svtools/source/java.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svtools/source/java.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svtools/source/java.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svtools/source/java.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-04 23:54+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 10:15+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1423094049.000000\n" +"X-POOTLE-MTIME: 1442744132.000000\n" #: javaerror.src msgctxt "" @@ -54,7 +54,7 @@ "STR_ERROR_JVMCREATIONFAILED\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 Tools - Options - %PRODUCTNAME - Advanced." -msgstr "%PRODUCTNAME trenger et Java-kjรธremiljรธ (JRE) for รฅ utfรธre denne oppgaven, men det valgte virker ikke. Velg en annen versjon eller installer en ny. Velg deretter denne i %PRODUCTNAME โ†’ Innstillinger โ†’ %PRODUCTNAME - Avansert." +msgstr "%PRODUCTNAME trenger et Java-kjรธremiljรธ (JRE) for รฅ utfรธre denne oppgaven, men det valgte virker ikke. Velg en annen versjon eller installer en ny. Velg deretter denne i Verktรธy - Innstillinger - %PRODUCTNAME - Avansert." #: javaerror.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svtools/source/misc.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svtools/source/misc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svtools/source/misc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svtools/source/misc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-21 22:13+0000\n" +"PO-Revision-Date: 2015-09-20 10:15+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440195220.000000\n" +"X-POOTLE-MTIME: 1442744158.000000\n" #: imagemgr.src msgctxt "" @@ -3857,7 +3857,7 @@ "STR_SVT_ESTIMATED_SIZE_VEC\n" "string.text" msgid "The file size is %1 KB." -msgstr "Filstรธrrelsen er 1% KB." +msgstr "Filstรธrrelsen er %1 KB." #: svtools.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/inc.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/inc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/inc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/inc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-13 03:31+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:51+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431487873.000000\n" +"X-POOTLE-MTIME: 1442742693.000000\n" #: globlmn_tmpl.hrc msgctxt "" @@ -94,7 +94,7 @@ "ITEM_FORMAT_ATTR_CHAR_FONT\n" "#define.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: globlmn_tmpl.hrc msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/form.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/form.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/form.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/form.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-02-25 00:12+0000\n" -"Last-Translator: Olav Dahlum \n" +"PO-Revision-Date: 2015-09-20 10:16+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424823158.000000\n" +"X-POOTLE-MTIME: 1442744183.000000\n" #: datanavi.src msgctxt "" @@ -1580,7 +1580,7 @@ "RID_STR_OBJECT_LABEL\n" "string.text" msgid "#object# label" -msgstr "#objekt# merkelapp" +msgstr "#object# merkelapp" #: formshell.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/items.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/items.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/items.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/items.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2014-09-13 00:05+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:57+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1410566703.000000\n" +"X-POOTLE-MTIME: 1442743033.000000\n" #: svxerr.src msgctxt "" @@ -307,7 +307,7 @@ "Font\n" "itemlist.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: svxitems.src msgctxt "" @@ -388,7 +388,7 @@ "Rel. Font size\n" "itemlist.text" msgid "Rel. Font size" -msgstr "Relativ skriftstรธrrelse" +msgstr "Rel. skriftstรธrrelse" #: svxitems.src msgctxt "" @@ -631,7 +631,7 @@ "Asian font\n" "itemlist.text" msgid "Asian font" -msgstr "Asiatisk skrift" +msgstr "Asiatisk skrifttype" #: svxitems.src msgctxt "" @@ -640,7 +640,7 @@ "Size of Asian font\n" "itemlist.text" msgid "Size of Asian font" -msgstr "Stรธrrelse pรฅ asiatisk skrift" +msgstr "Stรธrrelse pรฅ asiatisk skrifttype" #: svxitems.src msgctxt "" @@ -649,7 +649,7 @@ "Language of Asian font\n" "itemlist.text" msgid "Language of Asian font" -msgstr "Sprรฅk for asiatiske skrifter" +msgstr "Sprรฅk for asiatiske skrifttyper" #: svxitems.src msgctxt "" @@ -658,7 +658,7 @@ "Posture of Asian font\n" "itemlist.text" msgid "Posture of Asian font" -msgstr "Plassering av asiatiske skrifter" +msgstr "Plassering av asiatiske skrifttyper" #: svxitems.src msgctxt "" @@ -667,7 +667,7 @@ "Weight of Asian font\n" "itemlist.text" msgid "Weight of Asian font" -msgstr "Tykkelse pรฅ asiatiske skrifter" +msgstr "Tykkelse pรฅ asiatiske skrifttyper" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2013-12-11 10:16+0100\n" -"Last-Translator: Olav Dahlum \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-20 10:18+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1358833478.0\n" +"X-POOTLE-MTIME: 1442744310.000000\n" #: errtxt.src msgctxt "" @@ -1033,7 +1033,7 @@ msgstr "" "Dette dokumentet inneholder makroer.\n" "\n" -"Makroer kan inneholde virus. Sikkerhetsinnstillingene i Verktรธy โ†’ Innstillinger โ†’ PRODUCTNAME โ†’ Sikkerhet gjรธr at makroene ikke kan kjรธres.\n" +"Makroer kan inneholde virus. Sikkerhetsinnstillingene i %PRODUCTNAME - Innstillinger - %PRODUCTNAME - Sikkerhet gjรธr at makroene ikke kan kjรธres.\n" "\n" "Det kan hende at noen av funksjonene ikke vil fungere." diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/tbxctrls.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/tbxctrls.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/source/tbxctrls.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/source/tbxctrls.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-04-25 01:00+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 09:59+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429923623.000000\n" +"X-POOTLE-MTIME: 1442743158.000000\n" #: colrctrl.src msgctxt "" @@ -640,7 +640,7 @@ "RID_SVXSTR_CHARFONTNAME\n" "string.text" msgid "Font Name" -msgstr "Skriftnavn" +msgstr "Skrifttypenavn" #: tbcontrl.src msgctxt "" @@ -648,7 +648,7 @@ "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE\n" "string.text" msgid "Font Name. The current font is not available and will be substituted." -msgstr "Skriftnavn. Den gjeldende skriften er ikke tilgjengelig og vil bli erstattet av en annen." +msgstr "Skriftnavn. Den gjeldende skrifttypen er ikke tilgjengelig og vil bli erstattet av en annen." #: tbcontrl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-13 03:34+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 10:00+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431488070.000000\n" +"X-POOTLE-MTIME: 1442743210.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2141,7 +2141,7 @@ "title\n" "string.text" msgid "Fontwork" -msgstr "" +msgstr "Fontwork" #: dockingfontwork.ui msgctxt "" @@ -3018,14 +3018,13 @@ msgstr "Skriftformingsgalleri" #: fontworkgallerydialog.ui -#, fuzzy msgctxt "" "fontworkgallerydialog.ui\n" "label1\n" "label\n" "string.text" msgid "Select a Fontwork style:" -msgstr "Velg en skriftformingsstil" +msgstr "Velg en skriftformingsstil:" #: fontworkspacingdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/source/core/undo.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/source/core/undo.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/source/core/undo.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/source/core/undo.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:02+0200\n" -"PO-Revision-Date: 2014-05-07 22:00+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 10:19+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1399500045.000000\n" +"X-POOTLE-MTIME: 1442744344.000000\n" #: undo.src msgctxt "" @@ -982,7 +982,7 @@ "STR_UNDO_PAGEDESC_RENAME\n" "string.text" msgid "Rename page style: $1 $2 $3" -msgstr "Gi nytt navn til sidestil: $1" +msgstr "Gi nytt navn til sidestil: $1 $2 $3" #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/source/ui/envelp.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/source/ui/envelp.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/source/ui/envelp.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/source/ui/envelp.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2013-08-29 04:00+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-20 10:19+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1377748855.0\n" +"X-POOTLE-MTIME: 1442744359.000000\n" #: envelp.src msgctxt "" @@ -54,7 +54,7 @@ "STR_CUSTOM\n" "string.text" msgid "[User]" -msgstr "[Selvvalgt]" +msgstr "[Bruker]" #: labfmt.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/source/uibase/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/source/uibase/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/source/uibase/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/source/uibase/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-02-19 21:46+0000\n" -"Last-Translator: Olav \n" +"PO-Revision-Date: 2015-09-20 10:19+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424382364.000000\n" +"X-POOTLE-MTIME: 1442744374.000000\n" #: attrdesc.src msgctxt "" @@ -1580,7 +1580,7 @@ "FN_SELECT_FOOTNOTE\n" "toolboxitem.text" msgid "Anchor<->Text" -msgstr "Anker โ†” tekst" +msgstr "Anker <-> tekst" #: navipi.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-13 03:38+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-20 10:03+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431488300.000000\n" +"X-POOTLE-MTIME: 1442743400.000000\n" #: abstractdialog.ui msgctxt "" @@ -248,7 +248,7 @@ "label\n" "string.text" msgid "Default fonts" -msgstr "Standardskrifter" +msgstr "Standardskrifttyper" #: asciifilterdialog.ui msgctxt "" @@ -608,7 +608,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: autoformattable.ui msgctxt "" @@ -1517,7 +1517,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: characterproperties.ui msgctxt "" @@ -2687,7 +2687,7 @@ "label\n" "string.text" msgid "_Embed fonts in the document" -msgstr "_Innebygde skrifttyper i dokumentet" +msgstr "_Innebygg skrifttyper i dokumentet" #: dropcapspage.ui msgctxt "" @@ -9695,7 +9695,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: optfonttabpage.ui msgctxt "" @@ -9767,7 +9767,7 @@ "label\n" "string.text" msgid "Basic Fonts (%1)" -msgstr "Grunnskrifter (%1)" +msgstr "Grunnleggende skrifttyper (%1)" #: optfonttabpage.ui msgctxt "" @@ -10226,7 +10226,7 @@ "9\n" "stringlist.text" msgid "Title font" -msgstr "Skrift for overskrift" +msgstr "Skrifttype for overskrift" #: optredlinepage.ui msgctxt "" @@ -12646,14 +12646,13 @@ msgstr "Marg" #: sidebartheme.ui -#, fuzzy msgctxt "" "sidebartheme.ui\n" "label1\n" "label\n" "string.text" msgid "Fonts" -msgstr "Skrift" +msgstr "Skrifttyper" #: sidebartheme.ui #, fuzzy @@ -13527,7 +13526,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: templatedialog1.ui msgctxt "" @@ -13716,7 +13715,7 @@ "label\n" "string.text" msgid "Font" -msgstr "Skrift" +msgstr "Skrifttype" #: templatedialog2.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/swext/mediawiki/help.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/swext/mediawiki/help.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/swext/mediawiki/help.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/swext/mediawiki/help.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-12-11 10:10+0100\n" -"Last-Translator: Olav Dahlum \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-20 10:24+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1381065480.0\n" +"X-POOTLE-MTIME: 1442744691.000000\n" #: help.tree msgctxt "" @@ -166,7 +166,7 @@ "par_id5328836\n" "help.text" msgid "In the URL textbox, enter the address of a Wiki that you want to connect to." -msgstr "I tekstboksen Nettadresse skriver du inn adressen til wikien du vil koble til." +msgstr "I URL tekstboksen, skriver du inn adressen til wikien du vil koble til." #: wiki.xhp msgctxt "" @@ -182,7 +182,7 @@ "par_id5906552\n" "help.text" msgid "In the Username box, enter your user ID for your Wiki account." -msgstr "I boksen Brukernavn skriver du inn brukeridentiteten som hรธrer til wikikontoen." +msgstr "I boksen Brukernavn skriver du inn brukeridentiteten som hรธrer til wikikontoen." #: wiki.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id8869594\n" "help.text" msgid "In the Password box, enter the password for your Wiki account, then click OK." -msgstr "I boksen Passord skriver du inn passordet til wikikontoen din og velger OK." +msgstr "I boksen Passord skriver du inn passordet til wikikontoen din og velger OK." #: wiki.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_id292062\n" "help.text" msgid "Optionally enable \"Save password\" to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose Tools - Options - %PRODUCTNAME - Security to enable the master password. \"Save password\" is unavailable when the master password is not enabled." -msgstr "Hvis du vil, kan du krysse av for Lagre passordet for รฅ lagre passordet mellom รธktene. Et hovedpassord brukes til รฅ behandle tilgangen til alle passord som er lagret. Velg Verktรธy โ†’ Innstillinger โ†’ %PRODUCTNAME โ†’ Sikkerhet for รฅ ta i bruk et hovedpassord. Du kan ikke velge ยซLagre passordetยป hvis hovedpassord ikke brukes." +msgstr "Hvis du vil, kan du krysse av for \"Lagre passordet\" for รฅ lagre passordet mellom รธktene. Et hovedpassord brukes til รฅ behandle tilgangen til alle passord som er lagret. Velg Verktรธy - Innstillinger - %PRODUCTNAME - Sikkerhet for รฅ ta i bruk et hovedpassord. Du kan ikke velge \"Lagre passordet\" hvis hovedpassord ikke brukes." #: wiki.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_id4571672\n" "help.text" msgid "Use the MediaWiki dialog to add or edit your MediaWiki account settings." -msgstr "I dialogvinduet MediaWiki kan du legge til eller endre innstillinger for MediaWiki-kontoene dine." +msgstr "I dialogvinduet MediaWiki kan du legge til eller endre innstillinger for MediaWiki-kontoene dine." #: wikiaccount.xhp msgctxt "" @@ -438,7 +438,7 @@ "par_id3735465\n" "help.text" msgid "Native OpenDocument hyperlinks are transformed into \"external\" Wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the Wiki web. For creating Wiki links that point to other subjects of the same Wiki domain, use Wiki links." -msgstr "OpenDokument-hyperlenker gjรธres om til ยซeksterneยป wikilenker. Derfor bรธr du bare bruke den innebygde lenkefunksjonen i OpenDocument-formatet til รฅ lage lenker til sider som er utenfor den gjeldende wikien. Hvis du vil lage lenker som viser til andre sider i samme wikidomene, bรธr du brukewikilenker ([[sidenavn]])." +msgstr "OpenDokument-hyperlenker gjรธres om til \"eksterne\" wikilenker. Derfor bรธr du bare bruke den innebygde lenkefunksjonen i OpenDocument-formatet til รฅ lage lenker til sider som er utenfor den gjeldende wikien. Hvis du vil lage lenker som viser til andre sider i samme wikidomene, bรธr du bruke wikilenker." #: wikiformats.xhp msgctxt "" @@ -454,7 +454,7 @@ "par_id8942838\n" "help.text" msgid "Lists can reliably be exported when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use Format - Bullets and Numbering to define and apply the respective list style." -msgstr "Du kan trygt eksportere lister hvis hele lista bruker samme listestil. Bruk ikonene for nummerering og punktmerking til รฅ lage en liste i Writer. Hvis du trenger en liste uten nummerering eller punktmerking, kan du bruke Format โ†’ Punkter og nummerering til รฅ lage og bruke andre listestiler." +msgstr "Du kan trygt eksportere lister hvis hele lista bruker samme listestil. Bruk ikonene for nummerering og punktmerking til รฅ lage en liste i Writer. Hvis du trenger en liste uten nummerering eller punktmerking, kan du bruke Format - Punkter og nummerering til รฅ lage og bruke andre listestiler." #: wikiformats.xhp msgctxt "" @@ -638,7 +638,7 @@ "par_id1743827\n" "help.text" msgid "In the Send to MediaWiki dialog, specify the settings for your current Wiki upload." -msgstr "Angi innstillingene for opplasting til den aktuelle wikien i dialogvinduet Send til MediaWiki." +msgstr "Angi innstillingene for opplasting til den aktuelle wikien i dialogvinduet Send til MediaWiki." #: wikisend.xhp 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 "Velg MediaWiki-tjeneren der du vil at dokumentet skal publiseres. Trykk Legg til for รฅ legge til en ny tjener i lista." +msgstr "Velg MediaWiki-tjeneren der du vil at dokumentet skal publiseres. Trykk Legg til for รฅ legge til en ny tjener i lista." #: wikisend.xhp msgctxt "" @@ -702,7 +702,7 @@ "par_id1188390\n" "help.text" msgid "You can add, edit and remove MediaWiki servers. Open the dialog by Tools - Options - Internet - MediaWiki. Alternatively, choose Tools - Extension Manager, select the Wiki Publisher, and click the Options button." -msgstr "Du kan legge til, redigere og fjerne MediaWiki-tjenere. ร…pne dialogvinduet fra Verktรธy โ†’ Innstillinger โ†’ Internett โ†’ MediaWiki. Du kan ogsรฅ velge Verktรธy โ†’ Utvidelser, merke Wiki Publisher og trykke Innstillinger." +msgstr "Du kan legge til, redigere og fjerne MediaWiki-tjenere. ร…pne dialogvinduet fra Verktรธy - Innstillinger - Internett - MediaWiki. Du kan ogsรฅ velge Verktรธy - Utvidelser, merke Wiki Publisher og trykke Innstillinger." #: wikisettings.xhp msgctxt "" @@ -710,7 +710,7 @@ "par_id300607\n" "help.text" msgid "Click Add to add a new Wiki server.
Select an entry and click Edit to edit the account settings.
Select an entry and click Remove to remove the entry from the list.
" -msgstr "Trykk Legg til for รฅ legge til en ny wiki-tjener.
Velg en oppfรธring og trykk Rediger for รฅ redigere kontoinnstillingene.
Velg en oppfรธring og trykk Fjern for รฅ fjerne oppfรธringen fra lista.
" +msgstr "Trykk Legg til for รฅ legge til en ny wiki-tjener.
Velg en oppfรธring og trykk Rediger for รฅ redigere kontoinnstillingene.
Velg en oppfรธring og trykk Fjern for รฅ fjerne oppfรธringen fra lista.
" #: wikisettings.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,19 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2013-01-22 05:45+0000\n" -"Last-Translator: Olav \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2015-09-20 10:25+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1358833511.0\n" +"X-POOTLE-MTIME: 1442744723.000000\n" #: WikiExtension.xcu msgctxt "" @@ -302,4 +302,4 @@ "Dlg_WikiPageExists_Label1\n" "value.text" msgid "A wiki article with the title '$ARG1' already exists. Do you want to replace the current article with your article? " -msgstr "Det finnes allerede en wikiartikkel med tittelen ยซ$ARG1ยป. Vil du erstatte den eksisterende artikkelen med din artikkel?" +msgstr "Det finnes allerede en wikiartikkel med tittelen '$ARG1'. Vil du erstatte den eksisterende artikkelen med din artikkel? " diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/vcl/source/src.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/vcl/source/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/vcl/source/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/vcl/source/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-02-04 01:38+0000\n" -"Last-Translator: Olav \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-09-20 10:25+0000\n" +"Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1423013906.000000\n" +"X-POOTLE-MTIME: 1442744750.000000\n" #. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: btntext.src @@ -386,10 +386,7 @@ "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY\n" "string.text" msgid "A file named \"$filename$\" already exists. Do you want to replace it?" -msgstr "" -"En fil kalt ยซ$filename$ยป eksisterer allerede.\n" -"\n" -"Vil du overskrive denne?" +msgstr "En fil kalt \"$filename$\" eksisterer allerede. Vil du overskrive denne?" #: fpicker.src msgctxt "" @@ -1186,7 +1183,7 @@ "SV_ACCESSERROR_NO_FONTS\n" "string.text" msgid "No fonts could be found on the system." -msgstr "Kunne ikke finne skrifttyper pรฅ systemet." +msgstr "Kunne ikke finne noen skrifttyper pรฅ systemet." #: stdtext.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/wizards/source/formwizard.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/wizards/source/formwizard.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/wizards/source/formwizard.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/wizards/source/formwizard.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-21 19:34+0000\n" +"PO-Revision-Date: 2015-09-20 10:26+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: British English <>\n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440185658.000000\n" +"X-POOTLE-MTIME: 1442744803.000000\n" #: dbwizres.src msgctxt "" @@ -1964,7 +1964,7 @@ "RID_DB_REPORT_WIZARD_START + 65\n" "string.text" msgid "The query with the statement
''
could not be run.
Check your data source." -msgstr "Klarte ikke รฅ kjรธre spรธrringa med uttrykket
ยซยป
Kontroller datakilden." +msgstr "Klarte ikke รฅ kjรธre spรธrringen med uttrykket
''
.
Kontroller datakilden." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nb/xmlsecurity/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nb/xmlsecurity/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nb/xmlsecurity/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-21 19:34+0000\n" +"PO-Revision-Date: 2015-09-20 10:28+0000\n" "Last-Translator: Klaus Ade Johnstad \n" "Language-Team: LANGUAGE \n" "Language: nb\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440185693.000000\n" +"X-POOTLE-MTIME: 1442744890.000000\n" #: certgeneral.ui msgctxt "" @@ -330,8 +330,9 @@ "Only macros from trusted file locations are allowed to run.\n" "All other macros, regardless whether signed or not, are disabled." msgstr "" -"Hรธ~y.\n" -"Bare signerte makroer fra tiltrodde kilder fรฅr lov til รฅ kjรธre. Makroer som ikke er signert blir slรฅtt av." +"_Hรธ~y.\n" +"Bare makroer fra tiltrodde kilder fรฅr lov til รฅ kjรธre.\n" +" Makroer blir slรฅtt av uansett om de er signerte eller ikke." #: securitytrustpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ne/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ne/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ne/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ne/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ne/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/ne/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ne/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ne/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ne/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ne/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ne/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ne/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ne/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ne/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ne/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ne/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nl/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/nl/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nl/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nl/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-09-03 06:24+0000\n" -"Last-Translator: kees538 \n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nl/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/nl/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nl/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nl/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-17 13:57+0200\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nl/svx/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/nl/svx/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nl/svx/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nl/svx/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-04 13:31+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2015-10-17 12:24+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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436016678.000000\n" +"X-POOTLE-MTIME: 1445084642.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -3096,7 +3096,7 @@ "label\n" "string.text" msgid "_Spacing:" -msgstr "_Spatiรซring:" +msgstr "A_fstand:" #: headfootformatpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nl/sw/source/ui/fldui.po libreoffice-l10n-5.0.3~rc2/translations/source/nl/sw/source/ui/fldui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nl/sw/source/ui/fldui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nl/sw/source/ui/fldui.po 2015-10-24 15:21:48.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-30 12:25+0000\n" -"Last-Translator: Cor \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-18 07:32+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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1388406349.0\n" +"X-POOTLE-MTIME: 1442561528.000000\n" #: fldui.src msgctxt "" @@ -886,7 +886,7 @@ "FMT_REF_NUMBER_NO_CONTEXT\n" "string.text" msgid "Number (no context)" -msgstr "Getal (geen context)" +msgstr "Nummer (geen context)" #: fldui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nn/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/nn/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nn/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nn/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-17 13:57+0200\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.0.3~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2015-10-24 15:21:48.000000000 +0000 @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440491891.000000\n" +"X-POOTLE-MTIME: 1440491888.000000\n" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nn/sfx2/source/doc.po libreoffice-l10n-5.0.3~rc2/translations/source/nn/sfx2/source/doc.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nn/sfx2/source/doc.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nn/sfx2/source/doc.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-07-16 20:47+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-24 12:15+0000\n" +"Last-Translator: Kolbjรธrn Stuestรธl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437079643.000000\n" +"X-POOTLE-MTIME: 1443096936.000000\n" #: doc.src msgctxt "" @@ -54,7 +54,7 @@ "STR_SAVEACOPY\n" "string.text" msgid "Save a Copy..." -msgstr "Lagra ein _kopi โ€ฆ" +msgstr "Lagra ein kopi โ€ฆ" #: doc.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nn/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/nn/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nn/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nn/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nr/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/nr/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nr/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nr/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nr/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/nr/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nr/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nr/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nr/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/nr/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nr/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nr/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nso/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/nso/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nso/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nso/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nso/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/nso/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nso/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nso/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/nso/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/nso/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/nso/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/nso/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 21:38+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-20 05:30+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439588287.000000\n" +"X-POOTLE-MTIME: 1445319008.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -567,7 +567,6 @@ #. โ€“ (U+02013), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EN_DASH\n" @@ -577,7 +576,6 @@ #. โ€” (U+02014), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EM_DASH\n" @@ -587,7 +585,6 @@ #. โ€™ (U+02019), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RIGHT_SINGLE_QUOTATION_MARK\n" @@ -633,7 +630,6 @@ #. โ€ฆ (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "HORIZONTAL_ELLIPSIS\n" @@ -679,7 +675,6 @@ #. โ€ผ (U+0203C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_EXCLAMATION_MARK\n" @@ -689,7 +684,6 @@ #. โ‰ (U+02049), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "EXCLAMATION_QUESTION_MARK\n" @@ -1095,7 +1089,6 @@ #. โˆ’ (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MINUS_SIGN\n" @@ -1114,7 +1107,6 @@ #. โˆ• (U+02215), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DIVISION_SLASH\n" @@ -1124,7 +1116,6 @@ #. โˆ– (U+02216), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SET_MINUS\n" @@ -1341,7 +1332,6 @@ #. โ‰ช (U+0226A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUCH_LESS-THAN\n" @@ -1351,7 +1341,6 @@ #. โ‰ซ (U+0226B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MUCH_GREATER-THAN\n" @@ -3305,7 +3294,6 @@ #. โ“ (U+02753), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_QUESTION_MARK_ORNAMENT\n" @@ -3324,7 +3312,6 @@ #. โ• (U+02755), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_EXCLAMATION_MARK_ORNAMENT\n" @@ -7389,7 +7376,7 @@ "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "" +msgstr "envolopa2" #. ๐Ÿ“ฉ (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7398,7 +7385,7 @@ "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope3" -msgstr "" +msgstr "envolopa3" #. ๐Ÿ“ช (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7407,7 +7394,7 @@ "CLOSED_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox" -msgstr "" +msgstr "bรณstia de letras" #. ๐Ÿ“ซ (U+1F4EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7416,7 +7403,7 @@ "CLOSED_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox2" -msgstr "" +msgstr "bรณstia de letras2" #. ๐Ÿ“ฌ (U+1F4EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7425,7 +7412,7 @@ "OPEN_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox3" -msgstr "" +msgstr "bรณstia de letras3" #. ๐Ÿ“ญ (U+1F4ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7434,7 +7421,7 @@ "OPEN_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox4" -msgstr "" +msgstr "bรณstia de letras4" #. ๐Ÿ“ฎ (U+1F4EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7443,7 +7430,7 @@ "POSTBOX\n" "LngText.text" msgid "postbox" -msgstr "" +msgstr "bรณstia postala" #. ๐Ÿ“ฏ (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7452,7 +7439,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "cรฒrn de pรฒsta" #. ๐Ÿ“ฐ (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7461,7 +7448,7 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "jornal" #. ๐Ÿ“ฑ (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7470,7 +7457,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "portable" #. ๐Ÿ“ฒ (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7479,7 +7466,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "sonada" #. ๐Ÿ“ณ (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7488,7 +7475,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "vibrador" #. ๐Ÿ“ด (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7497,7 +7484,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "portable atudat" #. ๐Ÿ“ต (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7506,7 +7493,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "portable defendut" #. ๐Ÿ“ถ (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7515,7 +7502,7 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "potรฉncia senhal" #. ๐Ÿ“ท (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7533,7 +7520,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "camรจra vidรจo" #. ๐Ÿ“บ (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7542,7 +7529,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "tv" #. ๐Ÿ“ป (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7551,7 +7538,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "rร dio" #. ๐Ÿ“ผ (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7560,7 +7547,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "vhs" #. ๐Ÿ”… (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7569,7 +7556,7 @@ "LOW_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness" -msgstr "" +msgstr "luminositat" #. ๐Ÿ”† (U+1F506), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7578,7 +7565,7 @@ "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "" +msgstr "luminositat2" #. ๐Ÿ”‡ (U+1F507), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7587,7 +7574,7 @@ "SPEAKER_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "mute" -msgstr "" +msgstr "mut" #. ๐Ÿ”ˆ (U+1F508), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7596,7 +7583,7 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "naut-parlaire2" #. ๐Ÿ”‰ (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7605,7 +7592,7 @@ "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "son" #. ๐Ÿ”Š (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7614,7 +7601,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "son fรฒrt" #. ๐Ÿ”‹ (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7623,7 +7610,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "batariรก" #. ๐Ÿ”Œ (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7632,7 +7619,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "presa electrica" #. ๐Ÿ” (U+1F50D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7641,7 +7628,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "lรณpia" #. ๐Ÿ”Ž (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7650,7 +7637,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "lรณpia2" #. ๐Ÿ” (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7659,7 +7646,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "varrolhat2" #. ๐Ÿ” (U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7668,7 +7655,7 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "varrolhat3" #. ๐Ÿ”‘ (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7677,7 +7664,7 @@ "KEY\n" "LngText.text" msgid "key" -msgstr "" +msgstr "clau" #. ๐Ÿ”’ (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7686,7 +7673,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "varrolhat" #. ๐Ÿ”“ (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7695,7 +7682,7 @@ "OPEN_LOCK\n" "LngText.text" msgid "unlock" -msgstr "" +msgstr "desvarrolhat" #. ๐Ÿ”” (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7704,7 +7691,7 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "senhal" #. ๐Ÿ”• (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7713,7 +7700,7 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "silenci" #. ๐Ÿ”– (U+1F516), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7722,7 +7709,7 @@ "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "" +msgstr "marcapaginas2" #. ๐Ÿ”— (U+1F517), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7731,7 +7718,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "ligam" #. ๐Ÿ”˜ (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7740,7 +7727,7 @@ "RADIO_BUTTON\n" "LngText.text" msgid "radio button" -msgstr "" +msgstr "boton rร dio" #. ๐Ÿ”ž (U+1F51E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7749,7 +7736,7 @@ "NO_ONE_UNDER_EIGHTEEN_SYMBOL\n" "LngText.text" msgid "underage" -msgstr "" +msgstr "menor" #. ๐Ÿ”ค (U+1F524), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7758,7 +7745,7 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abc" #. ๐Ÿ”ฅ (U+1F525), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7767,7 +7754,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "fuรฒc" #. ๐Ÿ”ฆ (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7776,7 +7763,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "lampa tรฒrcha" #. ๐Ÿ”ง (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7785,7 +7772,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "clau anglesa" #. ๐Ÿ”จ (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7794,7 +7781,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "martรจl" #. ๐Ÿ”ฉ (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7803,7 +7790,7 @@ "NUT_AND_BOLT\n" "LngText.text" msgid "nut and bolt" -msgstr "" +msgstr "vis e escron" #. ๐Ÿ”ช (U+1F52A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7812,7 +7799,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "cotรจl" #. ๐Ÿ”ซ (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7821,7 +7808,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "pistolet" #. ๐Ÿ”ฌ (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7830,7 +7817,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "microscรฒpi" #. ๐Ÿ”ญ (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7839,7 +7826,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "telescรฒpi" #. ๐Ÿ”ฎ (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7848,7 +7835,7 @@ "CRYSTAL_BALL\n" "LngText.text" msgid "crystal ball" -msgstr "" +msgstr "bola de cristal" #. ๐Ÿ”ฐ (U+1F530), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7857,7 +7844,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "debutant" #. ๐Ÿ”ฑ (U+1F531), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7866,7 +7853,7 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "trident" #. ๐Ÿ”ฒ (U+1F532), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7875,7 +7862,7 @@ "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "" +msgstr "boton2" #. ๐Ÿ”ณ (U+1F533), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7884,7 +7871,7 @@ "WHITE_SQUARE_BUTTON\n" "LngText.text" msgid "button" -msgstr "" +msgstr "boton" #. ๐Ÿ• (U+1F550), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7893,7 +7880,7 @@ "CLOCK_FACE_ONE_OCLOCK\n" "LngText.text" msgid "1" -msgstr "" +msgstr "1" #. ๐Ÿ•‘ (U+1F551), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7902,7 +7889,7 @@ "CLOCK_FACE_TWO_OCLOCK\n" "LngText.text" msgid "2" -msgstr "" +msgstr "2" #. ๐Ÿ•’ (U+1F552), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7911,7 +7898,7 @@ "CLOCK_FACE_THREE_OCLOCK\n" "LngText.text" msgid "3" -msgstr "" +msgstr "3" #. ๐Ÿ•“ (U+1F553), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7920,7 +7907,7 @@ "CLOCK_FACE_FOUR_OCLOCK\n" "LngText.text" msgid "4" -msgstr "" +msgstr "4" #. ๐Ÿ•” (U+1F554), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7929,7 +7916,7 @@ "CLOCK_FACE_FIVE_OCLOCK\n" "LngText.text" msgid "5" -msgstr "" +msgstr "5" #. ๐Ÿ•• (U+1F555), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7938,7 +7925,7 @@ "CLOCK_FACE_SIX_OCLOCK\n" "LngText.text" msgid "6" -msgstr "" +msgstr "6" #. ๐Ÿ•– (U+1F556), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7947,7 +7934,7 @@ "CLOCK_FACE_SEVEN_OCLOCK\n" "LngText.text" msgid "7" -msgstr "" +msgstr "7" #. ๐Ÿ•— (U+1F557), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7956,7 +7943,7 @@ "CLOCK_FACE_EIGHT_OCLOCK\n" "LngText.text" msgid "8" -msgstr "" +msgstr "8" #. ๐Ÿ•˜ (U+1F558), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7965,7 +7952,7 @@ "CLOCK_FACE_NINE_OCLOCK\n" "LngText.text" msgid "9" -msgstr "" +msgstr "9" #. ๐Ÿ•™ (U+1F559), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7974,7 +7961,7 @@ "CLOCK_FACE_TEN_OCLOCK\n" "LngText.text" msgid "10" -msgstr "" +msgstr "10" #. ๐Ÿ•š (U+1F55A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,7 +7970,7 @@ "CLOCK_FACE_ELEVEN_OCLOCK\n" "LngText.text" msgid "11" -msgstr "" +msgstr "11" #. ๐Ÿ•› (U+1F55B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7992,7 +7979,7 @@ "CLOCK_FACE_TWELVE_OCLOCK\n" "LngText.text" msgid "12" -msgstr "" +msgstr "12" #. ๐Ÿ•œ (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8001,7 +7988,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "" +msgstr "1.30" #. ๐Ÿ• (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8010,7 +7997,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "" +msgstr "2.30" #. ๐Ÿ•ž (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8019,7 +8006,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "" +msgstr "3.30" #. ๐Ÿ•Ÿ (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8028,7 +8015,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "" +msgstr "4.30" #. ๐Ÿ•  (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8037,7 +8024,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "" +msgstr "5.30" #. ๐Ÿ•ก (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8046,7 +8033,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "" +msgstr "6.30" #. ๐Ÿ•ข (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8055,7 +8042,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "" +msgstr "7.30" #. ๐Ÿ•ฃ (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8064,7 +8051,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "" +msgstr "8.30" #. ๐Ÿ•ค (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8073,7 +8060,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "" +msgstr "9.30" #. ๐Ÿ•ฅ (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8082,7 +8069,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "" +msgstr "10.30" #. ๐Ÿ•ฆ (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8091,7 +8078,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "" +msgstr "11.30" #. ๐Ÿ•ง (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8100,7 +8087,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "" +msgstr "12.30" #. ๐Ÿ—ป (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8109,7 +8096,7 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "Fuji" #. ๐Ÿ—ผ (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8118,7 +8105,7 @@ "TOKYO_TOWER\n" "LngText.text" msgid "tower" -msgstr "" +msgstr "torre" #. ๐Ÿ—ฝ (U+1F5FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8127,7 +8114,7 @@ "STATUE_OF_LIBERTY\n" "LngText.text" msgid "liberty" -msgstr "" +msgstr "libertat" #. ๐Ÿ—พ (U+1F5FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8136,7 +8123,7 @@ "SILHOUETTE_OF_JAPAN\n" "LngText.text" msgid "Japan" -msgstr "" +msgstr "japon" #. ๐Ÿ—ฟ (U+1F5FF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8145,7 +8132,7 @@ "MOYAI\n" "LngText.text" msgid "statue" -msgstr "" +msgstr "estatua" #. ๐Ÿ˜€ (U+1F600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8154,7 +8141,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "grimaรงant" #. ๐Ÿ˜ (U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8163,7 +8150,7 @@ "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "" +msgstr "grimaรงa" #. ๐Ÿ˜‚ (U+1F602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8172,7 +8159,7 @@ "FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy" -msgstr "" +msgstr "jรฒia" #. ๐Ÿ˜ƒ (U+1F603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8181,7 +8168,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley" -msgstr "" +msgstr "sorisent" #. ๐Ÿ˜„ (U+1F604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8190,7 +8177,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n" "LngText.text" msgid "smile" -msgstr "" +msgstr "sorire3" #. ๐Ÿ˜… (U+1F605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8199,7 +8186,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "sweat smile" -msgstr "" +msgstr "sorire susor" #. ๐Ÿ˜† (U+1F606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8208,7 +8195,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "laughing" -msgstr "" +msgstr "rire" #. ๐Ÿ˜‡ (U+1F607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8217,7 +8204,7 @@ "SMILING_FACE_WITH_HALO\n" "LngText.text" msgid "innocent" -msgstr "" +msgstr "innocent" #. ๐Ÿ˜ˆ (U+1F608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8226,7 +8213,7 @@ "SMILING_FACE_WITH_HORNS\n" "LngText.text" msgid "smiling imp" -msgstr "" +msgstr "fadet sorisent" #. ๐Ÿ˜‰ (U+1F609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8235,7 +8222,7 @@ "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "cluquejada" #. ๐Ÿ˜Š (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8244,7 +8231,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "rogir" #. ๐Ÿ˜‹ (U+1F60B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8253,7 +8240,7 @@ "FACE_SAVOURING_DELICIOUS_FOOD\n" "LngText.text" msgid "yum" -msgstr "" +msgstr "miam" #. ๐Ÿ˜Œ (U+1F60C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8262,7 +8249,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "solaรงat" #. ๐Ÿ˜ (U+1F60D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8271,7 +8258,7 @@ "SMILING_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes" -msgstr "" +msgstr "cรฒr uรจlhs" #. ๐Ÿ˜Ž (U+1F60E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8280,7 +8267,7 @@ "SMILING_FACE_WITH_SUNGLASSES\n" "LngText.text" msgid "sunglasses" -msgstr "" +msgstr "lunetas solelh" #. ๐Ÿ˜ (U+1F60F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8289,7 +8276,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "trufandiรจr" #. ๐Ÿ˜ (U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8298,7 +8285,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "neutre" #. ๐Ÿ˜‘ (U+1F611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8307,7 +8294,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "sens expression" #. ๐Ÿ˜’ (U+1F612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8316,7 +8303,7 @@ "UNAMUSED_FACE\n" "LngText.text" msgid "unamused" -msgstr "" +msgstr "desplaser" #. ๐Ÿ˜“ (U+1F613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8325,7 +8312,7 @@ "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "" +msgstr "susor" #. ๐Ÿ˜” (U+1F614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8334,7 +8321,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "pensiu" #. ๐Ÿ˜• (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8343,7 +8330,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "confรบs" #. ๐Ÿ˜– (U+1F616), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9009,7 +8996,7 @@ "POLICE_CAR\n" "LngText.text" msgid "police car" -msgstr "" +msgstr "veitura polรญcia" #. ๐Ÿš” (U+1F694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9018,7 +9005,7 @@ "ONCOMING_POLICE_CAR\n" "LngText.text" msgid "police car2" -msgstr "" +msgstr "veitura polรญcia2" #. ๐Ÿš• (U+1F695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9027,7 +9014,7 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "taxi" #. ๐Ÿš– (U+1F696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9036,7 +9023,7 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "taxi2" #. ๐Ÿš— (U+1F697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9045,7 +9032,7 @@ "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "" +msgstr "veitura" #. ๐Ÿš˜ (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9054,7 +9041,7 @@ "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "veitura2" #. ๐Ÿš™ (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9063,7 +9050,7 @@ "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "" +msgstr "veitura3" #. ๐Ÿšš (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9072,7 +9059,7 @@ "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "camion2" #. ๐Ÿš› (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9643,7 +9630,6 @@ #. โป (U+0207B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_MINUS\n" @@ -9662,7 +9648,6 @@ #. โฝ (U+0207D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_LEFT_PARENTHESIS\n" @@ -9672,7 +9657,6 @@ #. โพ (U+0207E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUPERSCRIPT_RIGHT_PARENTHESIS\n" @@ -9781,7 +9765,6 @@ #. โ‚‹ (U+0208B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_MINUS\n" @@ -9800,7 +9783,6 @@ #. โ‚ (U+0208D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_LEFT_PARENTHESIS\n" @@ -9810,7 +9792,6 @@ #. โ‚Ž (U+0208E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUBSCRIPT_RIGHT_PARENTHESIS\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1013,7 +1013,6 @@ msgstr "" #: core_resource.src -#, fuzzy msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-14 22:07+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 15:06+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439590051.000000\n" +"X-POOTLE-MTIME: 1444575964.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,14 +3302,13 @@ msgstr "Suprimir lo ~saut de pagina" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" "Label\n" "value.text" msgid "F~ill" -msgstr "Emplenar" +msgstr "Emp~lenar" #: CalcCommands.xcu msgctxt "" @@ -15149,14 +15148,13 @@ msgstr "Piu~ses e numerotacion..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" "Label\n" "value.text" msgid "E~dit Mode" -msgstr "Mรฒde E~ditar" +msgstr "Mรฒde E~dicion" #: GenericCommands.xcu msgctxt "" @@ -15546,14 +15544,13 @@ msgstr "Color de rรจire plan" #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:CharBackColor\n" "Label\n" "value.text" msgid "Text Background Color" -msgstr "Color de rรจire plan" +msgstr "Color de rรจire plan del tรจxte" #: GenericCommands.xcu msgctxt "" @@ -20227,7 +20224,6 @@ msgstr "Afichar ~tot" #: MathCommands.xcu -#, fuzzy msgctxt "" "MathCommands.xcu\n" "..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n" @@ -20885,14 +20881,13 @@ msgstr "Esbรฒs" #: Sidebar.xcu -#, fuzzy msgctxt "" "Sidebar.xcu\n" "..Sidebar.Content.PanelList.StylesPropertyPanel\n" "Title\n" "value.text" msgid "Styles" -msgstr "~Estils" +msgstr "Estils" #: Sidebar.xcu msgctxt "" @@ -23055,14 +23050,13 @@ msgstr "~Colomnas..." #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertColumnsBefore\n" "Label\n" "value.text" msgid "Insert Columns Left" -msgstr "Inserir de co~lomnas a esquรจrra" +msgstr "Inserir de colomnas a esquรจrra" #: WriterCommands.xcu msgctxt "" @@ -23083,7 +23077,6 @@ msgstr "Inserir de colomnas a drecha" #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:InsertColumnsAfter\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-08-04 06:01+0000\n" +"PO-Revision-Date: 2015-10-11 15:04+0000\n" "Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438668061.000000\n" +"X-POOTLE-MTIME: 1444575899.000000\n" #: Addons.xcu msgctxt "" @@ -89,14 +89,13 @@ msgstr "" #: Addons.xcu -#, fuzzy msgctxt "" "Addons.xcu\n" ".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n" "Title\n" "value.text" msgid "Logo command line (press Enter for command execution or F1 for help)" -msgstr "Linha de comanda Logo (apujatz sus Entrรฉe per executar la comanda o sus F1 per l'ajuda)" +msgstr "Linha de comanda Lรฒgo (quichatz sus Entrada per executar la comanda o sus F1 per l'ajuda)" #: Addons.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sc/source/ui/src.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-14 22:21+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 17:11+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439590863.000000\n" +"X-POOTLE-MTIME: 1444583500.000000\n" #: condformatdlg.src msgctxt "" @@ -737,7 +737,6 @@ msgstr "3 simbรฒls 2" #: condformatdlg.src -#, fuzzy msgctxt "" "condformatdlg.src\n" "RID_COND_ENTRY.LB_ICONSET_TYPE\n" @@ -765,7 +764,6 @@ msgstr "" #: condformatdlg.src -#, fuzzy msgctxt "" "condformatdlg.src\n" "RID_COND_ENTRY.LB_ICONSET_TYPE\n" @@ -5995,14 +5993,13 @@ msgstr "Inserir un co~mentari" #: popup.src -#, fuzzy msgctxt "" "popup.src\n" "RID_POPUP_CELLS\n" "SID_EDIT_POSTIT\n" "menuitem.text" msgid "Edit Co~mment" -msgstr "Editar lo comentari" +msgstr "Editar lo co~mentari" #: popup.src msgctxt "" @@ -8234,14 +8231,13 @@ msgstr "Determina la data correnta de l'ordenador." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" "1\n" "string.text" msgid "Returns the day of the week for the date value as an integer." -msgstr "Renvia lo jorn de la setmana (comprรฉs entre 1 e 7) que correspond a l'argument numรจro_seria." +msgstr "Renvia lo jorn de la setmana per la valor de data jos la forma d'un nombre entiรจr." #: scfuncs.src msgctxt "" @@ -11979,14 +11975,13 @@ msgstr "Numรจro_seria" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ARC_COT_HYP\n" "3\n" "string.text" msgid "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned." -msgstr "Una valor superiora o egala a 1 per la quala lo cosinus iperbolic invรจrse deu รจsser renviat." +msgstr "Una valor superiora a -1 o soperiora a 1 que l'arc cotangenta iperbolic deu รจsser calculat." #: scfuncs.src msgctxt "" @@ -12007,14 +12002,13 @@ msgstr "Numรจro_seria" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ARC_TAN_HYP\n" "3\n" "string.text" msgid "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned." -msgstr "Una valor entre -1 e 1 que l'arc cosinus ne deu รจsser calculat." +msgstr "Una valor entre -1 e 1 que la tangenta iperbolica invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -13430,27 +13424,24 @@ msgstr "" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" "2\n" "string.text" msgid "Number" -msgstr "Numรจro_seria" +msgstr "Nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" "3\n" "string.text" msgid "The number to be rounded down." -msgstr "La valor d'arredondir en tendent cap a zรจro." +msgstr "La valor d'arredondir per valor inferiora." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13460,17 +13451,15 @@ msgstr "Precision" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" "5\n" "string.text" msgid "The number to whose multiple the value is to be rounded down." -msgstr "Lo multiple al qual cal arredondir lo nombre." +msgstr "Lo nombre al multiple del qual la valor deu รจsser arredondida per valor inferiora." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13498,27 +13487,24 @@ msgstr "" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" "2\n" "string.text" msgid "Number" -msgstr "Numรจro_seria" +msgstr "Nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" "3\n" "string.text" msgid "The number to be rounded down." -msgstr "La valor d'arredondir en tendent cap a zรจro." +msgstr "La valor d'arredondir per valor inferiora." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n" @@ -14005,14 +13991,13 @@ msgstr "Tipe_de_drecha" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n" "7\n" "string.text" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "Calcula las drechas pel punt zรจro se Tipe = 0 ; siquenon drechas decaladas." +msgstr "Calcula las drechas per l'origina se Tipe = 0 ; siquenon drechas decaladas." #: scfuncs.src msgctxt "" @@ -14321,14 +14306,13 @@ msgstr "Valor " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_COUNT_2\n" "3\n" "string.text" msgid "Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted." -msgstr "Valor 1, Valor 2, ... son de 1 a 30 arguments que representan los encaissaments o los descaissaments." +msgstr "Valor 1, Valor 2, ... son de 1 a 30 arguments que correspondon a las valors de comptar." #: scfuncs.src msgctxt "" @@ -14403,24 +14387,22 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MIN\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined." -msgstr "Nombre 1, nombre 2 ... son de 1 a 30 arguments demest los quals lo nombre lo mai grand deu รจsser determinat." +msgstr "Nombre 1, nombre 2 ... son de 1 a 30 arguments demest los quals lo nombre lo mai pichon ne deu รจsser determinat." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MIN_A\n" "1\n" "string.text" msgid "Returns the smallest value in a list of arguments. Text is evaluated as zero." -msgstr "Renvia la mai granda valor d'una lista d'arguments. La valor 0 es atribuida al tรจxte." +msgstr "Renvia la mai pichona valor d'una lista d'arguments. La valor 0 es atribuida al tรจxte." #: scfuncs.src msgctxt "" @@ -14432,14 +14414,13 @@ msgstr "Valor " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MIN_A\n" "3\n" "string.text" msgid "Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined." -msgstr "Valor 1, valor 2, ... representan de 1 a 30 arguments que la valor maximala ne deu รจsser determinada." +msgstr "Valor 1, valor 2, ... representan d'1 a 30 arguments que la valor minimala ne deu รจsser determinada." #: scfuncs.src msgctxt "" @@ -14460,14 +14441,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan l'escandalhatge d'una populacion." #: scfuncs.src msgctxt "" @@ -14488,14 +14468,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan l'escandalhatge d'una populacion." #: scfuncs.src msgctxt "" @@ -14543,14 +14522,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que correspondon a una populacion." #: scfuncs.src msgctxt "" @@ -14571,14 +14549,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan una populacion." #: scfuncs.src msgctxt "" @@ -14599,14 +14576,13 @@ msgstr "Valor " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_VAR_P_A\n" "3\n" "string.text" msgid "Value 1; value 2;... are 1 to 30 arguments representing a population." -msgstr "Valor 1, Valor 2, ... son de 1 a 30 arguments que representan los encaissaments o los descaissaments." +msgstr "Valor 1, Valor 2, ... representan d'1 a 30 arguments que correspodon a una populacion." #: scfuncs.src msgctxt "" @@ -14627,14 +14603,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan l'escandalhatge d'una populacion." #: scfuncs.src msgctxt "" @@ -14655,14 +14630,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_S\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan l'escandalhatge d'una populacion." #: scfuncs.src msgctxt "" @@ -14710,14 +14684,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan una populacion." #: scfuncs.src msgctxt "" @@ -14738,14 +14711,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ST_DEV_P_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan una populacion." #: scfuncs.src msgctxt "" @@ -14847,14 +14819,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_DEV_SQ\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan un escandalhatge." #: scfuncs.src msgctxt "" @@ -14875,14 +14846,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_AVE_DEV\n" "3\n" "string.text" msgid "Number 1, number 2;...are 1 to 30 numerical arguments representing a sample." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan un escandalhatge." #: scfuncs.src msgctxt "" @@ -14903,14 +14873,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_SKEW\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge de la distribucion." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan un escandalhatge de la distribucion." #: scfuncs.src msgctxt "" @@ -15066,14 +15035,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MS\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 30 arguments numerics que representan un escandalhatge." #: scfuncs.src msgctxt "" @@ -15094,14 +15062,13 @@ msgstr "nombre " #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n" "3\n" "string.text" msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample." -msgstr "Nombre 1, nombre 2, ... son de 1 a 30 arguments numerics que representan un escandalhatge." +msgstr "Nombre 1, nombre 2, ... son d'1 a 254 arguments numerics que representan un escandalhatge." #: scfuncs.src msgctxt "" @@ -16337,7 +16304,6 @@ msgstr "C" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BINOM_DIST_MS\n" @@ -16923,14 +16889,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala volรจtz calcular la distribucion normala invรจrsa." #: scfuncs.src msgctxt "" @@ -16987,14 +16952,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala volรจtz calcular la distribucion normala invรจrsa." #: scfuncs.src msgctxt "" @@ -17123,14 +17087,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala la distribucion normala estandarda invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -17151,14 +17114,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_S_NORM_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala la distribucion normala estandarda invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -17341,14 +17303,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala la distribucion lognormala invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -17405,14 +17366,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOG_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala la distribucion lognormala invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -17757,14 +17717,13 @@ msgstr "Numรจro_seria" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala volรจtz calcular la distribucion Gamma." #: scfuncs.src msgctxt "" @@ -17821,14 +17780,13 @@ msgstr "Numรจro_seria" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_GAMMA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala volรจtz calcular la distribucion Gamma." #: scfuncs.src msgctxt "" @@ -18083,14 +18041,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala la distribucion bรจta invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -18300,14 +18257,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BETA_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala la distribucion bรจta invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -18958,14 +18914,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "La valor per la quala volรจtz calcular la distribucion normala." +msgstr "La valor de probabilitat per la quala la distribucion T invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -19004,14 +18959,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "La valor per la quala volรจtz calcular la distribucion normala." +msgstr "La valor de probabilitat per la quala la distribucion T invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -19050,14 +19004,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_T_INV_2T\n" "3\n" "string.text" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "La valor per la quala volรจtz calcular la distribucion normala." +msgstr "La valor de probabilitat per la quala la distribucion T invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -19303,14 +19256,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "La valor per la quala volรจtz calcular la distribucion normala." +msgstr "La valor de probabilitat per la quala la distribucion F invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -19367,14 +19319,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_LT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "La valor per la quala volรจtz calcular la distribucion normala." +msgstr "La valor de probabilitat per la quala la distribucion F invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -19431,14 +19382,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_F_INV_RT\n" "3\n" "string.text" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "La valor per la quala volรจtz calcular la distribucion normala." +msgstr "La valor de probabilitat per la quala la distribucion F invรจrsa deu รจsser calculada." #: scfuncs.src msgctxt "" @@ -19711,14 +19661,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala volรจtz calcular la lei Khi-dos invรจrsa." #: scfuncs.src msgctxt "" @@ -19757,14 +19706,13 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHI_INV_MS\n" "3\n" "string.text" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "La valor a la quala la foncion es d'evaluar" +msgstr "La valor de probabilitat per la quala volรจtz calcular la lei Khi-dos invรจrsa." #: scfuncs.src msgctxt "" @@ -22478,7 +22426,6 @@ msgstr "nombre" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CHAR\n" @@ -22596,7 +22543,6 @@ msgstr "" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_FIND\n" @@ -23092,14 +23038,13 @@ msgstr "" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFT\n" "1\n" "string.text" msgid "Returns the first character or characters of a text." -msgstr "Renvia lo o los darriรจrs caractรจrs d'un tรจxte, amb DBCS" +msgstr "Renvia lo o los primiรจrs caractรจrs d'un tรจxte." #: scfuncs.src msgctxt "" @@ -23138,14 +23083,13 @@ msgstr "Lo nombre de caractรจrs que volรจtz extraire." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_RIGHT\n" "1\n" "string.text" msgid "Returns the last character or characters of a text." -msgstr "Renvia lo o los darriรจrs caractรจrs d'un tรจxte, amb DBCS" +msgstr "Renvia lo o los darriรจrs caractรจrs d'un tรจxte." #: scfuncs.src msgctxt "" @@ -24157,14 +24101,13 @@ msgstr "Lo nombre de caractรจrs que volรจtz extraire." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LEFTB\n" "1\n" "string.text" msgid "Returns the first character or characters of a text,with DBCS" -msgstr "Renvia lo o los darriรจrs caractรจrs d'un tรจxte, amb DBCS" +msgstr "Renvia lo o los primiรจrs caractรจrs d'un tรจxte, amb DBCS" #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sc/uiconfig/scalc/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-14 22:26+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 17:12+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: none\n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439591173.000000\n" +"X-POOTLE-MTIME: 1444583526.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -7808,14 +7808,13 @@ msgstr "Seleccionatz l'angle de rotacion." #: sidebarcellappearance.ui -#, fuzzy msgctxt "" "sidebarcellappearance.ui\n" "cellbackgroundlabel\n" "label\n" "string.text" msgid "_Background:" -msgstr "Rรจire plan" +msgstr "_Rรจire plan :" #: sidebarcellappearance.ui msgctxt "" @@ -8070,7 +8069,6 @@ msgstr "" #: sidebarnumberformat.ui -#, fuzzy msgctxt "" "sidebarnumberformat.ui\n" "negativenumbersred\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sd/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sd/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sd/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sd/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-08 10:48+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 17:12+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1433760503.000000\n" +"X-POOTLE-MTIME: 1444583562.000000\n" #: menuids3_tmpl.src msgctxt "" @@ -161,14 +161,13 @@ msgstr "~Reparticion..." #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_INSERT_GRAPHIC\n" "SID_INSERT_GRAPHIC\n" "menuitem.text" msgid "Insert I~mage..." -msgstr "Inserir un imatge" +msgstr "Inserir un i~matge..." #: menuids_tmpl.src msgctxt "" @@ -855,14 +854,13 @@ msgstr "" #: menuids_tmpl.src -#, fuzzy msgctxt "" "menuids_tmpl.src\n" "MN_CROP\n" "SID_OBJECT_CROP\n" "menuitem.text" msgid "Crop I~mage" -msgstr "Rosegar l'imatge" +msgstr "Rosegar l'~imatge" #: menuids_tmpl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sd/uiconfig/simpress/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sd/uiconfig/simpress/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-30 05:15+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 17:12+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: none\n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432962913.000000\n" +"X-POOTLE-MTIME: 1444583577.000000\n" #: assistentdialog.ui msgctxt "" @@ -3311,7 +3311,6 @@ msgstr "" #: slidetransitionspanel.ui -#, fuzzy msgctxt "" "slidetransitionspanel.ui\n" "auto_preview\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/starmath/uiconfig/smath/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/starmath/uiconfig/smath/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/starmath/uiconfig/smath/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-05-09 11:07+0000\n" +"PO-Revision-Date: 2015-10-11 17:13+0000\n" "Last-Translator: Cรฉdric Valmary \n" "Language-Team: none\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431169652.000000\n" +"X-POOTLE-MTIME: 1444583588.000000\n" #: alignmentdialog.ui msgctxt "" @@ -125,7 +125,6 @@ msgstr "Desconegut" #: dockingelements.ui -#, fuzzy msgctxt "" "dockingelements.ui\n" "DockingElements\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/svtools/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/svtools/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/svtools/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/svtools/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-26 05:20+0000\n" +"PO-Revision-Date: 2015-10-11 17:13+0000\n" "Last-Translator: Cรฉdric Valmary \n" "Language-Team: none\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432617655.000000\n" +"X-POOTLE-MTIME: 1444583633.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -908,14 +908,13 @@ msgstr "Per que la bibliografia foncione corrรจctament, %PRODUCTNAME deu รจsser reaviat." #: restartdialog.ui -#, fuzzy msgctxt "" "restartdialog.ui\n" "reason_mailmerge_install\n" "label\n" "string.text" msgid "For the mail merge to work properly, %PRODUCTNAME must be restarted." -msgstr "Per que la bibliografia foncione corrรจctament, %PRODUCTNAME deu รจsser reaviat." +msgstr "%PRODUCTNAME deu รจsser reaviat per que lo publipostatge foncionne corrรจctament." #: restartdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sw/source/ui/app.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sw/source/ui/app.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sw/source/ui/app.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sw/source/ui/app.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-06-08 10:52+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-11 17:14+0000\n" +"Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1433760769.000000\n" +"X-POOTLE-MTIME: 1444583646.000000\n" #: app.src msgctxt "" @@ -1578,7 +1578,6 @@ msgstr "" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY\n" @@ -1606,7 +1605,6 @@ msgstr "" #: mn.src -#, fuzzy msgctxt "" "mn.src\n" "MN_TABLE.DUMMY\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/sw/uiconfig/swriter/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-25 16:02+0000\n" +"PO-Revision-Date: 2015-10-11 17:14+0000\n" "Last-Translator: Cรฉdric Valmary \n" "Language-Team: none\n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432569779.000000\n" +"X-POOTLE-MTIME: 1444583675.000000\n" #: abstractdialog.ui msgctxt "" @@ -2969,7 +2969,6 @@ msgstr "Am_b senhal" #: editsectiondialog.ui -#, fuzzy msgctxt "" "editsectiondialog.ui\n" "password\n" @@ -5467,7 +5466,6 @@ msgstr "" #: frmaddpage.ui -#, fuzzy msgctxt "" "frmaddpage.ui\n" "liststore1\n" @@ -10596,7 +10594,6 @@ msgstr "_Colomna :" #: opttablepage.ui -#, fuzzy msgctxt "" "opttablepage.ui\n" "label14\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/uui/source.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/uui/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/uui/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/uui/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-04-16 17:19+0000\n" +"PO-Revision-Date: 2015-10-11 17:14+0000\n" "Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" @@ -14,10 +14,9 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1429204770.000000\n" +"X-POOTLE-MTIME: 1444583698.000000\n" #: alreadyopen.src -#, fuzzy msgctxt "" "alreadyopen.src\n" "STR_ALREADYOPEN_TITLE\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/oc/uui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/uui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/oc/uui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/oc/uui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-09 11:15+0000\n" +"PO-Revision-Date: 2015-10-11 17:15+0000\n" "Last-Translator: Cรฉdric Valmary \n" "Language-Team: LANGUAGE \n" "Language: oc\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431170103.000000\n" +"X-POOTLE-MTIME: 1444583712.000000\n" #: authfallback.ui msgctxt "" @@ -178,14 +178,13 @@ msgstr "Lo document conten de macros de document signadas per :" #: macrowarnmedium.ui -#, fuzzy msgctxt "" "macrowarnmedium.ui\n" "descr1aLabel\n" "label\n" "string.text" msgid "The document contains document macros." -msgstr "Lo document conten de macros de document signadas per :" +msgstr "Lo document conten de macros de document." #: macrowarnmedium.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/om/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/om/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/om/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/om/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/om/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/om/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/om/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/om/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/or/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/or/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/or/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/or/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/or/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/or/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/or/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/or/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/or/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/or/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/or/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/or/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/pa-IN/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/pa-IN/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/pa-IN/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/pa-IN/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/pa-IN/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/pa-IN/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/pa-IN/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/pa-IN/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/pl/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/pl/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/pl/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/pl/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/pl/svx/source/svdraw.po libreoffice-l10n-5.0.3~rc2/translations/source/pl/svx/source/svdraw.po --- libreoffice-l10n-5.0.2~rc2/translations/source/pl/svx/source/svdraw.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/pl/svx/source/svdraw.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-07-25 17:08+0000\n" +"PO-Revision-Date: 2015-10-08 15:06+0000\n" "Last-Translator: Konrad Kmieciak \n" "Language-Team: LANGUAGE \n" "Language: pl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1437844113.000000\n" +"X-POOTLE-MTIME: 1444316780.000000\n" #: svdstr.src msgctxt "" @@ -3894,7 +3894,7 @@ "SIP_SA_EDGENODE2VERTDIST\n" "string.text" msgid "Vert. spacing object 2" -msgstr "Odstฤ™p poziomy do obiektu 2" +msgstr "Pionowy odstฤ™p do obiektu 2" #: svdstr.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/pt/uui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/pt/uui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/pt/uui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/pt/uui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-26 13:46+0000\n" +"PO-Revision-Date: 2015-10-18 00: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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435326360.000000\n" +"X-POOTLE-MTIME: 1445126710.000000\n" #: authfallback.ui msgctxt "" @@ -175,7 +175,7 @@ "label\n" "string.text" msgid "The document contains document macros signed by:" -msgstr "O documento contรฉm macros de documento assinadas por:" +msgstr "O documento contรฉm macros assinadas por:" #: macrowarnmedium.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ro/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ro/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ro/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ro/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ro/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ro/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ro/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ro/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/rw/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/rw/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/rw/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/rw/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sa-IN/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/sa-IN/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sa-IN/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sa-IN/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sa-IN/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/sa-IN/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sa-IN/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sa-IN/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sat/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/sat/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sat/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sat/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sat/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/sat/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sat/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sat/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sd/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/sd/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sd/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sd/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sd/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/sd/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sd/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sd/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sd/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/sd/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sd/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sd/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/si/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/si/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/si/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/si/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/si/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/si/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/si/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/si/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/si/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/si/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/si/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/si/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sid/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/sid/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sid/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sid/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/basctl/source/basicide.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/basctl/source/basicide.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/basctl/source/basicide.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/basctl/source/basicide.po 2015-10-24 15:21:48.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-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-28 10:17+0000\n" -"Last-Translator: Indrit \n" +"PO-Revision-Date: 2015-10-15 17:44+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: sq\n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1432808248.000000\n" +"X-POOTLE-MTIME: 1444931099.000000\n" #: basicprint.src msgctxt "" @@ -24,7 +24,7 @@ "Print range\n" "itemlist.text" msgid "Print range" -msgstr "Intervali i shtypjes" +msgstr "Intervali i shtypjes " #: basicprint.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/basic/source/classes.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/basic/source/classes.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/basic/source/classes.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/basic/source/classes.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-07-04 10:36+0000\n" -"Last-Translator: Dashamir Hoxha \n" +"PO-Revision-Date: 2015-10-15 17:48+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LibreOffice Albanian Translators\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1436006206.000000\n" +"X-POOTLE-MTIME: 1444931331.000000\n" #: sb.src msgctxt "" @@ -51,7 +51,7 @@ "SbERR_BAD_ARGUMENT & ERRCODE_RES_MASK\n" "string.text" msgid "Invalid procedure call." -msgstr "Thirrje procedure e pavlefshme." +msgstr "Thirrje e pavlefshme proรงedure." #: sb.src msgctxt "" @@ -168,7 +168,7 @@ "SbERR_PROC_UNDEFINED & ERRCODE_RES_MASK\n" "string.text" msgid "Sub-procedure or function procedure not defined." -msgstr "Nรซn-procedura ose procedura e funksionit nuk รซshtรซ pรซrcaktuar." +msgstr "Nรซn-proรงedura ose proรงedura e funksionit nuk รซshtรซ pรซrcaktuar." #: sb.src msgctxt "" @@ -258,7 +258,7 @@ "SbERR_BAD_RECORD_LENGTH & ERRCODE_RES_MASK\n" "string.text" msgid "Incorrect record length." -msgstr "" +msgstr "Gjatรซsia e tรซ dhรซnรซs รซshtรซ e pasaktรซ." #: sb.src msgctxt "" @@ -348,7 +348,7 @@ "SbERR_ACCESS_ERROR & ERRCODE_RES_MASK\n" "string.text" msgid "Path/File access error." -msgstr "" +msgstr "Gabim nรซ qasje tรซ shtegut/dosjes." #: sb.src msgctxt "" @@ -375,7 +375,7 @@ "SbERR_BAD_PATTERN & ERRCODE_RES_MASK\n" "string.text" msgid "Invalid string pattern." -msgstr "" +msgstr "Modeli i lidhรซses รซshtรซ i pavlefshรซm." #: sb.src msgctxt "" @@ -555,7 +555,7 @@ "SbERR_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n" "string.text" msgid "Link mode cannot be set due to invalid link topic." -msgstr "" +msgstr "Mรซnyra e linkut nuk mund tรซ bรซhet pรซr shkak tรซ temรซs sรซ linkut." #: sb.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-31 12:27+0000\n" -"Last-Translator: Indrit \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-08 17:08+0000\n" +"Last-Translator: DenisaRucaj \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1422707223.000000\n" +"X-POOTLE-MTIME: 1444324133.000000\n" #: Drivers.xcu msgctxt "" @@ -41,4 +41,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Groupwise" -msgstr "" +msgstr "Groupwise" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-12-30 12:48+0000\n" -"Last-Translator: Indrit \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-08 17:13+0000\n" +"Last-Translator: DenisaRucaj \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1419943709.000000\n" +"X-POOTLE-MTIME: 1444324437.000000\n" #: Drivers.xcu msgctxt "" @@ -23,7 +23,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Firebird Embedded" -msgstr "" +msgstr "Skedar Firebird" #: Drivers.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po 2015-10-24 15:21:48.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-10-30 14:11+0000\n" -"Last-Translator: AleksanderKoko \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-08 17:16+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1383142302.0\n" +"X-POOTLE-MTIME: 1444324596.000000\n" #: Drivers.xcu msgctxt "" @@ -23,4 +23,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "HSQLDB Embedded" -msgstr "" +msgstr "HSQLDB Ndรซrfutje" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/connectivity/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/connectivity/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-03 17:43+0000\n" -"Last-Translator: Indrit Bashkimi \n" +"PO-Revision-Date: 2015-10-08 17:31+0000\n" +"Last-Translator: DenisaRucaj \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1438623785.000000\n" +"X-POOTLE-MTIME: 1444325496.000000\n" #: conn_error_message.src msgctxt "" @@ -46,7 +46,7 @@ "256 + 2*301 + 0\n" "string.text" msgid "$1$ is no SQL conform identifier." -msgstr "" +msgstr "$1$ nuk รซshtรซ nje identifikues i pรซrshtatshรซm SQL" #: conn_error_message.src msgctxt "" @@ -224,7 +224,7 @@ "STR_STMT_TYPE_NOT_SUPPORTED\n" "string.text" msgid "This statement type not supported by this database driver." -msgstr "" +msgstr "Kjo lloj deklaratรซ nuk mbรซshtetet nga ky driver i bazรซs sรซ tรซ dhรซnave." #: conn_shared_res.src msgctxt "" @@ -376,7 +376,7 @@ "STR_NO_INPUTSTREAM\n" "string.text" msgid "The input stream was not set." -msgstr "" +msgstr "Burimi i tรซ dhรซnave hyrรซse nuk ishte vendosur" #: conn_shared_res.src msgctxt "" @@ -392,7 +392,7 @@ "STR_INVALID_BOOKMARK\n" "string.text" msgid "Invalid bookmark value" -msgstr "" +msgstr "Vlera e pavlefshme e faqerojtรซsit." #: conn_shared_res.src msgctxt "" @@ -424,7 +424,7 @@ "STR_ERRORMSG_SEQUENCE\n" "string.text" msgid "Function sequence error." -msgstr "" +msgstr "Sekuencรซ e gabuar funksioni" #: conn_shared_res.src msgctxt "" @@ -432,7 +432,7 @@ "STR_INVALID_INDEX\n" "string.text" msgid "Invalid descriptor index." -msgstr "" +msgstr "Indeksi i objektit รซshtรซ i pavlefshรซm" #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/customize.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/customize.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/customize.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/customize.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-08-17 15:51+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-02 19:47+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439826718.000000\n" +"X-POOTLE-MTIME: 1443815240.000000\n" #: acccfg.src msgctxt "" @@ -435,7 +435,7 @@ "RID_SVXSTR_EVENT_MODIFYCHANGED\n" "string.text" msgid "'Modified' status was changed" -msgstr "" +msgstr "Statusi \"Ndryshuar\" รซshtรซ ndรซrruar." #: macropg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/dialogs.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/dialogs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/dialogs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-17 21:22+0000\n" -"Last-Translator: Indrit Bashkimi \n" +"PO-Revision-Date: 2015-10-04 13:40+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434576177.000000\n" +"X-POOTLE-MTIME: 1443966027.000000\n" #: cuires.src msgctxt "" @@ -111,7 +111,7 @@ "RID_SVXSTR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "Shรซnim inxhinierik" #: cuires.src msgctxt "" @@ -239,7 +239,7 @@ "RID_STR_SEARCH_NORECORD\n" "string.text" msgid "No records corresponding to your data found." -msgstr "" +msgstr "Asnjรซ e dhรซnรซ nuk korespondon me tรซ dhรซnat e gjetura." #: fmsearch.src msgctxt "" @@ -271,7 +271,7 @@ "RID_STR_SEARCH_COUNTING\n" "string.text" msgid "counting records" -msgstr "" +msgstr "duke numรซruar tรซ dhรซnat" #: gallery.src msgctxt "" @@ -375,7 +375,7 @@ "RID_SVXSTR_HYPERDLG_HLINETTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to a Web page or FTP server connection." -msgstr "" +msgstr "Kรซtu mund tรซ krijoni njรซ ndรซrlidhje nรซ njรซ faqe Web-i ose njรซ lidhje serveri FTP." #: hyperdlg.src msgctxt "" @@ -383,7 +383,7 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP\n" "string.text" msgid "Mail" -msgstr "" +msgstr "Posta" #: hyperdlg.src msgctxt "" @@ -391,7 +391,7 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to an e-mail address." -msgstr "" +msgstr "Kรซtu ju krijoni njรซ ndรซrlidhje nรซ njรซ adresรซ e-maili." #: hyperdlg.src msgctxt "" @@ -407,7 +407,7 @@ "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to an existing document or a target within a document." -msgstr "" +msgstr "Kรซtu ju mund tรซ krijoni njรซ ndรซrlidhje nรซ njรซ dokument ekzistues ose njรซ objektiv brenda dokumentit." #: hyperdlg.src msgctxt "" @@ -423,7 +423,7 @@ "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP\n" "string.text" msgid "This is where you create a new document to which the new link points." -msgstr "" +msgstr "Kรซtu ju krijoni njรซ dokument tรซ ri nรซ tรซ cilin linku i ri nรซnvizohet." #: hyperdlg.src msgctxt "" @@ -487,7 +487,7 @@ "RID_SVXSTR_ADD_IMAGE\n" "string.text" msgid "Add Image" -msgstr "" +msgstr "Shto njรซ figurรซ" #: passwdomdlg.src msgctxt "" @@ -527,7 +527,7 @@ "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2\n" "string.text" msgid "Set the password by entering the same password in both boxes." -msgstr "" +msgstr "Vendos fjalรซkalimin duke shkruar tรซ njรซjtin fjalรซkalim nรซ tรซ dyja kutitรซ." #: scriptdlg.src msgctxt "" @@ -639,7 +639,7 @@ "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED\n" "string.text" msgid "The scripting language %LANGUAGENAME is not supported." -msgstr "" +msgstr "Gjuha e shkruar %LANGUAGENAME nuk aprovohet. " #: scriptdlg.src msgctxt "" @@ -679,7 +679,7 @@ "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING\n" "string.text" msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME." -msgstr "" +msgstr "Ndodhi njรซ gabim nรซ tรซ shkruar nรซ sistem gjatรซ ekzekutimit tรซ skriptit %LANGUAGENAME %SCRIPTNAME." #: scriptdlg.src msgctxt "" @@ -687,7 +687,7 @@ "RID_SVXSTR_FRAMEWORK_ERROR_AT_LINE\n" "string.text" msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER." -msgstr "" +msgstr "Ndodhi njรซ gabim gjatรซ ekzekutimit tรซ skriptit %LANGUAGENAME %SCRIPTNAME nรซ rreshtin: %LINENUMBER." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/options.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/options.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/options.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/options.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-06-17 22:13+0000\n" -"Last-Translator: Indrit Bashkimi \n" +"PO-Revision-Date: 2015-10-15 17:50+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434579191.000000\n" +"X-POOTLE-MTIME: 1444931420.000000\n" #: connpooloptions.src msgctxt "" @@ -22,7 +22,7 @@ "RID_SVXSTR_DRIVER_NAME\n" "string.text" msgid "Driver name" -msgstr "" +msgstr "Emri i drejtuesit" #: connpooloptions.src msgctxt "" @@ -30,7 +30,7 @@ "RID_SVXSTR_POOLED_FLAG\n" "string.text" msgid "Pool" -msgstr "" +msgstr "Bashkรซsi" #: connpooloptions.src msgctxt "" @@ -126,7 +126,7 @@ "RID_SVXSTR_DIAGRAM_ROW\n" "string.text" msgid "Data Series $(ROW)" -msgstr "" +msgstr "Vargu i tรซ dhรซnave $(Rreshti)" #: optchart.src msgctxt "" @@ -134,7 +134,7 @@ "RID_OPTSTR_COLOR_CHART_DELETE\n" "string.text" msgid "Chart Color Deletion" -msgstr "" +msgstr "Konfirmo fshirjen e ngjyrรซs sรซ grafikut" #: optcolor.src msgctxt "" @@ -202,7 +202,7 @@ "RID_SVXSTR_HEADER1\n" "string.text" msgid "[L]" -msgstr "" +msgstr "[L]" #: optfltr.src msgctxt "" @@ -210,7 +210,7 @@ "RID_SVXSTR_HEADER2\n" "string.text" msgid "[S]" -msgstr "" +msgstr "[S]" #: optfltr.src msgctxt "" @@ -282,7 +282,7 @@ msgid "" "The folder you selected does not contain a Java runtime environment.\n" "Please select a different folder." -msgstr "" +msgstr "Dosja qรซ ju zgjodhรซt nuk pรซrmban njรซ mjedis ekzekutimi nรซ Java. /n Ju lutemi zgjidhni njรซ dosje tjetรซr." #: optjava.src msgctxt "" @@ -292,7 +292,7 @@ msgid "" "The Java runtime environment you selected is not the required version.\n" "Please select a different folder." -msgstr "" +msgstr "Mjedisi i ekzekutimit nรซ Java, qรซ ju zgjodhรซt nuk รซshtรซ versioni i kรซrkuar. /n Ju lutemi zgjidhni njรซ dosje tjetรซr." #: optjava.src msgctxt "" @@ -360,7 +360,7 @@ "RID_SVXSTR_SPELL_SPECIAL\n" "string.text" msgid "Check special regions" -msgstr "" +msgstr "Kontrollo rajonet e veรงanta" #: optlingu.src msgctxt "" @@ -392,7 +392,7 @@ "RID_SVXSTR_NUM_PRE_BREAK\n" "string.text" msgid "Characters before line break: " -msgstr "" +msgstr "Karakteret para linjรซs ndarรซse:" #: optlingu.src msgctxt "" @@ -400,7 +400,7 @@ "RID_SVXSTR_NUM_POST_BREAK\n" "string.text" msgid "Characters after line break: " -msgstr "" +msgstr "Karakteret pas linjรซs ndarรซse:" #: optlingu.src msgctxt "" @@ -416,7 +416,7 @@ "RID_SVXSTR_HYPH_SPECIAL\n" "string.text" msgid "Hyphenate special regions" -msgstr "" +msgstr "Hifeno rajonet e veรงanta" #: optlingu.src msgctxt "" @@ -432,7 +432,7 @@ "RID_SVXSTR_LINGU_DICS_EDIT_DIC\n" "string.text" msgid "Edit User-defined dictionaries" -msgstr "" +msgstr "Ndrysho fjalorรซt e pรซrdoruesve tรซ pรซrcaktuar" #: optlingu.src msgctxt "" @@ -584,7 +584,7 @@ "RID_SVXSTR_KEY_ADDINS_PATH\n" "string.text" msgid "Add-ins" -msgstr "" +msgstr "Shtesat" #: optpath.src msgctxt "" @@ -616,7 +616,7 @@ "RID_SVXSTR_KEY_LINGUISTIC_DIR\n" "string.text" msgid "Writing aids" -msgstr "" +msgstr "Duke shkruar ndihmรซn" #: personalization.src msgctxt "" @@ -795,7 +795,7 @@ "Personalization\n" "itemlist.text" msgid "Personalization" -msgstr "" +msgstr "Personalizim" #: treeopt.src msgctxt "" @@ -813,7 +813,7 @@ "Accessibility\n" "itemlist.text" msgid "Accessibility" -msgstr "" +msgstr "Aksesueshmรซria" #: treeopt.src msgctxt "" @@ -831,7 +831,7 @@ "Basic IDE Options\n" "itemlist.text" msgid "Basic IDE Options" -msgstr "" +msgstr "Mundรซsitรซ e ideve bazรซ" #: treeopt.src msgctxt "" @@ -876,7 +876,7 @@ "Writing Aids\n" "itemlist.text" msgid "Writing Aids" -msgstr "" +msgstr "Duke shkruar ndihmรซn" #: treeopt.src msgctxt "" @@ -903,7 +903,7 @@ "Complex Text Layout\n" "itemlist.text" msgid "Complex Text Layout" -msgstr "" +msgstr "Planimetri e Komplikuar e Tekstit" #: treeopt.src msgctxt "" @@ -966,7 +966,7 @@ "Formatting Aids\n" "itemlist.text" msgid "Formatting Aids" -msgstr "" +msgstr "Duke formatuar ndihmรซn" #: treeopt.src msgctxt "" @@ -1056,7 +1056,7 @@ "AutoCaption\n" "itemlist.text" msgid "AutoCaption" -msgstr "" +msgstr "TitullAutomatik" #: treeopt.src msgctxt "" @@ -1092,7 +1092,7 @@ "Formatting Aids\n" "itemlist.text" msgid "Formatting Aids" -msgstr "" +msgstr "Duke formatuar ndihmรซn" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/tabpages.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/tabpages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/source/tabpages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/source/tabpages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-17 09:08+0000\n" -"Last-Translator: Indrit Bashkimi \n" +"PO-Revision-Date: 2015-10-08 17:04+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LANGUAGE \n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434532080.000000\n" +"X-POOTLE-MTIME: 1444323867.000000\n" #: border.src msgctxt "" @@ -22,7 +22,7 @@ "RID_SVXSTR_TABLE_PRESET_NONE\n" "string.text" msgid "Set No Borders" -msgstr "" +msgstr "Mos Vendos Asnjรซ Kufi" #: border.src msgctxt "" @@ -30,7 +30,7 @@ "RID_SVXSTR_TABLE_PRESET_ONLYOUTER\n" "string.text" msgid "Set Outer Border Only" -msgstr "" +msgstr "Vendos Vetรซm Kufijtรซ e Jashtรซm" #: border.src msgctxt "" @@ -38,7 +38,7 @@ "RID_SVXSTR_TABLE_PRESET_OUTERHORI\n" "string.text" msgid "Set Outer Border and Horizontal Lines" -msgstr "" +msgstr "Vendos Kufijtรซ e Jashtรซm dhe Linjat Horizontale" #: border.src msgctxt "" @@ -46,7 +46,7 @@ "RID_SVXSTR_TABLE_PRESET_OUTERALL\n" "string.text" msgid "Set Outer Border and All Inner Lines" -msgstr "" +msgstr "Vendos Kufijtรซ e Jashtรซm dhe tรซ Gjitha Linjat e Brendshme" #: border.src msgctxt "" @@ -54,7 +54,7 @@ "RID_SVXSTR_TABLE_PRESET_OUTERINNER\n" "string.text" msgid "Set Outer Border Without Changing Inner Lines" -msgstr "" +msgstr "Vendos Kufijtรซ e Jashtรซm Pa Ndryshuar Linjat e Brendshme" #: border.src msgctxt "" @@ -62,7 +62,7 @@ "RID_SVXSTR_PARA_PRESET_DIAGONAL\n" "string.text" msgid "Set Diagonal Lines Only" -msgstr "" +msgstr "Vendos Vetรซm Linjat Diagonale" #: border.src msgctxt "" @@ -70,7 +70,7 @@ "RID_SVXSTR_PARA_PRESET_ALL\n" "string.text" msgid "Set All Four Borders" -msgstr "" +msgstr "Vendos tรซ Katรซrt Kufijtรซ" #: border.src msgctxt "" @@ -78,7 +78,7 @@ "RID_SVXSTR_PARA_PRESET_LEFTRIGHT\n" "string.text" msgid "Set Left and Right Borders Only" -msgstr "" +msgstr "Vendos Vetรซm Kufijtรซ Majtas dhe Djathtas" #: border.src msgctxt "" @@ -86,7 +86,7 @@ "RID_SVXSTR_PARA_PRESET_TOPBOTTOM\n" "string.text" msgid "Set Top and Bottom Borders Only" -msgstr "" +msgstr "Vendos Vetรซm Kufijtรซ e Sipรซrm dhe tรซ Poshtรซm" #: border.src msgctxt "" @@ -94,7 +94,7 @@ "RID_SVXSTR_PARA_PRESET_ONLYLEFT\n" "string.text" msgid "Set Left Border Only" -msgstr "" +msgstr "Vendos Vetรซm Kufirin Majtas" #: border.src msgctxt "" @@ -102,7 +102,7 @@ "RID_SVXSTR_HOR_PRESET_ONLYHOR\n" "string.text" msgid "Set Top and Bottom Borders, and All Inner Lines" -msgstr "" +msgstr "Vendos Kufijtรซ e Sipรซrm dhe tรซ Poshtรซm, dhe tรซ Gjitha Linjat e Brendshme" #: border.src msgctxt "" @@ -110,7 +110,7 @@ "RID_SVXSTR_VER_PRESET_ONLYVER\n" "string.text" msgid "Set Left and Right Borders, and All Inner Lines" -msgstr "" +msgstr "Vendos Kufijtรซ Majtas dhe Djathtas, dhe tรซ Gjitha Linjat e Brendshme" #: border.src msgctxt "" @@ -126,7 +126,7 @@ "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT\n" "string.text" msgid "Cast Shadow to Bottom Right" -msgstr "" +msgstr "Hidh Hije Poshtรซ- Djathtas" #: border.src msgctxt "" @@ -142,7 +142,7 @@ "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT\n" "string.text" msgid "Cast Shadow to Bottom Left" -msgstr "" +msgstr "Hidh Hije Poshtรซ- Majtas" #: border.src msgctxt "" @@ -150,7 +150,7 @@ "RID_SVXSTR_SHADOW_STYLE_TOPLEFT\n" "string.text" msgid "Cast Shadow to Top Left" -msgstr "" +msgstr "Hidh Hije Lart- Majtas" #: frmdirlbox.src msgctxt "" @@ -296,7 +296,7 @@ "Long Bond\n" "itemlist.text" msgid "Long Bond" -msgstr "" +msgstr "lidhje tรซ gjatรซ" #: page.src msgctxt "" @@ -593,7 +593,7 @@ "Long Bond\n" "itemlist.text" msgid "Long Bond" -msgstr "" +msgstr "Lidhje e gjatรซ" #: page.src msgctxt "" @@ -807,7 +807,7 @@ "RID_SVXSTR_DESC_EXT_BITMAP\n" "string.text" msgid "Please enter a name for the external bitmap:" -msgstr "" +msgstr "Ju lutem jepni njรซ emรซr pรซr bitmap-in e jashtรซm:" #: strings.src msgctxt "" @@ -818,6 +818,8 @@ "The bitmap was modified without saving. \n" "Modify the selected bitmap or add a new bitmap." msgstr "" +"Bitmap รซshtรซ modifikuar pa u ruajtur. \n" +"Modifiko bitmap-in e zgjedhur ose shto njรซ tรซ re." #: strings.src msgctxt "" @@ -845,7 +847,7 @@ "RID_SVXSTR_DESC_HATCH\n" "string.text" msgid "Please enter a name for the hatching:" -msgstr "" +msgstr "Ju lutem jepni njรซ emรซr pรซr pjesen e vijรซzuar:" #: strings.src msgctxt "" @@ -856,6 +858,8 @@ "The hatching type was modified but not saved. \n" "Modify the selected hatching type or add a new hatching type." msgstr "" +"Lloji i vijรซzimit u ndryshua, por nuk u ruajt. \n" +"Ndrysho llojin e vijรซzimit tรซ pรซrzgjedhjes ose shto njรซ lloj tรซ ri vijรซzimi." #: strings.src msgctxt "" @@ -963,7 +967,7 @@ "RID_SVXSTR_CHARNAME_HIGHLIGHTING\n" "string.text" msgid "Highlighting Color" -msgstr "" +msgstr "Ngjyrรซ dalluese" #: strings.src msgctxt "" @@ -995,7 +999,7 @@ "RID_SVXSTR_BOLD_UNDER\n" "string.text" msgid "Automatic *bold* and _underline_" -msgstr "" +msgstr "Automatikisht *e theksuar* dhe _nรซnvijรซzuar_" #: strings.src msgctxt "" @@ -1027,7 +1031,7 @@ "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK\n" "string.text" msgid "Correct accidental use of cAPS LOCK key" -msgstr "" +msgstr "Korrigjo pรซrdorimin e gabuar tรซ รงelรซsit cAPS LOCK" #: strings.src msgctxt "" @@ -1035,7 +1039,7 @@ "RID_SVXSTR_NON_BREAK_SPACE\n" "string.text" msgid "Add non-breaking space before specific punctuation marks in French text" -msgstr "" +msgstr "Shto hapรซsirรซn jo-boshe pรซrpara shenjave tรซ pikรซsimit tรซ shenjuara nรซ tekstin Francez " #: strings.src msgctxt "" @@ -1043,7 +1047,7 @@ "RID_SVXSTR_ORDINAL\n" "string.text" msgid "Format ordinal numbers suffixes (1st -> 1^st)" -msgstr "" +msgstr "Formati i prapashtesave tรซ numrave rendor(1st -> 1^st) " #: strings.src msgctxt "" @@ -1059,7 +1063,7 @@ "RID_SVXSTR_USER_STYLE\n" "string.text" msgid "Replace Custom Styles" -msgstr "" +msgstr "Zรซvendรซso stilet e zakonshme" #: strings.src msgctxt "" @@ -1075,7 +1079,7 @@ "RID_SVXSTR_RIGHT_MARGIN\n" "string.text" msgid "Combine single line paragraphs if length greater than" -msgstr "" +msgstr "Kombino paragrafรซt me njรซ fjali nรซse gjatรซsia mรซ e madhe se" #: strings.src msgctxt "" @@ -1083,7 +1087,7 @@ "RID_SVXSTR_NUM\n" "string.text" msgid "Apply numbering - symbol: " -msgstr "" +msgstr "Aplikoni numรซrimin - simbol:" #: strings.src msgctxt "" @@ -1091,7 +1095,7 @@ "RID_SVXSTR_BORDER\n" "string.text" msgid "Apply border" -msgstr "" +msgstr "Apliko kufirin" #: strings.src msgctxt "" @@ -1139,7 +1143,7 @@ "RID_SVXSTR_DIMENSION_LINE\n" "string.text" msgid "Dimension line" -msgstr "" +msgstr "Linjรซ dimensioni " #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-08-17 15:51+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-15 19:05+0000\n" +"Last-Translator: Belinda Dibra \n" "Language-Team: LibreOffice Albanian Translators\n" "Language: sq\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1439826716.000000\n" +"X-POOTLE-MTIME: 1444935940.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -141,7 +141,7 @@ "label\n" "string.text" msgid "_Website" -msgstr "" +msgstr "_Faqe ndรซrrjeti" #: aboutdialog.ui msgctxt "" @@ -159,7 +159,7 @@ "label\n" "string.text" msgid "Build ID: $BUILDID" -msgstr "" +msgstr "Ndรซrto ID: $BUILDID" #: aboutdialog.ui msgctxt "" @@ -168,7 +168,7 @@ "label\n" "string.text" msgid "Locale: $LOCALE" -msgstr "" +msgstr "Lokale: $LOKALE" #: aboutdialog.ui msgctxt "" @@ -186,7 +186,7 @@ "label\n" "string.text" msgid "Copyright ยฉ 2000 - 2015 LibreOffice contributors." -msgstr "Copyright ยฉ 2000 - 2015 Kontribuuesit e LibreOffice." +msgstr "Copyright ยฉ 2000 - 2015 Kontribuesit e LibreOffice." #: aboutdialog.ui msgctxt "" @@ -231,7 +231,7 @@ "label\n" "string.text" msgid "Shortcut Keys" -msgstr "" +msgstr "Tastet pรซrshpejtuese" #: accelconfigpage.ui msgctxt "" @@ -321,7 +321,7 @@ "label\n" "string.text" msgid "_AutoInclude" -msgstr "" +msgstr "_AutoInclude" #: acorexceptpage.ui msgctxt "" @@ -357,7 +357,7 @@ "label\n" "string.text" msgid "Abbreviations (no Subsequent Capital)" -msgstr "" +msgstr "Shkurtime (pa gรซrmรซ kapitale vijuese)" #: acorexceptpage.ui msgctxt "" @@ -366,7 +366,7 @@ "label\n" "string.text" msgid "A_utoInclude" -msgstr "" +msgstr "A_utoInclude" #: acorexceptpage.ui msgctxt "" @@ -483,7 +483,7 @@ "label\n" "string.text" msgid "[M]: Replace while modifying existing text" -msgstr "" +msgstr "[M]: Zรซvendรซso ndรซrkohรซ qรซ ndryshon tekstin ekzistues" #: applyautofmtpage.ui msgctxt "" @@ -492,7 +492,7 @@ "label\n" "string.text" msgid "[T]: AutoCorrect while typing" -msgstr "" +msgstr "[T]: Vetรซkorrigjo gjatรซ shkrimit " #: applyautofmtpage.ui msgctxt "" @@ -501,7 +501,7 @@ "label\n" "string.text" msgid "[M]" -msgstr "" +msgstr "[M]" #: applyautofmtpage.ui msgctxt "" @@ -510,7 +510,7 @@ "label\n" "string.text" msgid "[T]" -msgstr "" +msgstr "[T]" #: applylocalizedpage.ui msgctxt "" @@ -519,7 +519,7 @@ "label\n" "string.text" msgid "[M]" -msgstr "" +msgstr "[M]" #: applylocalizedpage.ui msgctxt "" @@ -528,7 +528,7 @@ "label\n" "string.text" msgid "[T]" -msgstr "" +msgstr "[T]" #: applylocalizedpage.ui msgctxt "" @@ -546,7 +546,7 @@ "label\n" "string.text" msgid "_Start quote:" -msgstr "" +msgstr "_Fillo citimin:" #: applylocalizedpage.ui msgctxt "" @@ -591,7 +591,7 @@ "label\n" "string.text" msgid "_End quote:" -msgstr "" +msgstr "_Mbaro citimin" #: applylocalizedpage.ui msgctxt "" @@ -600,7 +600,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "End quote of single quotes" -msgstr "" +msgstr "Mbaro citimin e citimeve tรซ vetme" #: applylocalizedpage.ui msgctxt "" @@ -618,7 +618,7 @@ "label\n" "string.text" msgid "Single Quotes" -msgstr "" +msgstr "Citime tรซ vetme" #: applylocalizedpage.ui msgctxt "" @@ -636,7 +636,7 @@ "label\n" "string.text" msgid "_Start quote:" -msgstr "" +msgstr "_Fillo citimin" #: applylocalizedpage.ui msgctxt "" @@ -645,7 +645,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Start quote of double quotes" -msgstr "" +msgstr "Fillo citimin e citimeve tรซ dyfishta" #: applylocalizedpage.ui msgctxt "" @@ -672,7 +672,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Double quotes default" -msgstr "" +msgstr "Citime tรซ dyfishta tรซ parazgjedhura" #: applylocalizedpage.ui msgctxt "" @@ -681,7 +681,7 @@ "label\n" "string.text" msgid "_End quote:" -msgstr "" +msgstr "_Mbaro citimin" #: applylocalizedpage.ui msgctxt "" @@ -690,7 +690,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "End quote of double quotes" -msgstr "" +msgstr "Mbaro citimin e citimeve tรซ dyfishta" #: applylocalizedpage.ui msgctxt "" @@ -708,7 +708,7 @@ "label\n" "string.text" msgid "Double Quotes" -msgstr "" +msgstr "Citime tรซ dyfishta" #: areadialog.ui msgctxt "" @@ -762,7 +762,7 @@ "label\n" "string.text" msgid "Gradients" -msgstr "" +msgstr "Shkallรซzimet" #: areadialog.ui msgctxt "" @@ -771,7 +771,7 @@ "label\n" "string.text" msgid "Hatching" -msgstr "Vizimi" +msgstr "Vijรซzimi" #: areadialog.ui msgctxt "" @@ -780,7 +780,7 @@ "label\n" "string.text" msgid "Bitmaps" -msgstr "" +msgstr "Bitmap-et" #: areatabpage.ui msgctxt "" @@ -825,7 +825,7 @@ "label\n" "string.text" msgid "Increments" -msgstr "" +msgstr "Rritje " #: areatabpage.ui msgctxt "" @@ -897,7 +897,7 @@ "label\n" "string.text" msgid "_X offset:" -msgstr "" +msgstr "_X offset:" #: areatabpage.ui msgctxt "" @@ -906,7 +906,7 @@ "label\n" "string.text" msgid "_Y offset:" -msgstr "" +msgstr "_Y offset:" #: areatabpage.ui msgctxt "" @@ -951,7 +951,7 @@ "label\n" "string.text" msgid "Colu_mn" -msgstr "_Kolona" +msgstr "Kolo_na" #: areatabpage.ui msgctxt "" @@ -960,7 +960,7 @@ "label\n" "string.text" msgid "Offset" -msgstr "" +msgstr "Offset" #: areatabpage.ui msgctxt "" @@ -969,7 +969,7 @@ "label\n" "string.text" msgid "Import Graphic..." -msgstr "Importo grafik..." +msgstr "Importo grafikun..." #: areatabpage.ui msgctxt "" @@ -996,7 +996,7 @@ "2\n" "stringlist.text" msgid "Gradient" -msgstr "" +msgstr "Gradient" #: areatabpage.ui msgctxt "" @@ -1005,7 +1005,7 @@ "3\n" "stringlist.text" msgid "Hatching" -msgstr "Vizimi" +msgstr "Vijรซzimi" #: areatabpage.ui msgctxt "" @@ -1023,7 +1023,7 @@ "label\n" "string.text" msgid "Apply list of forbidden characters to the beginning and end of lines" -msgstr "Zbato listรซn e karaktereve tรซ ndaluara nรซ fillim dhe nรซ fund tรซ rreshtit" +msgstr "Zbato listรซn e karaktereve tรซ ndaluar nรซ fillim dhe nรซ fund tรซ rreshtit" #: asiantypography.ui msgctxt "" @@ -1032,7 +1032,7 @@ "label\n" "string.text" msgid "Allow hanging punctuation" -msgstr "" +msgstr "Lejo pikรซzimin e varur nรซ fund tรซ rreshtit" #: asiantypography.ui msgctxt "" @@ -1041,7 +1041,7 @@ "label\n" "string.text" msgid "Apply spacing between Asian, Latin and complex text" -msgstr "Zbato hapรซsirรซn ndรซrmjet tekstit aziatik, latin dhe kompleks" +msgstr "Zbato hapรซsirรซn ndรซrmjet tekstit Aziatik, Latin dhe kompleks" #: asiantypography.ui msgctxt "" @@ -1050,7 +1050,7 @@ "label\n" "string.text" msgid "Line Change" -msgstr "" +msgstr "Ndryshim rreshti" #: assigncomponentdialog.ui msgctxt "" @@ -1131,7 +1131,7 @@ "label\n" "string.text" msgid "Localized Options" -msgstr "" +msgstr "Opsione lokalizimi" #: autocorrectdialog.ui msgctxt "" @@ -1212,7 +1212,7 @@ "1\n" "stringlist.text" msgid "Character" -msgstr "Germรซ" +msgstr "Gรซrmรซ" #: backgroundpage.ui msgctxt "" @@ -1347,7 +1347,7 @@ "1\n" "stringlist.text" msgid "Graphic" -msgstr "" +msgstr "Grafik" #: baselinksdialog.ui msgctxt "" @@ -1500,7 +1500,7 @@ "label\n" "string.text" msgid "Pattern Editor:" -msgstr "" +msgstr "Ndryshuesi i modelit:" #: bitmaptabpage.ui msgctxt "" @@ -1509,7 +1509,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Pattern Editor" -msgstr "" +msgstr "Ndryshuesi i modelit:" #: bitmaptabpage.ui msgctxt "" @@ -1518,7 +1518,7 @@ "label\n" "string.text" msgid "_Foreground color:" -msgstr "" +msgstr "_Ngjyra e Fontit:" #: bitmaptabpage.ui msgctxt "" @@ -1653,7 +1653,7 @@ "label\n" "string.text" msgid "Driver version:" -msgstr "" +msgstr "Derivati i drajverit" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1662,7 +1662,7 @@ "label\n" "string.text" msgid "Edit OpenCL Blacklist Entry" -msgstr "" +msgstr "Ndrysho Hyrjen e Blacklist OpenCL" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1671,7 +1671,7 @@ "label\n" "string.text" msgid "Create OpenCL Blacklist Entry" -msgstr "" +msgstr "Krijo Hyrjen e Blacklist OpenCL" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1680,7 +1680,7 @@ "label\n" "string.text" msgid "Edit OpenCL Whitelist Entry" -msgstr "" +msgstr "Ndrysho Hyrjen e Whitelist OpenCL" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1689,7 +1689,7 @@ "label\n" "string.text" msgid "Create OpenCL Whitelist Entry" -msgstr "" +msgstr "Krijo Hyrjen e Whitelist OpenCL" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1707,7 +1707,7 @@ "0\n" "stringlist.text" msgid "Any" -msgstr "" +msgstr "ร‡do" #: borderareatransparencydialog.ui msgctxt "" @@ -1941,7 +1941,7 @@ "label\n" "string.text" msgid "_Merge adjacent line styles" -msgstr "_Bashko stilet e rreshtave tรซ ngjitura" +msgstr "_Bashko stilet e rreshtave tรซ ngjitur" #: borderpage.ui msgctxt "" @@ -1968,7 +1968,7 @@ "label\n" "string.text" msgid "Characters Before Break" -msgstr "" +msgstr "Karakteret para linjรซs ndarรซse:" #: breaknumberoption.ui msgctxt "" @@ -1977,7 +1977,7 @@ "label\n" "string.text" msgid "Characters After Break" -msgstr "" +msgstr "Karakteret pas linjรซs ndarรซse:" #: breaknumberoption.ui msgctxt "" @@ -2148,7 +2148,7 @@ "1\n" "stringlist.text" msgid "Angled Line" -msgstr "" +msgstr "Linja Kรซnddrejtรซ" #: calloutpage.ui msgctxt "" @@ -2229,7 +2229,7 @@ "label\n" "string.text" msgid "Vertically s_tacked" -msgstr "" +msgstr "Pirgu vertikal" #: cellalignment.ui msgctxt "" @@ -2238,7 +2238,7 @@ "label\n" "string.text" msgid "Asian layout _mode" -msgstr "" +msgstr "Formรซdhรซnja Aziatike" #: cellalignment.ui msgctxt "" @@ -2256,7 +2256,7 @@ "label\n" "string.text" msgid "_Wrap text automatically" -msgstr "" +msgstr "_Pรซrfundo tekstin automatikisht" #: cellalignment.ui msgctxt "" @@ -2301,7 +2301,7 @@ "label\n" "string.text" msgid "Hori_zontal" -msgstr "Hori_zontal" +msgstr "Hori_zontalisht" #: cellalignment.ui msgctxt "" @@ -2310,7 +2310,7 @@ "label\n" "string.text" msgid "_Vertical" -msgstr "_Vertikal" +msgstr "_Vertikalisht" #: cellalignment.ui msgctxt "" @@ -2355,7 +2355,7 @@ "label\n" "string.text" msgid "Text Extension Inside Cell" -msgstr "Prapashtesim i tekstit brenda qelisรซ" +msgstr "Prapashtesim i Tekstit Brenda Qelisรซ" #: cellalignment.ui msgctxt "" @@ -2427,7 +2427,7 @@ "6\n" "stringlist.text" msgid "Distributed" -msgstr "E shpรซrndarรซ" +msgstr "I shpรซrndarรซ" #: cellalignment.ui msgctxt "" @@ -2490,7 +2490,7 @@ "title\n" "string.text" msgid "Certificate Path" -msgstr "Pozicioni i certifikatรซs" +msgstr "Pozicioni i รงertifikatรซs" #: certdialog.ui msgctxt "" @@ -2850,7 +2850,7 @@ "label\n" "string.text" msgid "Grid" -msgstr "" +msgstr "Rrjetat e kordinatave" #: colorconfigwin.ui msgctxt "" @@ -2877,7 +2877,7 @@ "label\n" "string.text" msgid "Index and table shadings" -msgstr "" +msgstr "Treguesit dhe nuancat e tabelave" #: colorconfigwin.ui msgctxt "" @@ -2913,7 +2913,7 @@ "label\n" "string.text" msgid "Direct Cursor" -msgstr "" +msgstr "Kursor direkt" #: colorconfigwin.ui msgctxt "" @@ -2931,7 +2931,7 @@ "label\n" "string.text" msgid "SGML syntax highlighting" -msgstr "" +msgstr "SGML hijรซzimi i sintaksรซs" #: colorconfigwin.ui msgctxt "" @@ -3021,7 +3021,7 @@ "label\n" "string.text" msgid "Detective error" -msgstr "" +msgstr "Gabim i zbulueshรซm" #: colorconfigwin.ui msgctxt "" @@ -3057,7 +3057,7 @@ "label\n" "string.text" msgid "Grid" -msgstr "" +msgstr "Rrjetat e kordinatave" #: colorconfigwin.ui msgctxt "" @@ -3120,7 +3120,7 @@ "label\n" "string.text" msgid "Reserved expression" -msgstr "" +msgstr "Shprehje e rezervuar" #: colorconfigwin.ui msgctxt "" @@ -3300,7 +3300,7 @@ "label\n" "string.text" msgid "_G" -msgstr "" +msgstr "_G" #: colorpage.ui msgctxt "" @@ -3309,7 +3309,7 @@ "label\n" "string.text" msgid "_R" -msgstr "" +msgstr "_R" #: colorpage.ui msgctxt "" @@ -3318,7 +3318,7 @@ "label\n" "string.text" msgid "_C" -msgstr "" +msgstr "_C" #: colorpage.ui msgctxt "" @@ -3327,7 +3327,7 @@ "label\n" "string.text" msgid "_M" -msgstr "" +msgstr "_M" #: colorpage.ui msgctxt "" @@ -3336,7 +3336,7 @@ "label\n" "string.text" msgid "_K" -msgstr "" +msgstr "_K" #: colorpage.ui msgctxt "" @@ -3345,7 +3345,7 @@ "label\n" "string.text" msgid "_Y" -msgstr "" +msgstr "_Y" #: colorpage.ui msgctxt "" @@ -3408,7 +3408,7 @@ "label\n" "string.text" msgid "Embed" -msgstr "" +msgstr "Ndรซrfute" #: colorpage.ui msgctxt "" @@ -3525,7 +3525,7 @@ "label\n" "string.text" msgid "_Magenta:" -msgstr "" +msgstr "_Magenda:" #: colorpickerdialog.ui msgctxt "" @@ -3669,7 +3669,7 @@ "label\n" "string.text" msgid "_Begin horizontal:" -msgstr "" +msgstr "_Fillo horizontal:" #: connectortabpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ss/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ss/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ss/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ss/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/st/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/st/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/st/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/st/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/st/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/st/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/st/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/st/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/st/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/st/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/st/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/st/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sv/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/sv/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sv/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sv/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-15 00:29+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-22 13:17+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439598577.000000\n" +"X-POOTLE-MTIME: 1442927857.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1787,7 +1787,7 @@ "UMBRELLA_WITH_RAIN_DROPS\n" "LngText.text" msgid "rain" -msgstr "" +msgstr "regn" #. โ˜• (U+02615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1796,7 +1796,7 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "kaffe" #. โ˜š (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1805,7 +1805,7 @@ "BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left3" -msgstr "" +msgstr "vรคnster3" #. โ˜› (U+0261B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1814,7 +1814,7 @@ "BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right3" -msgstr "" +msgstr "hรถger3" #. โ˜œ (U+0261C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1823,7 +1823,7 @@ "WHITE_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left" -msgstr "" +msgstr "vรคnster" #. โ˜ (U+0261D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1832,7 +1832,7 @@ "WHITE_UP_POINTING_INDEX\n" "LngText.text" msgid "up" -msgstr "" +msgstr "upp" #. โ˜ž (U+0261E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1841,7 +1841,7 @@ "WHITE_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right" -msgstr "" +msgstr "hรถger" #. โ˜Ÿ (U+0261F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1850,7 +1850,7 @@ "WHITE_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down" -msgstr "" +msgstr "ner" #. โ˜  (U+02620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1859,7 +1859,7 @@ "SKULL_AND_CROSSBONES\n" "LngText.text" msgid "poison" -msgstr "" +msgstr "gift" #. โ˜ก (U+02621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1868,7 +1868,7 @@ "CAUTION_SIGN\n" "LngText.text" msgid "caution" -msgstr "" +msgstr "fรถrsiktig" #. โ˜ข (U+02622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1877,7 +1877,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "radioaktiv" #. โ˜ฃ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1886,7 +1886,7 @@ "BIOHAZARD_SIGN\n" "LngText.text" msgid "biohazard" -msgstr "" +msgstr "biologiskt riskavfall" #. โ˜ค (U+02624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1985,7 +1985,7 @@ "PEACE_SYMBOL\n" "LngText.text" msgid "peace" -msgstr "" +msgstr "fred" #. โ˜ฏ (U+0262F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1994,7 +1994,7 @@ "YIN_YANG\n" "LngText.text" msgid "yin yang" -msgstr "" +msgstr "yin yang" #. โ˜น (U+02639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2012,7 +2012,7 @@ "WHITE_SMILING_FACE\n" "LngText.text" msgid "smiling" -msgstr "" +msgstr "leende" #. โ˜ป (U+0263B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2021,17 +2021,16 @@ "BLACK_SMILING_FACE\n" "LngText.text" msgid "smiling2" -msgstr "" +msgstr "leende2" #. โ˜ผ (U+0263C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SUN_WITH_RAYS\n" "LngText.text" msgid "Sun2" -msgstr "Sol" +msgstr "Sol2" #. โ˜ฝ (U+0263D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2040,7 +2039,7 @@ "FIRST_QUARTER_MOON\n" "LngText.text" msgid "Moon" -msgstr "" +msgstr "Mรฅne" #. โ˜พ (U+0263E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2049,7 +2048,7 @@ "LAST_QUARTER_MOON\n" "LngText.text" msgid "Moon2" -msgstr "" +msgstr "Mรฅne2" #. โ˜ฟ (U+0263F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2058,7 +2057,7 @@ "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "" +msgstr "Kvicksilver" #. โ™€ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2067,7 +2066,7 @@ "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "" +msgstr "kvinna" #. โ™ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2076,7 +2075,7 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Jorden" #. โ™‚ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2085,7 +2084,7 @@ "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "" +msgstr "man" #. โ™ƒ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2094,7 +2093,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Jupiter" #. โ™„ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2103,7 +2102,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Saturnus" #. โ™… (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2112,7 +2111,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "Uranus" #. โ™† (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2121,7 +2120,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Neptun" #. โ™‡ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2130,7 +2129,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Pluto" #. โ™ˆ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2139,7 +2138,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Vรคduren" #. โ™‰ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2148,7 +2147,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "Oxen" #. โ™Š (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2157,7 +2156,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "Tvillingarna" #. โ™‹ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2166,7 +2165,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "Krรคftan" #. โ™Œ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2175,7 +2174,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "Lejonet" #. โ™ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2184,7 +2183,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "Jungfrun" #. โ™Ž (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2193,7 +2192,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Vรฅgen" #. โ™ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2202,7 +2201,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Skorpionen" #. โ™ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2211,7 +2210,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "Skytten" #. โ™‘ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2220,7 +2219,7 @@ "CAPRICORN\n" "LngText.text" msgid "Capricorn" -msgstr "" +msgstr "Stenbocken" #. โ™’ (U+02652), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2229,7 +2228,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "Vattumannen" #. โ™“ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2238,7 +2237,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Fiskarna" #. โ™” (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2247,7 +2246,7 @@ "WHITE_CHESS_KING\n" "LngText.text" msgid "white king" -msgstr "" +msgstr "vit kung" #. โ™• (U+02655), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2256,7 +2255,7 @@ "WHITE_CHESS_QUEEN\n" "LngText.text" msgid "white queen" -msgstr "" +msgstr "vit dam" #. โ™– (U+02656), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2265,7 +2264,7 @@ "WHITE_CHESS_ROOK\n" "LngText.text" msgid "white rook" -msgstr "" +msgstr "vitt torn" #. โ™— (U+02657), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2274,7 +2273,7 @@ "WHITE_CHESS_BISHOP\n" "LngText.text" msgid "white bishop" -msgstr "" +msgstr "vit lรถpare" #. โ™˜ (U+02658), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2283,7 +2282,7 @@ "WHITE_CHESS_KNIGHT\n" "LngText.text" msgid "white knight" -msgstr "" +msgstr "vit springare" #. โ™™ (U+02659), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2292,7 +2291,7 @@ "WHITE_CHESS_PAWN\n" "LngText.text" msgid "white pawn" -msgstr "" +msgstr "vit bonde" #. โ™š (U+0265A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2301,7 +2300,7 @@ "BLACK_CHESS_KING\n" "LngText.text" msgid "black king" -msgstr "" +msgstr "svart kung" #. โ™› (U+0265B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2310,7 +2309,7 @@ "BLACK_CHESS_QUEEN\n" "LngText.text" msgid "black queen" -msgstr "" +msgstr "svart dam" #. โ™œ (U+0265C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2319,7 +2318,7 @@ "BLACK_CHESS_ROOK\n" "LngText.text" msgid "black rook" -msgstr "" +msgstr "svart torn" #. โ™ (U+0265D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2328,7 +2327,7 @@ "BLACK_CHESS_BISHOP\n" "LngText.text" msgid "black bishop" -msgstr "" +msgstr "svart lรถpare" #. โ™ž (U+0265E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2337,7 +2336,7 @@ "BLACK_CHESS_KNIGHT\n" "LngText.text" msgid "black knight" -msgstr "" +msgstr "svart springare" #. โ™Ÿ (U+0265F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2346,7 +2345,7 @@ "BLACK_CHESS_PAWN\n" "LngText.text" msgid "black pawn" -msgstr "" +msgstr "svart bonde" #. โ™  (U+02660), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2355,7 +2354,7 @@ "BLACK_SPADE_SUIT\n" "LngText.text" msgid "spades" -msgstr "" +msgstr "spader" #. โ™ก (U+02661), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2364,7 +2363,7 @@ "WHITE_HEART_SUIT\n" "LngText.text" msgid "hearts2" -msgstr "" +msgstr "hjรคrter2" #. โ™ข (U+02662), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2373,7 +2372,7 @@ "WHITE_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds2" -msgstr "" +msgstr "ruter2" #. โ™ฃ (U+02663), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2382,7 +2381,7 @@ "BLACK_CLUB_SUIT\n" "LngText.text" msgid "clubs" -msgstr "" +msgstr "klรถver" #. โ™ค (U+02664), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2391,7 +2390,7 @@ "WHITE_SPADE_SUIT\n" "LngText.text" msgid "spades2" -msgstr "" +msgstr "spader2" #. โ™ฅ (U+02665), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2400,7 +2399,7 @@ "BLACK_HEART_SUIT\n" "LngText.text" msgid "hearts" -msgstr "" +msgstr "hjรคrter" #. โ™ฆ (U+02666), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2409,7 +2408,7 @@ "BLACK_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds" -msgstr "" +msgstr "ruter" #. โ™ง (U+02667), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2418,7 +2417,7 @@ "WHITE_CLUB_SUIT\n" "LngText.text" msgid "clubs2" -msgstr "" +msgstr "klรถver2" #. โ™จ (U+02668), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2431,13 +2430,12 @@ #. โ™ฉ (U+02669), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "QUARTER_NOTE\n" "LngText.text" msgid "note" -msgstr "icke" +msgstr "not" #. โ™ช (U+0266A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2446,7 +2444,7 @@ "EIGHTH_NOTE\n" "LngText.text" msgid "note2" -msgstr "" +msgstr "not2" #. โ™ซ (U+0266B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2455,7 +2453,7 @@ "BEAMED_EIGHTH_NOTES\n" "LngText.text" msgid "notes" -msgstr "" +msgstr "noter" #. โ™ฌ (U+0266C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2464,7 +2462,7 @@ "BEAMED_SIXTEENTH_NOTES\n" "LngText.text" msgid "notes2" -msgstr "" +msgstr "noter2" #. โ™ญ (U+0266D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2473,7 +2471,7 @@ "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "" +msgstr "b fรถrtecken" #. โ™ฎ (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2482,7 +2480,7 @@ "MUSIC_NATURAL_SIGN\n" "LngText.text" msgid "natural" -msgstr "" +msgstr "รฅterstรคllningstecken" #. โ™ฏ (U+0266F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2491,7 +2489,7 @@ "MUSIC_SHARP_SIGN\n" "LngText.text" msgid "sharp" -msgstr "" +msgstr "korsfรถrtecken" #. โ™ฒ (U+02672), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2500,7 +2498,7 @@ "UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling" -msgstr "" +msgstr "รฅtervinning" #. โ™ป (U+0267B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2509,7 +2507,7 @@ "BLACK_UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling2" -msgstr "" +msgstr "รฅtervinning2" #. โ™ผ (U+0267C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2518,7 +2516,7 @@ "RECYCLED_PAPER\n" "LngText.text" msgid "recycled paper" -msgstr "" +msgstr "รฅtervunnet papper" #. โ™พ (U+0267E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2527,7 +2525,7 @@ "PERMANENT_PAPER\n" "LngText.text" msgid "permanent paper" -msgstr "" +msgstr "permanent papper" #. โ™ฟ (U+0267F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2536,7 +2534,7 @@ "WHEELCHAIR_SYMBOL\n" "LngText.text" msgid "wheelchair" -msgstr "" +msgstr "rullstol" #. โš€ (U+02680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2545,7 +2543,7 @@ "DIE_FACE-1\n" "LngText.text" msgid "dice1" -msgstr "" +msgstr "tรคrning1" #. โš (U+02681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2554,7 +2552,7 @@ "DIE_FACE-2\n" "LngText.text" msgid "dice2" -msgstr "" +msgstr "tรคrning2" #. โš‚ (U+02682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2563,7 +2561,7 @@ "DIE_FACE-3\n" "LngText.text" msgid "dice3" -msgstr "" +msgstr "tรคrning3" #. โšƒ (U+02683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2572,7 +2570,7 @@ "DIE_FACE-4\n" "LngText.text" msgid "dice4" -msgstr "" +msgstr "tรคrning4" #. โš„ (U+02684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2581,7 +2579,7 @@ "DIE_FACE-5\n" "LngText.text" msgid "dice5" -msgstr "" +msgstr "tรคrning5" #. โš… (U+02685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2590,7 +2588,7 @@ "DIE_FACE-6\n" "LngText.text" msgid "dice6" -msgstr "" +msgstr "tรคrning6" #. โš (U+02690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2599,7 +2597,7 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "flagga" #. โš‘ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2608,7 +2606,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "flagga2" #. โš’ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2617,7 +2615,7 @@ "HAMMER_AND_PICK\n" "LngText.text" msgid "hammer and pick" -msgstr "" +msgstr "hammare och hacka" #. โš“ (U+02693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2626,7 +2624,7 @@ "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "" +msgstr "ankare" #. โš” (U+02694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2635,7 +2633,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "svรคrd" #. โš• (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2644,7 +2642,7 @@ "STAFF_OF_AESCULAPIUS\n" "LngText.text" msgid "medical" -msgstr "" +msgstr "eskulapstav" #. โš– (U+02696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2653,7 +2651,7 @@ "SCALES\n" "LngText.text" msgid "scales" -msgstr "" +msgstr "balansvรฅg" #. โš— (U+02697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2671,7 +2669,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "" +msgstr "blomma" #. โš™ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2680,7 +2678,7 @@ "GEAR\n" "LngText.text" msgid "gear" -msgstr "" +msgstr "kugghjul" #. โšš (U+0269A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2698,7 +2696,7 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "atom" #. โšœ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2707,7 +2705,7 @@ "FLEUR-DE-LIS\n" "LngText.text" msgid "fleur de lis" -msgstr "" +msgstr "fransk lilja" #. โš  (U+026A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2716,7 +2714,7 @@ "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "" +msgstr "varning" #. โšก (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2725,7 +2723,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "hรถg spรคnning" #. โšช (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2734,7 +2732,7 @@ "MEDIUM_WHITE_CIRCLE\n" "LngText.text" msgid "white circle" -msgstr "" +msgstr "vit cirkel" #. โšซ (U+026AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2743,7 +2741,7 @@ "MEDIUM_BLACK_CIRCLE\n" "LngText.text" msgid "black circle" -msgstr "" +msgstr "svart cirkel" #. โšญ (U+026AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2752,7 +2750,7 @@ "MARRIAGE_SYMBOL\n" "LngText.text" msgid "marriage" -msgstr "" +msgstr "รคktenskap" #. โšฎ (U+026AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2761,7 +2759,7 @@ "DIVORCE_SYMBOL\n" "LngText.text" msgid "divorce" -msgstr "" +msgstr "skilsmรคssa" #. โšฐ (U+026B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2770,7 +2768,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "kista" #. โšฑ (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2801,23 +2799,21 @@ #. โ›„ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SNOWMAN_WITHOUT_SNOW\n" "LngText.text" msgid "snowman2" -msgstr "snรถgubbe" +msgstr "snรถgubbe2" #. โ›… (U+026C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "moln" +msgstr "moln2" #. โ›† (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2826,17 +2822,16 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "regn2" #. โ›ˆ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "THUNDER_CLOUD_AND_RAIN\n" "LngText.text" msgid "cloud3" -msgstr "moln" +msgstr "moln3" #. โ›Ž (U+026CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2939,13 +2934,12 @@ #. โ›ฑ (U+026F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "UMBRELLA_ON_GROUND\n" "LngText.text" msgid "umbrella3" -msgstr "paraply" +msgstr "paraply3" #. โ›ฒ (U+026F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2981,17 +2975,16 @@ "SAILBOAT\n" "LngText.text" msgid "sailboat" -msgstr "" +msgstr "segelbรฅt" #. โ›บ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "TENT\n" "LngText.text" msgid "tent" -msgstr "cent" +msgstr "tรคlt" #. โ›ท (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3112,13 +3105,12 @@ #. โœ‹ (U+0270B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "RAISED_HAND\n" "LngText.text" msgid "hand" -msgstr "och" +msgstr "hand" #. โœŒ (U+0270C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3419,13 +3411,12 @@ #. โฌค (U+02B24), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_LARGE_CIRCLE\n" "LngText.text" msgid "large circle2" -msgstr "stor cirkel" +msgstr "stor cirkel2" #. โฌญ (U+02B2D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3438,33 +3429,30 @@ #. โญ (U+02B50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_MEDIUM_STAR\n" "LngText.text" msgid "medium star" -msgstr "medelstor kvadrat" +msgstr "medelstor stjรคrna" #. โญ‘ (U+02B51), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "BLACK_SMALL_STAR\n" "LngText.text" msgid "small star2" -msgstr "liten kvadrat2" +msgstr "liten stjรคrna2" #. โญ’ (U+02B52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "WHITE_SMALL_STAR\n" "LngText.text" msgid "small star" -msgstr "liten kvadrat" +msgstr "liten stjรคrna" #. ๏ฌ€ (U+0FB00), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3473,7 +3461,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. ๏ฌ (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3482,7 +3470,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. ๏ฌ‚ (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3491,7 +3479,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ๏ฌƒ (U+0FB03), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3500,7 +3488,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ๏ฌ„ (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3509,7 +3497,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. ๐„ž (U+1D11E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3702,13 +3690,12 @@ #. ๐ŸŒ‚ (U+1F302), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CLOSED_UMBRELLA\n" "LngText.text" msgid "umbrella2" -msgstr "paraply" +msgstr "paraply2" #. ๐ŸŒƒ (U+1F303), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3739,13 +3726,12 @@ #. ๐ŸŒ† (U+1F306), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "CITYSCAPE_AT_DUSK\n" "LngText.text" msgid "sunset" -msgstr "delmรคngd" +msgstr "solnedgรฅng" #. ๐ŸŒ‡ (U+1F307), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3754,7 +3740,7 @@ "SUNSET_OVER_BUILDINGS\n" "LngText.text" msgid "sunrise3" -msgstr "" +msgstr "solnedgรฅng3" #. ๐ŸŒˆ (U+1F308), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3763,7 +3749,7 @@ "RAINBOW\n" "LngText.text" msgid "rainbow" -msgstr "" +msgstr "regnbรฅge" #. ๐ŸŒ‰ (U+1F309), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3772,7 +3758,7 @@ "BRIDGE_AT_NIGHT\n" "LngText.text" msgid "bridge" -msgstr "" +msgstr "bro" #. ๐ŸŒŠ (U+1F30A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3781,7 +3767,7 @@ "WATER_WAVE\n" "LngText.text" msgid "ocean" -msgstr "" +msgstr "hav" #. ๐ŸŒ‹ (U+1F30B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3790,7 +3776,7 @@ "VOLCANO\n" "LngText.text" msgid "volcano" -msgstr "" +msgstr "vulkan" #. ๐ŸŒŒ (U+1F30C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-17 11:43+0000\n" +"PO-Revision-Date: 2015-09-18 20:53+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439811805.000000\n" +"X-POOTLE-MTIME: 1442609626.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3302,7 +3302,6 @@ msgstr "Ta bort sid~brytning" #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n" @@ -15149,7 +15148,6 @@ msgstr "~Punktuppstรคllningstecken..." #: GenericCommands.xcu -#, fuzzy msgctxt "" "GenericCommands.xcu\n" "..GenericCommands.UserInterface.Commands..uno:EditDoc\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sv/sc/source/ui/src.po libreoffice-l10n-5.0.3~rc2/translations/source/sv/sc/source/ui/src.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sv/sc/source/ui/src.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sv/sc/source/ui/src.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-18 07:04+0000\n" +"PO-Revision-Date: 2015-09-18 21:11+0000\n" "Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439881453.000000\n" +"X-POOTLE-MTIME: 1442610667.000000\n" #: condformatdlg.src msgctxt "" @@ -4920,7 +4920,6 @@ msgstr "Namn" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "RID_GLOBSTR\n" @@ -8232,7 +8231,6 @@ msgstr "Bestรคmmer det aktuella datumet fรถr datorn." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n" @@ -13288,7 +13286,7 @@ "5\n" "string.text" msgid "If given the number to whose multiple the value is rounded, else 1." -msgstr "" +msgstr "Om angivet sรฅ รคr det, det tal till vars multipel vรคrdet ska avrundas, annars 1." #: scfuncs.src msgctxt "" @@ -13306,7 +13304,7 @@ "7\n" "string.text" msgid "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero." -msgstr "" +msgstr "Fรถr negativa tal: om angivet och inte lika med noll sรฅ avrundas bort frรฅn noll, annars avrundas mot noll." #: scfuncs.src msgctxt "" @@ -13428,17 +13426,15 @@ msgstr "Avrundar ett tal nedรฅt till nรคrmsta multipel av signifikans, oavsett tecken pรฅ signifikans." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" "2\n" "string.text" msgid "Number" -msgstr "tal" +msgstr "Tal" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" @@ -13448,14 +13444,13 @@ msgstr "Talet som ska avrundas nerรฅt." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n" "4\n" "string.text" msgid "Significance" -msgstr "signifikans" +msgstr "Signifikans" #: scfuncs.src #, fuzzy @@ -16472,7 +16467,6 @@ msgstr "0 eller FALSK berรคknar sannolikhets- och tรคthetsfunktionen. Andra vรคrden eller SANT berรคknar den kumulativa fรถrdelningsfunktionen." #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n" @@ -21998,7 +21992,7 @@ "1\n" "string.text" msgid "Returns a number corresponding to one of the error values or #N/A if no error exists" -msgstr "" +msgstr "Returnerar ett tal som motsvarar ett av felvรคrdena eller #SAKNAS om det inte finns nรฅgot fel" #: scfuncs.src msgctxt "" @@ -22016,7 +22010,7 @@ "3\n" "string.text" msgid "The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test." -msgstr "" +msgstr "Felvรคrdet vars identifieringsnummer du vill hitta. Kan vara ett faktiskt felvรคrde eller en referens till en cell som du vill testa." #: scfuncs.src msgctxt "" @@ -24396,14 +24390,13 @@ msgstr "Text" #: scfuncs.src -#, fuzzy msgctxt "" "scfuncs.src\n" "RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ENCODEURL\n" "3\n" "string.text" msgid "A string to be URL-encoded" -msgstr "En textstrรคng som ska URL-kodas" +msgstr "En textstrรคng som ska kodas som en URL" #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sv/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/sv/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sv/sc/uiconfig/scalc/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sv/sc/uiconfig/scalc/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-15 01:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-18 21:04+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: none\n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439601021.000000\n" +"X-POOTLE-MTIME: 1442610251.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -7706,7 +7706,7 @@ "label\n" "string.text" msgid "_Indent:" -msgstr "" +msgstr "_Indrag:" #: sidebaralignment.ui msgctxt "" @@ -7808,14 +7808,13 @@ msgstr "Vรคlj rotationsvinkel." #: sidebarcellappearance.ui -#, fuzzy msgctxt "" "sidebarcellappearance.ui\n" "cellbackgroundlabel\n" "label\n" "string.text" msgid "_Background:" -msgstr "Bakgrund" +msgstr "_Bakgrund:" #: sidebarcellappearance.ui msgctxt "" @@ -8070,7 +8069,6 @@ msgstr "Ange maximalt antal nollor som ska visas innan decimaltecknet." #: sidebarnumberformat.ui -#, fuzzy msgctxt "" "sidebarnumberformat.ui\n" "negativenumbersred\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sv/sd/source/ui/view.po libreoffice-l10n-5.0.3~rc2/translations/source/sv/sd/source/ui/view.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sv/sd/source/ui/view.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sv/sd/source/ui/view.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-15 01:21+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-18 21:16+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439601672.000000\n" +"X-POOTLE-MTIME: 1442610985.000000\n" #: DocumentRenderer.src msgctxt "" @@ -104,7 +104,7 @@ "According to layout\n" "itemlist.text" msgid "According to layout" -msgstr "" +msgstr "Enligt layout" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sv/svx/source/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/sv/svx/source/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sv/svx/source/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sv/svx/source/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-05-11 16:12+0200\n" -"PO-Revision-Date: 2015-07-12 20:11+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-10 12:03+0000\n" +"Last-Translator: Niklas Johansson \n" "Language-Team: LANGUAGE \n" "Language: sv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1436731918.000000\n" +"X-POOTLE-MTIME: 1444478636.000000\n" #: bmpmask.src msgctxt "" @@ -6319,14 +6319,13 @@ msgstr "" #: ucsubset.src -#, fuzzy msgctxt "" "ucsubset.src\n" "RID_SUBSETMAP\n" "RID_SUBSETSTR_OLD_NORTH_ARABIAN\n" "string.text" msgid "Old North Arabian" -msgstr "Fornsydarabiska" +msgstr "Fornnordarabiska" #: ucsubset.src msgctxt "" @@ -6335,7 +6334,7 @@ "RID_SUBSETSTR_OLD_PERMIC\n" "string.text" msgid "Old Permic" -msgstr "" +msgstr "Fornpermiska" #: ucsubset.src msgctxt "" @@ -6344,7 +6343,7 @@ "RID_SUBSETSTR_ORNAMENTAL_DINGBATS\n" "string.text" msgid "Ornamental Dingbats" -msgstr "" +msgstr "Dingbats ornament" #: ucsubset.src msgctxt "" @@ -6353,7 +6352,7 @@ "RID_SUBSETSTR_PAHAWH_HMONG\n" "string.text" msgid "Pahawh Hmong" -msgstr "" +msgstr "Pahawh Hmong" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/sw-TZ/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/sw-TZ/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/sw-TZ/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/sw-TZ/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/basctl/uiconfig/basicide/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/basctl/uiconfig/basicide/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/basctl/uiconfig/basicide/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-13 21:25+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" +"PO-Revision-Date: 2015-09-20 04:01+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: none\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431552355.000000\n" +"X-POOTLE-MTIME: 1442721706.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -125,24 +125,22 @@ msgstr "เฎชเฎฏเฎฉเฎฐเฏ เฎฎเฏเฎ•เฎชเฏเฎชเฏ เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎฎเฏ†เฎพเฎดเฎฟเฎฏเฏˆ เฎ…เฎฎเฏˆ" #: defaultlanguage.ui -#, fuzzy msgctxt "" "defaultlanguage.ui\n" "defaultlabel\n" "label\n" "string.text" msgid "Default language:" -msgstr "เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎฎเฏ†เฎพเฎดเฎฟ" +msgstr "เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎฎเฏ†เฎพเฎดเฎฟ:" #: defaultlanguage.ui -#, fuzzy msgctxt "" "defaultlanguage.ui\n" "checkedlabel\n" "label\n" "string.text" msgid "Available languages:" -msgstr "เฎ‡เฎฐเฏเฎ•เฏเฎ•เฎฟเฎฉเฏเฎฑ เฎฎเฏ†เฎพเฎดเฎฟเฎ•เฎณเฏ" +msgstr "เฎ•เฎฟเฎŸเฏˆเฎ•เฏเฎ•เฏเฎฎเฏ เฎฎเฏ†เฎพเฎดเฎฟเฎ•เฎณเฏ:" #: defaultlanguage.ui msgctxt "" @@ -199,14 +197,13 @@ msgstr "เฎจเฏ€เฎ™เฏเฎ•เฎณเฏเฎคเฏ‡เฎฐเฏเฎจเฏเฎค เฎฎเฏŠเฎดเฎฟเฎ•เฎณเฎฟเฎฉเฏ เฎตเฎณเฎ™เฏเฎ•เฎณเฏˆ เฎ…เฎดเฎฟเฎ•เฏเฎ•เฏเฎฎเฏ เฎคเฎฐเฏเฎตเฎพเฎฏเฎฟเฎฒเฏ เฎ‰เฎณเฏเฎณเฏ€เฎฐเฏเฎ•เฎณเฏ. เฎคเฏ‡เฎฐเฏเฎจเฏเฎค เฎฎเฏŠเฎดเฎฟเฎ•เฎณเฏเฎ•เฏเฎ•เฎพเฎฉ เฎ…เฎฉเฏˆเฎคเฏเฎคเฏ เฎชเฎฏเฎฉเฎพเฎณเฎฐเฏเฎ•เฎณเฎฟเฎฉเฏ เฎชเฎฏเฎฉเฎฐเฏเฎฎเฏเฎ•เฎชเฏเฎชเฏ เฎšเฎฐเฎ™เฏเฎ•เฎณเฏ เฎ…เฎดเฎฟเฎ•เฏเฎ•เฎชเฏเฎชเฎŸเฏเฎฎเฏ." #: dialogpage.ui -#, fuzzy msgctxt "" "dialogpage.ui\n" "label1\n" "label\n" "string.text" msgid "Dialog:" -msgstr "เฎ‰เฎฐเฏˆเฎฏเฎพเฎŸเฎฒเฏ" +msgstr "เฎ‰เฎฐเฏˆเฎฏเฎพเฎŸเฎฒเฏ:" #: dialogpage.ui msgctxt "" @@ -281,24 +278,22 @@ msgstr "BASIC เฎจเฏ‚เฎฒเฎ•เฎฎเฎพเฎ• เฎเฎฑเฏเฎฑเฏเฎฎเฎคเฎฟเฎšเฏ†เฎฏเฏ" #: gotolinedialog.ui -#, fuzzy msgctxt "" "gotolinedialog.ui\n" "GotoLineDialog\n" "title\n" "string.text" msgid "Go to Line" -msgstr "เฎ•เฏ‹เฎŸเฏเฎŸเฏเฎ•เฏเฎ•เฏเฎšเฏ เฎšเฏ†เฎฒเฏ" +msgstr "เฎตเฎฐเฎฟเฎ•เฏเฎ•เฏเฎšเฏ เฎšเฏ†เฎฒเฏ" #: gotolinedialog.ui -#, fuzzy msgctxt "" "gotolinedialog.ui\n" "area\n" "label\n" "string.text" msgid "_Line number:" -msgstr "_เฎ•เฏ‹เฎŸเฏเฎŸเฏ เฎŽเฎฃเฏ:" +msgstr "เฎตเฎฐเฎฟ เฎŽเฎฃเฏ:" #: importlibdialog.ui msgctxt "" @@ -337,24 +332,22 @@ msgstr "เฎตเฎฟเฎฐเฏเฎชเฏเฎชเฎคเฏเฎคเฏ‡เฎฐเฏเฎตเฏ" #: libpage.ui -#, fuzzy msgctxt "" "libpage.ui\n" "label1\n" "label\n" "string.text" msgid "L_ocation:" -msgstr "เฎ‡เฎŸเฎฎเฏ" +msgstr "เฎ‡เฎŸเฎฎเฏ:" #: libpage.ui -#, fuzzy msgctxt "" "libpage.ui\n" "lingudictsft\n" "label\n" "string.text" msgid "_Library:" -msgstr "_เฎจเฏ‚เฎฒเฎ•เฎฎเฏ" +msgstr "_เฎจเฏ‚เฎฒเฎ•เฎฎเฏ:" #: libpage.ui msgctxt "" @@ -411,7 +404,6 @@ msgstr "เฎ‡เฎฏเฎ•เฏเฎ•เฎคเฏเฎคเฎฟเฎฒเฏเฎณเฏเฎณ" #: managebreakpoints.ui -#, fuzzy msgctxt "" "managebreakpoints.ui\n" "label2\n" @@ -439,14 +431,13 @@ msgstr "เฎชเฎฏเฎฉเฎฐเฏ เฎฎเฏเฎ•เฎชเฏเฎชเฏ เฎฎเฏŠเฎดเฎฟเฎ•เฎณเฏˆ เฎจเฎฟเฎฐเฏเฎตเฎ•เฎฟ [$1]" #: managelanguages.ui -#, fuzzy msgctxt "" "managelanguages.ui\n" "label1\n" "label\n" "string.text" msgid "Present languages:" -msgstr "เฎคเฎฑเฏเฎชเฏ‹เฎคเฏˆเฎฏ เฎฎเฏŠเฎดเฎฟเฎ•เฎณเฏ" +msgstr "เฎคเฎฑเฏเฎชเฏ‹เฎคเฏˆเฎฏ เฎฎเฏŠเฎดเฎฟเฎ•เฎณเฏ:" #: managelanguages.ui msgctxt "" @@ -476,14 +467,13 @@ msgstr "เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ" #: modulepage.ui -#, fuzzy msgctxt "" "modulepage.ui\n" "label1\n" "label\n" "string.text" msgid "M_odule:" -msgstr "เฎจเฎฟเฎฐเฎฒเฏเฎ•เฏ‚เฎฑเฏ" +msgstr "เฎจเฎฟเฎฐเฎฒเฏเฎ•เฏ‚เฎฑเฏ:" #: modulepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/connectivity/source/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/connectivity/source/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/connectivity/source/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/connectivity/source/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-01-08 09:03+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" +"PO-Revision-Date: 2015-09-20 04:03+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: LANGUAGE \n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420707819.000000\n" +"X-POOTLE-MTIME: 1442721813.000000\n" #: conn_error_message.src msgctxt "" @@ -1120,4 +1120,4 @@ "STR_ERROR_NEW_VERSION\n" "string.text" msgid "The connection could not be established. The database was created by a newer version of %PRODUCTNAME." -msgstr "" +msgstr "เฎ‡เฎฃเฏˆเฎชเฏเฎชเฏˆ เฎเฎฑเฏเฎชเฎŸเฏเฎคเฏเฎค เฎฎเฏเฎŸเฎฟเฎฏเฎตเฎฟเฎฒเฏเฎฒเฏˆ. %PRODUCTNAME เฎ‡เฎฉเฏ เฎชเฏเฎคเฏ เฎชเฎคเฎฟเฎชเฏเฎชเฎฟเฎฉเฎพเฎฒเฏ เฎคเฎฐเฎตเฏเฎคเฏเฎคเฎณเฎฎเฏ เฎ‰เฎฐเฏเฎตเฎพเฎ•เฏเฎ•เฎชเฏเฎชเฎŸเฏเฎŸเฏเฎณเฏเฎณเฎคเฏ." diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/cui/source/dialogs.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/cui/source/dialogs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/cui/source/dialogs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/cui/source/dialogs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-22 07:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-13 12:43+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: American English <>\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432278601.000000\n" +"X-POOTLE-MTIME: 1444740225.000000\n" #: cuires.src msgctxt "" @@ -103,7 +103,7 @@ "RID_SVXSTR_THOUSAND_SEP\n" "string.text" msgid "Thousands separator" -msgstr "" +msgstr "เฎ†เฎฏเฎฟเฎฐเฎชเฏ เฎชเฎฟเฎฐเฎฟเฎชเฏเฎชเฎฟ" #: cuires.src msgctxt "" @@ -111,7 +111,7 @@ "RID_SVXSTR_ENGINEERING\n" "string.text" msgid "Engineering notation" -msgstr "" +msgstr "เฎชเฏŠเฎฑเฎฟเฎฏเฎฟเฎฏเฎฒเฏ เฎ•เฏเฎฑเฎฟเฎชเฏเฎชเฏ" #: cuires.src msgctxt "" @@ -383,7 +383,7 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP\n" "string.text" msgid "Mail" -msgstr "" +msgstr "เฎ…เฎžเฏเฎšเฎฒเฏ" #: hyperdlg.src msgctxt "" @@ -391,7 +391,7 @@ "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP\n" "string.text" msgid "This is where you create a hyperlink to an e-mail address." -msgstr "" +msgstr "เฎ‡เฎ™เฏเฎ•เฏเฎคเฎพเฎฉเฏ เฎ’เฎฐเฏ เฎฎเฎฟเฎฉเฏเฎฉเฎžเฏเฎšเฎฒเฏเฎ•เฏเฎ•เฎพเฎฉ เฎฎเฏ€เฎคเฏเฎคเฏ†เฎพเฎŸเฏเฎชเฏเฎชเฏˆ เฎจเฏ€เฎ™เฏเฎ•เฎณเฏ เฎ‰เฎฐเฏเฎตเฎพเฎ•เฏเฎ• เฎตเฏ‡เฎฃเฏเฎŸเฏเฎฎเฏ." #: hyperdlg.src msgctxt "" @@ -487,7 +487,7 @@ "RID_SVXSTR_ADD_IMAGE\n" "string.text" msgid "Add Image" -msgstr "" +msgstr "เฎชเฎฟเฎฎเฏเฎชเฎคเฏเฎคเฏˆเฎšเฏ เฎšเฏ‡เฎฐเฏ" #: passwdomdlg.src msgctxt "" @@ -527,7 +527,7 @@ "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2\n" "string.text" msgid "Set the password by entering the same password in both boxes." -msgstr "" +msgstr "เฎ‡เฎฐเฏ เฎชเฏ†เฎŸเฏเฎŸเฎฟเฎ•เฎณเฎฟเฎฒเฏเฎฎเฏ เฎ’เฎฐเฏ‡ เฎ•เฎŸเฎตเฏเฎšเฏเฎšเฏŠเฎฒเฏเฎฒเฏˆ เฎ‰เฎณเฏเฎณเฎฟเฎŸเฏเฎŸเฏ เฎ•เฎŸเฎตเฏเฎšเฏเฎšเฏŠเฎฒเฏเฎฒเฏˆ เฎ…เฎฎเฏˆ." #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/cui/source/tabpages.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/cui/source/tabpages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/cui/source/tabpages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/cui/source/tabpages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-01-11 15:43+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" +"PO-Revision-Date: 2015-10-13 12:44+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420991038.000000\n" +"X-POOTLE-MTIME: 1444740261.000000\n" #: border.src msgctxt "" @@ -967,7 +967,7 @@ "RID_SVXSTR_CHARNAME_HIGHLIGHTING\n" "string.text" msgid "Highlighting Color" -msgstr "" +msgstr "เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฒเฏˆเฎชเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎฎเฏ เฎจเฎฟเฎฑเฎฎเฏ" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-06-16 13:46+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" +"PO-Revision-Date: 2015-10-13 12:45+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil <>\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1434462362.000000\n" +"X-POOTLE-MTIME: 1444740335.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -179,14 +179,13 @@ msgstr "%PRODUCTNAME เฎšเฏŠเฎฑเฏเฎšเฏ†เฎฏเฎฒเฎฟ, เฎตเฎฟเฎฐเฎฟเฎคเฎพเฎณเฏ, เฎตเฎดเฎ™เฏเฎ•เฎฒเฏ เฎชเฏ‹เฎฉเฏเฎฑเฎตเฎฑเฏเฎฑเฎฟเฎฑเฏเฎ•เฎพเฎฉ เฎ’เฎฐเฏ เฎจเฎตเฏ€เฎฉ, เฎชเฎฏเฎฉเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎตเฎคเฎฑเฏเฎ•เฏ เฎŽเฎณเฎฟเฎฏ, เฎ•เฎŸเฏเฎŸเฎฑเฏเฎฑ เฎ…เฎฒเฏเฎตเฎฒเฎ•เฎคเฏ เฎคเฏŠเฎ•เฏเฎชเฏเฎชเฏ เฎ†เฎ•เฏเฎฎเฏ." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "copyright\n" "label\n" "string.text" msgid "Copyright ยฉ 2000 - 2015 LibreOffice contributors." -msgstr "เฎชเฎคเฎฟเฎชเฏเฎชเฏเฎฐเฎฟเฎฎเฏˆ ยฉ 2000 - 2014 เฎฒเฎฟเฎชเฏเฎฐเฏ†เฎ“เฎชเฎฟเฎธเฏ เฎชเฎ™เฏเฎ•เฎณเฎฟเฎชเฏเฎชเฎพเฎณเฎฐเฏเฎ•เฎณเฏ." +msgstr "เฎชเฎคเฎฟเฎชเฏเฎชเฏเฎฐเฎฟเฎฎเฏˆ ยฉ 2000 - 2015 เฎฒเฎฟเฎชเฏเฎฐเฏ†เฎ“เฎชเฎฟเฎธเฏ เฎชเฎ™เฏเฎ•เฎณเฎฟเฎชเฏเฎชเฎพเฎณเฎฐเฏเฎ•เฎณเฏ." #: aboutdialog.ui msgctxt "" @@ -216,7 +215,6 @@ msgstr "เฎ‡เฎจเฏเฎค เฎตเฏ†เฎณเฎฟเฎฏเฏ€เฎŸเฏ %OOOVENDOR เฎ†เฎฒเฏ เฎตเฎดเฎ™เฏเฎ•เฎชเฏเฎชเฎŸเฏเฎŸเฎคเฏ." #: aboutdialog.ui -#, fuzzy msgctxt "" "aboutdialog.ui\n" "link\n" @@ -1225,7 +1223,6 @@ msgstr "เฎ’เฎณเฎฟเฎŠเฎŸเฏเฎฐเฏเฎตเฎฒเฏ:" #: backgroundpage.ui -#, fuzzy msgctxt "" "backgroundpage.ui\n" "background_label\n" @@ -3465,7 +3462,7 @@ "label\n" "string.text" msgid "Hex _#:" -msgstr "เฎชเฎคเฎฟเฎฉเฏเฎฉเฎฑเฏเฎฎ:" +msgstr "Hex _#:" #: colorpickerdialog.ui msgctxt "" @@ -9815,7 +9812,7 @@ "label\n" "string.text" msgid "_No compression" -msgstr "เฎ…เฎฎเฏเฎ•เฏเฎ•เฎฎเฏ เฎ‡เฎฒเฏเฎฒเฏˆ" +msgstr "_เฎ…เฎฎเฏเฎ•เฏเฎ•เฎฎเฏ เฎ‡เฎฒเฏเฎฒเฏˆ" #: optasianpage.ui msgctxt "" @@ -9824,7 +9821,7 @@ "label\n" "string.text" msgid "_Compress punctuation only" -msgstr "เฎจเฎฟเฎฑเฏเฎคเฏเฎค เฎ…เฎดเฏเฎคเฏเฎคเฎฟ เฎฎเฎŸเฏเฎŸเฏเฎฎเฏ‡" +msgstr "~เฎจเฎฟเฎฑเฏเฎคเฏเฎคเฎ•เฏเฎ•เฏเฎฑเฎฟเฎฏเฏˆ เฎฎเฎŸเฏเฎŸเฏเฎฎเฏ เฎ‡เฎฑเฏเฎ•เฏเฎ•เฏ" #: optasianpage.ui msgctxt "" @@ -9833,7 +9830,7 @@ "label\n" "string.text" msgid "Compress punctuation and Japanese Kana" -msgstr "เฎจเฎฟเฎฑเฏเฎคเฏเฎคเฎฑเฏเฎ•เฏเฎฑเฎฟเฎ•เฎณเฏˆเฎฏเฏเฎฎเฏ เฎšเฎชเฏเฎชเฎพเฎฉเฎฟเฎฏ เฎ•เฎพเฎฉเฎพเฎตเฏˆเฎฏเฏเฎฎเฏ เฎ…เฎฎเฏเฎ•เฏเฎ•เฏ" +msgstr "เฎจเฎฟเฎฑเฏเฎคเฏเฎคเฎฑเฏเฎ•เฏเฎฑเฎฟเฎฏเฏˆเฎฏเฏเฎฎเฏ เฎšเฎชเฏเฎชเฎพเฎฉเฎฟเฎฏ เฎ•เฎพเฎฉเฎพเฎตเฏˆเฎฏเฏเฎฎเฏ เฎ‡เฎฑเฏเฎ•เฏเฎ•เฏ" #: optasianpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/dbaccess/source/ext/macromigration.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/dbaccess/source/ext/macromigration.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/dbaccess/source/ext/macromigration.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-20 06:25+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-29 13:24+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421735100.000000\n" +"X-POOTLE-MTIME: 1443533088.000000\n" #: macromigration.src msgctxt "" @@ -80,7 +80,7 @@ "STR_OVERALL_PROGRESS\n" "string.text" msgid "document $current$ of $overall$" -msgstr "$overall$ เฎ‡เฎฒเฏ $current$ เฎ†เฎตเฎฃเฎฎเฏ" +msgstr "$overall$ เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฎฟเฎฒเฏ $current$ เฎตเฎคเฏ" #: macromigration.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/dbaccess/source/ui/dlg.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/dbaccess/source/ui/dlg.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/dbaccess/source/ui/dlg.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/dbaccess/source/ui/dlg.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-01-07 11:08+0100\n" -"PO-Revision-Date: 2015-01-20 06:44+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-17 18:41+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: American English <>\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421736276.000000\n" +"X-POOTLE-MTIME: 1445107262.000000\n" #: AutoControls.src msgctxt "" @@ -688,7 +688,7 @@ "Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n" "%PRODUCTNAME will open this file in read-only mode." msgstr "" -"เฎ’เฎฐเฏ %PRODUCTNAME เฎตเฎฟเฎฐเฎฟเฎคเฎพเฎณเฏ เฎ…เฎฒเฏเฎฒเฎคเฏ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ เฎชเฎฃเฎฟเฎชเฏเฎคเฏเฎคเฎ•เฎคเฏเฎคเฏˆเฎคเฏ เฎคเฏ‡เฎฐเฏเฎจเฏเฎคเฏ†เฎŸเฏเฎ•เฏเฎ• 'เฎ‰เฎฒเฎพเฎตเฏ...' เฎŽเฎฉเฏเฎชเฎคเฏˆเฎšเฏ เฎšเฏŠเฎŸเฏเฎ•เฏเฎ•เฏ.\n" +"เฎ’เฎฐเฏ %PRODUCTNAME เฎตเฎฟเฎฐเฎฟเฎคเฎพเฎณเฏ เฎ…เฎฒเฏเฎฒเฎคเฏ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ เฎชเฎฃเฎฟเฎชเฏเฎคเฏเฎคเฎ•เฎคเฏเฎคเฏˆเฎคเฏ เฎคเฏ‡เฎฐเฏเฎจเฏเฎคเฏ†เฎŸเฏเฎ•เฏเฎ• 'เฎ‰เฎฒเฎพเฎตเฏ...' เฎŽเฎฉเฏเฎชเฎคเฏˆเฎšเฏ เฎšเฏŠเฎŸเฏเฎ•เฏเฎ•เฏ.\n" "เฎ‡เฎ•เฏเฎ•เฏ‹เฎชเฏเฎชเฎฟเฎฉเฏˆ %PRODUCTNAME เฎตเฎพเฎšเฎฟเฎ•เฏเฎ•-เฎฎเฎŸเฏเฎŸเฏเฎฎเฎพเฎฉ เฎฎเฏเฎฑเฏˆเฎฎเฏˆเฎฏเฎฟเฎฒเฏ เฎคเฎฟเฎฑเฎ•เฏเฎ•เฏเฎฎเฏ." #: dbadminsetup.src diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-15 00:48+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" "Language-Team: LANGUAGE \n" "Language: ta\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/filter/source/config/fragments/filters.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/filter/source/config/fragments/filters.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/filter/source/config/fragments/filters.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/filter/source/config/fragments/filters.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-05-13 21:45+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-17 18:46+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: American English \n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431553558.000000\n" +"X-POOTLE-MTIME: 1445107563.000000\n" #: AbiWord.xcu msgctxt "" @@ -392,7 +392,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2003 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2003 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2003 XML" #: MS_Excel_4_0.xcu msgctxt "" @@ -401,7 +401,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 4.0" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 4.0" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 4.0" #: MS_Excel_4_0_Vorlage_Template.xcu msgctxt "" @@ -419,7 +419,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 5.0" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 5.0" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 5.0" #: MS_Excel_5_0_95_Vorlage_Template.xcu msgctxt "" @@ -437,7 +437,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 95" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 95" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 95" #: MS_Excel_95_Vorlage_Template.xcu msgctxt "" @@ -446,7 +446,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 95 Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 95 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 95 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_Excel_97.xcu msgctxt "" @@ -458,44 +458,40 @@ msgstr "" #: MS_Excel_97_Vorlage_Template.xcu -#, fuzzy msgctxt "" "MS_Excel_97_Vorlage_Template.xcu\n" "MS Excel 97 Vorlage/Template\n" "UIName\n" "value.text" msgid "Microsoft Excel 97-2003 Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 95 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 97-2003 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_PowerPoint_97.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_97.xcu\n" "MS PowerPoint 97\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 97-2003" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฏเฎฃเฏเฎŸเฏ 97/2000/XP/2003" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ 97-2003" #: MS_PowerPoint_97_AutoPlay.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_97_AutoPlay.xcu\n" "MS PowerPoint 97 AutoPlay\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 97-2003 AutoPlay" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฏเฎฃเฏเฎŸเฏ 97/2000/XP/2003 เฎคเฎพเฎฉเฎฟเฎฏเฏ‹เฎŸเฏเฎŸเฎฎเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ 97-2003 เฎคเฎพเฎฉเฎฟเฎฏเฏ‹เฎŸเฏเฎŸเฎฎเฏ" #: MS_PowerPoint_97_Vorlage.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_97_Vorlage.xcu\n" "MS PowerPoint 97 Vorlage\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 97-2003 Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฏเฎฃเฏเฎŸเฏ 97/2000/XP/2003 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ 97-2003 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_WinWord_5.xcu msgctxt "" @@ -504,7 +500,7 @@ "UIName\n" "value.text" msgid "Microsoft WinWord 1/2/5" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎตเฏ‡เฎฐเฏเฎŸเฏ 1/2/5" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎตเฏ‡เฎฐเฏเฎŸเฏ 1/2/5" #: MS_WinWord_6_0.xcu msgctxt "" @@ -513,7 +509,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 6.0" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 6.0" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 6.0" #: MS_Word_2003_XML.xcu msgctxt "" @@ -522,27 +518,25 @@ "UIName\n" "value.text" msgid "Microsoft Word 2003 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2003 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2003 XML" #: MS_Word_2007_XML.xcu -#, fuzzy msgctxt "" "MS_Word_2007_XML.xcu\n" "MS Word 2007 XML\n" "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2003 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2007-2013 XML" #: MS_Word_2007_XML_Template.xcu -#, fuzzy msgctxt "" "MS_Word_2007_XML_Template.xcu\n" "MS Word 2007 XML Template\n" "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2007/2010/2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2007-2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_Word_95.xcu msgctxt "" @@ -551,7 +545,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 95" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 95" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 95" #: MS_Word_95_Vorlage.xcu msgctxt "" @@ -560,7 +554,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 95 Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 95 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 95 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_Word_97.xcu msgctxt "" @@ -572,14 +566,13 @@ msgstr "" #: MS_Word_97_Vorlage.xcu -#, fuzzy msgctxt "" "MS_Word_97_Vorlage.xcu\n" "MS Word 97 Vorlage\n" "UIName\n" "value.text" msgid "Microsoft Word 97-2003 Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 95 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 97-2003 เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_Works.xcu msgctxt "" @@ -588,7 +581,7 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎ•เฏเฎธเฏ เฎ†เฎตเฎฃเฎฎเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎ•เฏเฎธเฏ เฎ†เฎตเฎฃเฎฎเฏ" #: MS_Works_Calc.xcu msgctxt "" @@ -597,7 +590,7 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎ•เฏเฎธเฏ เฎ†เฎตเฎฃเฎฎเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎ•เฏเฎธเฏ เฎ†เฎตเฎฃเฎฎเฏ" #: MacDoc.xcu msgctxt "" @@ -894,7 +887,7 @@ "UIName\n" "value.text" msgid "Microsoft Publisher 98-2010" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎชเฏเฎฒเฎฟเฎทเฎฐเฏ 98-2010" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎชเฏเฎฒเฎฟเฎทเฎฐเฏ 98-2010" #: QPro.xcu msgctxt "" @@ -1209,7 +1202,7 @@ "UIName\n" "value.text" msgid "Microsoft Visio 2000-2013" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎฟเฎšเฎฟเฎฏเฏ‡เฎพ 2000-2013" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎฟเฎšเฎฟเฎฏเฏ‡เฎพ 2000-2013" #: WMF___MS_Windows_Metafile.xcu msgctxt "" @@ -1335,27 +1328,25 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007 Binary" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007 เฎ‡เฎฐเฏเฎฎเฏˆเฎ•เฏเฎ•เฏ‚เฎŸเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007 เฎ‡เฎฐเฏเฎฎเฏˆเฎ•เฏเฎ•เฏ‚เฎŸเฏ" #: calc_MS_Excel_2007_XML.xcu -#, fuzzy msgctxt "" "calc_MS_Excel_2007_XML.xcu\n" "Calc MS Excel 2007 XML\n" "UIName\n" "value.text" msgid "Microsoft Excel 2007-2013 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2003 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007-2013 XML" #: calc_MS_Excel_2007_XML_Template.xcu -#, fuzzy msgctxt "" "calc_MS_Excel_2007_XML_Template.xcu\n" "Calc MS Excel 2007 XML Template\n" "UIName\n" "value.text" msgid "Microsoft Excel 2007-2013 XML Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007/2010/2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007-2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: calc_OOXML.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/filter/source/config/fragments/types.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/filter/source/config/fragments/types.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/filter/source/config/fragments/types.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/filter/source/config/fragments/types.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-13 21:46+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" +"PO-Revision-Date: 2015-10-17 18:47+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: LANGUAGE \n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431553562.000000\n" +"X-POOTLE-MTIME: 1445107656.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -36,44 +36,40 @@ msgstr "เฎฎเฏˆเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2003 XML" #: MS_Excel_2007_XML_Template.xcu -#, fuzzy msgctxt "" "MS_Excel_2007_XML_Template.xcu\n" "MS Excel 2007 XML Template\n" "UIName\n" "value.text" msgid "Microsoft Excel 2007-2013 XML Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007/2010/2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ 2007-2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: MS_PowerPoint_2007_XML.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_2007_XML.xcu\n" "MS PowerPoint 2007 XML\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 2007-2013 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฏŠเฎฏเฏเฎฃเฏเฎŸเฏ 2007/2010/2013 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ 2007-2013 XML" #: MS_PowerPoint_2007_XML_AutoPlay.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_2007_XML_AutoPlay.xcu\n" "MS PowerPoint 2007 XML AutoPlay\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 2007-2013 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฏŠเฎฏเฏเฎฃเฏเฎŸเฏ 2007/2010/2013 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ 2007-2013 XML" #: MS_PowerPoint_2007_XML_Template.xcu -#, fuzzy msgctxt "" "MS_PowerPoint_2007_XML_Template.xcu\n" "MS PowerPoint 2007 XML Template\n" "UIName\n" "value.text" msgid "Microsoft PowerPoint 2007-2013 XML Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฏŠเฎฏเฏเฎฃเฏเฎŸเฏ 2007/2010/2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ 2007-2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: StarBase.xcu msgctxt "" @@ -262,27 +258,25 @@ "UIName\n" "value.text" msgid "Microsoft Word 2003 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2003 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2003 XML" #: writer_MS_Word_2007_XML.xcu -#, fuzzy msgctxt "" "writer_MS_Word_2007_XML.xcu\n" "writer_MS_Word_2007\n" "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2003 XML" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2007-2013 XML" #: writer_MS_Word_2007_XML_Template.xcu -#, fuzzy msgctxt "" "writer_MS_Word_2007_XML_Template.xcu\n" "writer_MS_Word_2007_Template\n" "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML Template" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2007/2010/2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 2007-2013 XML เฎตเฎพเฎฐเฏเฎชเฏเฎชเฏเฎฐเฏ" #: writer_ODT_FlatXML.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/filter/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/filter/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/filter/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/filter/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-01-20 17:11+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ \n" +"PO-Revision-Date: 2015-10-04 15:37+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil <>\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421773881.000000\n" +"X-POOTLE-MTIME: 1443973065.000000\n" #: impswfdialog.ui msgctxt "" @@ -225,7 +225,7 @@ "label\n" "string.text" msgid "_Lossless compression" -msgstr "เฎ‡เฎดเฎชเฏเฎชเฎฟเฎฒเฏเฎฒเฎพ เฎšเฏเฎฐเฏเฎ•เฏเฎ•เฎฎเฏ" +msgstr "เฎ‡เฎดเฎชเฏเฎชเฎฟเฎฒเฏเฎฒเฎพ เฎ…เฎฎเฏเฎ•เฏเฎ•เฎฎเฏ" #: pdfgeneralpage.ui msgctxt "" @@ -234,7 +234,7 @@ "label\n" "string.text" msgid "_JPEG compression" -msgstr "JPEG เฎšเฏเฎฐเฏเฎ•เฏเฎ•เฎฎเฏ" +msgstr "_JPEG เฎ…เฎฎเฏเฎ•เฏเฎ•เฎฎเฏ" #: pdfgeneralpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2014-08-01 19:44+0000\n" -"Last-Translator: Elanjelian \n" +"PO-Revision-Date: 2015-10-17 18:47+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil <>\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1406922259.000000\n" +"X-POOTLE-MTIME: 1445107670.000000\n" #: ActionTe.ulf msgctxt "" @@ -2622,7 +2622,7 @@ "OOO_CONTROL_273\n" "LngText.text" msgid "Microsoft &Visio Documents" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ &เฎตเฎฟเฎทเฎฟเฎฏเฏ‹ เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ &เฎตเฎฟเฎšเฎฟเฎฏเฏ‹ เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏ" #: Control.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-15 01:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-17 18:48+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil <>\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439601050.000000\n" +"X-POOTLE-MTIME: 1445107700.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -7924,7 +7924,7 @@ "Label\n" "value.text" msgid "E-mail as ~Microsoft PowerPoint Presentation..." -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฏŠเฎฏเฏเฎฃเฏเฎŸเฏ เฎตเฎดเฎ™เฏเฎ•เฎฒเฎพเฎ• เฎ…เฎžเฏเฎšเฎฒเฎฉเฏเฎชเฏเฎชเฏ..." +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎตเฎฐเฏเฎชเฎพเฎฏเฎฟเฎฃเฏเฎŸเฏ เฎตเฎดเฎ™เฏเฎ•เฎฒเฎพเฎ• เฎ…เฎžเฏเฎšเฎฒเฎฉเฏเฎชเฏเฎชเฏ..." #: DrawImpressCommands.xcu msgctxt "" @@ -19515,7 +19515,7 @@ "Label\n" "value.text" msgid "E-mail as ~Microsoft Format..." -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎŸเฎฟเฎตเฏ‚เฎŸเฏเฎŸเฎคเฏเฎคเฎฟเฎฒเฏ เฎ…เฎžเฏเฎšเฎฒเฎฉเฏเฎชเฏเฎชเฏ..." +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎŸเฎฟเฎตเฏ‚เฎŸเฏเฎŸเฎคเฏเฎคเฎฟเฎฒเฏ เฎ…เฎžเฏเฎšเฎฒเฎฉเฏเฎชเฏเฎชเฏ..." #: GenericCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/officecfg/registry/data/org/openoffice/Office.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-08-06 22:51+0200\n" -"PO-Revision-Date: 2015-05-13 21:48+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-17 18:48+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: Tamil <>\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431553688.000000\n" +"X-POOTLE-MTIME: 1445107684.000000\n" #: Addons.xcu msgctxt "" @@ -11609,7 +11609,7 @@ "DisplayName\n" "value.text" msgid "Microsoft Word 6.0 / 95" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 6.0 / 95" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฏ‡เฎฐเฏเฎŸเฏ 6.0 / 95" #: UI.xcu msgctxt "" @@ -12104,7 +12104,7 @@ "Name\n" "value.text" msgid "Microsoft Office documents" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎ†เฎชเฎฟเฎธเฏ เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎ†เฎชเฎฟเฎธเฏ เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏ" #: WebWizard.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/readlicense_oo/docs.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/readlicense_oo/docs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/readlicense_oo/docs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/readlicense_oo/docs.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-13 05:03+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ Arun Kumar \n" +"PO-Revision-Date: 2015-10-17 18:49+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: American English <>\n" "Language: ta\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1442120585.000000\n" +"X-POOTLE-MTIME: 1445107787.000000\n" #: readme.xrm msgctxt "" @@ -126,7 +126,7 @@ "s2s3sdf21\n" "readmeitem.text" msgid "Microsoft Windows XP SP2, Vista, Windows 7, or Windows 8" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎธเฏ เฎŽเฎ•เฏเฎธเฏเฎชเฎฟ, เฎตเฎฟเฎทเฏเฎŸเฎพ, เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎธเฏ 7 เฎ…เฎฒเฏเฎฒเฎคเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎธเฏ 8" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎšเฏ XP SP2, เฎตเฎฟเฎธเฏเฎŸเฏเฎŸเฎพ, เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎšเฏ 7 เฎ…เฎฒเฏเฎฒเฎคเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎšเฏ 8" #: readme.xrm msgctxt "" @@ -150,7 +150,7 @@ "MSOReg2\n" "readmeitem.text" msgid "REGISTER_ALL_MSO_TYPES=1 will force registration of ${PRODUCTNAME} as default application for Microsoft Office formats." -msgstr "REGISTER_ALL_MSO_TYPES=1 ${PRODUCTNAME} เฎ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎ“เฎชเฎฟเฎธเฏ เฎตเฎŸเฎฟเฎตเฏ‚เฎŸเฏเฎŸเฎ™เฏเฎ•เฎณเฏเฎ•เฏเฎ•เฎพเฎฉ เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎชเฎฏเฎฉเฏเฎชเฎพเฎŸเฎพเฎ•เฎชเฏ เฎชเฎคเฎฟเฎตเฏ เฎšเฏ†เฎฏเฏเฎฏเฎ•เฏ เฎ•เฎŸเฏเฎŸเฎพเฎฏเฎชเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎฎเฏ." +msgstr "REGISTER_ALL_MSO_TYPES=1 ${PRODUCTNAME} เฎ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎ“เฎชเฎฟเฎธเฏ เฎตเฎŸเฎฟเฎตเฏ‚เฎŸเฏเฎŸเฎ™เฏเฎ•เฎณเฏเฎ•เฏเฎ•เฎพเฎฉ เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎชเฎฏเฎฉเฏเฎชเฎพเฎŸเฎพเฎ•เฎชเฏ เฎชเฎคเฎฟเฎตเฏ เฎšเฏ†เฎฏเฏเฎฏเฎ•เฏ เฎ•เฎŸเฏเฎŸเฎพเฎฏเฎชเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎฎเฏ." #: readme.xrm msgctxt "" @@ -158,7 +158,7 @@ "MSOReg3\n" "readmeitem.text" msgid "REGISTER_NO_MSO_TYPES=1 will suppress registration of ${PRODUCTNAME} as default application for Microsoft Office formats." -msgstr "REGISTER_NO_MSO_TYPES=1 ${PRODUCTNAME} เฎ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎ“เฎชเฎฟเฎธเฏ เฎตเฎŸเฎฟเฎตเฏ‚เฎŸเฏเฎŸเฎ™เฏเฎ•เฎณเฏเฎ•เฏเฎ•เฎพเฎฉ เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎชเฎฏเฎฉเฏเฎชเฎพเฎŸเฎพเฎ•เฎชเฏ เฎชเฎคเฎฟเฎตเฏ เฎšเฏ†เฎฏเฏเฎตเฎคเฏˆเฎคเฏ เฎคเฎŸเฏเฎ•เฏเฎ•เฏเฎฎเฏ." +msgstr "REGISTER_NO_MSO_TYPES=1 ${PRODUCTNAME} เฎ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎ“เฎชเฎฟเฎธเฏ เฎตเฎŸเฎฟเฎตเฏ‚เฎŸเฏเฎŸเฎ™เฏเฎ•เฎณเฏเฎ•เฏเฎ•เฎพเฎฉ เฎฎเฏเฎฉเฏเฎฉเฎฟเฎฐเฏเฎชเฏเฎชเฏ เฎชเฎฏเฎฉเฏเฎชเฎพเฎŸเฎพเฎ•เฎชเฏ เฎชเฎคเฎฟเฎตเฏ เฎšเฏ†เฎฏเฏเฎตเฎคเฏˆเฎคเฏ เฎคเฎŸเฏเฎ•เฏเฎ•เฏเฎฎเฏ." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/scp2/source/activex.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/scp2/source/activex.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/scp2/source/activex.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/scp2/source/activex.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-04-06 02:29+0200\n" -"Last-Translator: ifelix25 \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-17 18:50+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: LANGUAGE \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1445107816.000000\n" #: module_activex.ulf msgctxt "" @@ -29,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "Component to enable Microsoft Internet Explorer to display %PRODUCTNAME documents." -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎ‡เฎฃเฏเฎŸเฎฐเฏเฎจเฏ†เฎŸเฏ เฎŽเฎ•เฏเฎธเฏเฎชเฏเฎณเฏ‹เฎฐเฎฐเฎฟเฎฒเฏ %PRODUCTNAME เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏˆ เฎ•เฎพเฎŸเฏเฎŸ เฎšเฏ†เฎฏเฏเฎฏ เฎšเฏ†เฎฏเฎฒเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎฎเฏ เฎ•เฏ‚เฎฑเฏเฎ•เฎณเฏ." +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎ‡เฎฃเฏเฎŸเฎฐเฏเฎจเฏ†เฎŸเฏ เฎŽเฎ•เฏเฎธเฏเฎชเฏเฎณเฏ‹เฎฐเฎฐเฎฟเฎฒเฏ %PRODUCTNAME เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏˆเฎ•เฏ เฎ•เฎพเฎŸเฏเฎŸเฎšเฏ เฎšเฏ†เฎฏเฏเฎฏ เฎšเฏ†เฎฏเฎฒเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎฎเฏ เฎ•เฏ‚เฎฑเฏเฎ•เฎณเฏ." diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/scp2/source/draw.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/scp2/source/draw.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/scp2/source/draw.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/scp2/source/draw.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:05+0200\n" -"PO-Revision-Date: 2014-07-20 08:12+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-17 18:50+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: American English \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1405843934.000000\n" +"X-POOTLE-MTIME: 1445107848.000000\n" #: folderitem_draw.ulf msgctxt "" @@ -142,7 +142,7 @@ "STR_REG_VAL_MS_PUBLISHER_DOCUMENT\n" "LngText.text" msgid "Microsoft Publisher Document" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎชเฎคเฎฟเฎชเฏเฎชเฎพเฎณเฎฐเฏ เฎ†เฎตเฎฃเฎฎเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎชเฎชเฏเฎฒเฎฟเฎทเฎฐเฏ เฎ†เฎตเฎฃเฎฎเฏ" #: registryitem_draw.ulf msgctxt "" @@ -198,7 +198,7 @@ "STR_REG_VAL_MS_WINDOWS_METAFILE\n" "LngText.text" msgid "Microsoft Windows Metafile" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎธเฏ เฎฎเฏ€เฎ•เฏ‹เฎชเฏเฎชเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎšเฏ เฎฎเฏ€เฎ•เฏ‹เฎชเฏเฎชเฏ" #: registryitem_draw.ulf msgctxt "" @@ -206,7 +206,7 @@ "STR_REG_VAL_MS_WINDOWS_BITMAP\n" "LngText.text" msgid "Microsoft Windows Bitmap File" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎธเฏ เฎชเฎฟเฎŸเฏเฎŸเฏเฎชเฎŸเฎ•เฏ เฎ•เฏ‡เฎพเฎชเฏเฎชเฏ" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‡เฎพเฎšเฏ เฎชเฎฟเฎŸเฏเฎŸเฏเฎชเฎŸเฎ•เฏ เฎ•เฏ‡เฎพเฎชเฏเฎชเฏ" #: registryitem_draw.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/scp2/source/winexplorerext.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/scp2/source/winexplorerext.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/scp2/source/winexplorerext.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/scp2/source/winexplorerext.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:05+0200\n" -"PO-Revision-Date: 2014-07-04 00:53+0000\n" -"Last-Translator: Elanjelian \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-17 18:51+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: LANGUAGE \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1404435202.000000\n" +"X-POOTLE-MTIME: 1445107863.000000\n" #: module_winexplorerext.ulf msgctxt "" @@ -30,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n" "LngText.text" msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews." -msgstr "เฎ•เฏเฎฑเฏเฎฎเฏเฎชเฎŸ เฎฎเฏเฎฉเฏเฎฉเฏ‹เฎŸเฏเฎŸเฎ™เฏเฎ•เฎณเฏ เฎชเฏ‹เฎฉเฏเฎฑ %PRODUCTNAME เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏˆเฎชเฏ เฎชเฎฑเฏเฎฑเฎฟเฎฏ เฎตเฎฟเฎตเฎฐเฎ™เฏเฎ•เฎณเฏˆเฎ•เฏ เฎ•เฎพเฎŸเฏเฎŸ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‹เฎธเฏ เฎŽเฎ•เฏเฎธเฏเฎชเฏเฎณเฏ‹เฎฐเฎฐเฏˆ เฎšเฏ†เฎฏเฎฒเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎ•เฎฟเฎฑเฎคเฏ." +msgstr "เฎ•เฏเฎฑเฏเฎฎเฏเฎชเฎŸ เฎฎเฏเฎฉเฏเฎฉเฏ‹เฎŸเฏเฎŸเฎ™เฏเฎ•เฎณเฏ เฎชเฏ‹เฎฉเฏเฎฑ %PRODUCTNAME เฎ†เฎตเฎฃเฎ™เฏเฎ•เฎณเฏˆเฎชเฏ เฎชเฎฑเฏเฎฑเฎฟเฎฏ เฎตเฎฟเฎตเฎฐเฎ™เฏเฎ•เฎณเฏˆเฎ•เฏ เฎ•เฎพเฎŸเฏเฎŸ เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎตเฎฟเฎฃเฏเฎŸเฏ‹เฎšเฏ เฎŽเฎ•เฏเฎธเฏเฎชเฏเฎณเฏ‹เฎฐเฎฐเฏˆ เฎšเฏ†เฎฏเฎฒเฏเฎชเฎŸเฏเฎคเฏเฎคเฏเฎ•เฎฟเฎฑเฎคเฏ." diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ta/sw/source/ui/dbui.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/sw/source/ui/dbui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ta/sw/source/ui/dbui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ta/sw/source/ui/dbui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-22 05:55+0000\n" -"Last-Translator: เฎ…เฎฐเฏเฎฃเฏ เฎ•เฏเฎฎเฎพเฎฐเฏ \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-17 18:51+0000\n" +"Last-Translator: เฎตเฏ‡. เฎ‡เฎณเฎžเฏเฎšเฏ†เฎดเฎฟเฎฏเฎฉเฏ (Ve. Elanjelian) \n" "Language-Team: American English \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1421906141.000000\n" +"X-POOTLE-MTIME: 1445107871.000000\n" #: dbui.src msgctxt "" @@ -196,7 +196,7 @@ "STR_FILTER_XLS\n" "string.text" msgid "Microsoft Excel (*.xls)" -msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎƒเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎธเฎฒเฏ (*.xls)" +msgstr "เฎฎเฏˆเฎ•เฏเฎฐเฏ‹เฎšเฎพเฎชเฏเฎŸเฏ เฎŽเฎ•เฏเฎšเฏ†เฎฒเฏ (*.xls)" #: dbui.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/te/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/te/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/te/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/te/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/te/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/te/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/te/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/te/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/tg/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/tg/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/tg/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/tg/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/th/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/th/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/th/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/th/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.000000000 +0000 @@ -5,7 +5,7 @@ "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-09-02 14:42+0200\n" "PO-Revision-Date: 2015-08-15 01:17+0000\n" -"Last-Translator: system user <>\n" +"Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" "Language: th\n" "MIME-Version: 1.0\n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/th/readlicense_oo/docs.po libreoffice-l10n-5.0.3~rc2/translations/source/th/readlicense_oo/docs.po --- libreoffice-l10n-5.0.2~rc2/translations/source/th/readlicense_oo/docs.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/th/readlicense_oo/docs.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2015-01-10 08:35+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-18 07:41+0000\n" "Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" "Language: th\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1420878923.000000\n" +"X-POOTLE-MTIME: 1442562084.000000\n" #: readme.xrm msgctxt "" @@ -647,7 +647,7 @@ "pji76w1\n" "readmeitem.text" msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit http://www.microsoft.com to search the Microsoft Knowledge Base for \"mapi dll\"." -msgstr "เน€เธกเธทเนˆเธญเธชเนˆเธ‡เน€เธญเธเธชเธฒเธฃเธœเนˆเธฒเธ™เธ—เธฒเธ‡ 'เนเธŸเน‰เธก - เธชเนˆเธ‡ - เน€เธญเธเธชเธฒเธฃเน€เธ›เน‡เธ™เธญเธตเน€เธกเธฅ' เธซเธฃเธทเธญ 'เธเธฒเธฃเนเธ™เธšเน€เธญเธเธชเธฒเธฃ PDF' เธ›เธฑเธเธซเธฒเธˆเธฐเน€เธเธดเธ”เธ‚เธถเน‰เธ™ (เน‚เธ›เธฃเนเธเธฃเธกเธˆเธฐเธฅเน‰เธกเน€เธซเธฅเธงเธซเธฃเธทเธญเธซเธขเธธเธ”เธ—เธณเธ‡เธฒเธ™เธเธฃเธฐเธ—เธฑเธ™เธซเธฑเธ™) เธ›เธฑเธเธซเธฒเธ™เธตเน‰เน€เธเธดเธ”เธ‚เธถเน‰เธ™เธˆเธฒเธเนเธŸเน‰เธกเธฃเธฐเธšเธšเธงเธดเธ™เน‚เธ”เธชเธงเนŒ \"Mapi\" (เธ‚เน‰เธญเธ„เธงเธฒเธกเนเธญเธžเธžเธฅเธดเน€เธ„เธŠเธฑเธ™เน‚เธ›เธฃเนเธเธฃเธกเธญเธดเธ™เน€เธ—เธญเธฃเนŒเน€เธŸเธ‹) เธ‹เธถเนˆเธ‡เน€เธเธดเธ”เธ›เธฑเธเธซเธฒเน€เธžเธฃเธฒเธฐเนเธŸเน‰เธกเธšเธฒเธ‡เน€เธงเธญเธฃเนŒเธŠเธฑเธ™ เน‚เธŠเธ„เน„เธกเนˆเธ”เธตเธ—เธตเนˆ, เธ›เธฑเธเธซเธฒเน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เธˆเธณเธเธฑเธ”เนƒเธซเน‰เนเธ„เธšเธฅเธ‡เธงเนˆเธฒเน€เธ›เน‡เธ™เธซเธกเธฒเธขเน€เธฅเธ‚เน€เธงเธญเธฃเนŒเธŠเธฑเธ™เนƒเธ” เธชเธณเธซเธฃเธฑเธšเธ‚เน‰เธญเธกเธนเธฅเน€เธžเธดเนˆเธกเน€เธ•เธดเธกเน‚เธ›เธฃเธ”เน€เธ‚เน‰เธฒเน„เธ›เธ—เธตเนˆ http://www.microsoft.com เนƒเธ™เธเธฒเธฃเธ„เน‰เธ™เธซเธฒเธ‚เน‰เธญเธกเธนเธฅเธ„เธงเธฒเธกเธฃเธนเน‰เธžเธทเน‰เธ™เธเธฒเธ™เน„เธกเน‚เธ„เธฃเธ‹เธญเธŸเธ—เนŒเธชเธณเธซเธฃเธฑเธš \"mapi.dll\" " +msgstr "เน€เธกเธทเนˆเธญเธชเนˆเธ‡เน€เธญเธเธชเธฒเธฃเธœเนˆเธฒเธ™เธ—เธฒเธ‡ 'เนเธŸเน‰เธก - เธชเนˆเธ‡ - เน€เธญเธเธชเธฒเธฃเน€เธ›เน‡เธ™เธญเธตเน€เธกเธฅ' เธซเธฃเธทเธญ 'เน€เธ›เน‡เธ™เน€เธญเธเธชเธฒเธฃเนเธ™เธš PDF' เธ›เธฑเธเธซเธฒเธญเธฒเธˆเธˆเธฐเน€เธเธดเธ”เธ‚เธถเน‰เธ™ (เน‚เธ›เธฃเนเธเธฃเธกเธฅเน‰เธกเน€เธซเธฅเธงเธซเธฃเธทเธญเธซเธขเธธเธ”เธ—เธณเธ‡เธฒเธ™เธเธฃเธฐเธ—เธฑเธ™เธซเธฑเธ™) เธ›เธฑเธเธซเธฒเธ™เธตเน‰เน€เธเธดเธ”เธ‚เธถเน‰เธ™เธˆเธฒเธเนเธŸเน‰เธกเธฃเธฐเธšเธšเธงเธดเธ™เน‚เธ”เธงเธชเนŒ \"Mapi\" (Messaging Application Programming Interface - เธชเนˆเธงเธ™เธ•เนˆเธญเธ›เธฃเธฐเธชเธฒเธ™เน‚เธ›เธฃเนเธเธฃเธกเธ›เธฃเธฐเธขเธธเธเธ•เนŒเธ”เน‰เธฒเธ™เธฃเธฑเธšเธชเนˆเธ‡เธ‚เน‰เธญเธ„เธงเธฒเธก) เธ‹เธถเนˆเธ‡เน€เธเธดเธ”เธ›เธฑเธเธซเธฒเธเธฑเธšเนเธŸเน‰เธกเธšเธฒเธ‡เน€เธงเธญเธฃเนŒเธŠเธฑเธ™ เน‚เธŠเธ„เน„เธกเนˆเธ”เธตเธ—เธตเนˆเน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เธˆเธณเธเธฑเธ”เธ›เธฑเธเธซเธฒเนƒเธซเน‰เนเธ„เธšเธฅเธ‡เธงเนˆเธฒเน€เธ›เน‡เธ™เธซเธกเธฒเธขเน€เธฅเธ‚เน€เธงเธญเธฃเนŒเธŠเธฑเธ™เนƒเธ” เธชเธณเธซเธฃเธฑเธšเธ‚เน‰เธญเธกเธนเธฅเน€เธžเธดเนˆเธกเน€เธ•เธดเธกเน‚เธ›เธฃเธ”เน€เธ‚เน‰เธฒเน„เธ›เธ—เธตเนˆ http://www.microsoft.com เน€เธžเธทเนˆเธญเธ„เน‰เธ™เธซเธฒ \"mapi.dll\" เนƒเธ™เธเธฒเธ™เธ„เธงเธฒเธกเธฃเธนเน‰เน„เธกเน‚เธ„เธฃเธ‹เธญเธŸเธ—เนŒ" #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/th/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/th/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/th/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/th/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-05-02 00:06+0200\n" -"PO-Revision-Date: 2014-09-28 11:42+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-18 08:05+0000\n" "Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" "Language: th\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.5.1\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1411904568.000000\n" +"X-POOTLE-MTIME: 1442563546.000000\n" #: analysis.src msgctxt "" @@ -4703,7 +4703,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd first period" -msgstr "เธชเนˆเธ‡เธเธฅเธฑเธšเธฃเธฒเธ„เธฒเธ•เนˆเธญ 100 เธซเธ™เนˆเธงเธขเน€เธ‡เธดเธ™ เธ‚เธญเธ‡เน€เธ‡เธดเธ™เธ›เธฃเธฐเธเธฑเธ™เธ”เน‰เธงเธขเธ‡เธงเธ”เนเธฃเธเธ„เธตเนˆ" +msgstr "เธชเนˆเธ‡เธเธฅเธฑเธšเธฃเธฒเธ„เธฒเธ•เนˆเธญ $100 เธ‚เธญเธ‡เธกเธนเธฅเธ„เนˆเธฒเธ—เธตเนˆเธ•เธฃเธฒเน„เธงเน‰เธ‚เธญเธ‡เธซเธฅเธฑเธเธ—เธฃเธฑเธžเธขเนŒเธ‹เธถเนˆเธ‡เธกเธต odd first period เธ„เธทเธญเน„เธกเนˆเน„เธ”เน‰เน€เธฃเธดเนˆเธกเธ‡เธงเธ”เนเธฃเธเธ—เธตเนˆเธ›เธฅเธฒเธขเธ‡เธงเธ”" #: analysis.src msgctxt "" @@ -5045,7 +5045,7 @@ "1\n" "string.text" msgid "Returns the price per $100 face value of a security with an odd last period" -msgstr "เธชเนˆเธ‡เธเธฅเธฑเธšเธฃเธฒเธ„เธฒเธ•เนˆเธญ 100 เธซเธ™เนˆเธงเธขเน€เธ‡เธดเธ™ เธ‚เธญเธ‡เน€เธ‡เธดเธ™เธ›เธฃเธฐเธเธฑเธ™เธ”เน‰เธงเธขเธ‡เธงเธ”เธ„เธตเนˆเธชเธธเธ”เธ—เน‰เธฒเธข" +msgstr "เธชเนˆเธ‡เธเธฅเธฑเธšเธฃเธฒเธ„เธฒเธ•เนˆเธญ $100 เธ‚เธญเธ‡เธกเธนเธฅเธ„เนˆเธฒเธ—เธตเนˆเธ•เธฃเธฒเน„เธงเน‰เธ‚เธญเธ‡เธซเธฅเธฑเธเธ—เธฃเธฑเธžเธขเนŒเธ‹เธถเนˆเธ‡เธกเธตเธ‡เธงเธ”เธชเธธเธ”เธ—เน‰เธฒเธขเน„เธกเนˆเธ›เธเธ•เธด" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/th/scp2/source/accessories.po libreoffice-l10n-5.0.3~rc2/translations/source/th/scp2/source/accessories.po --- libreoffice-l10n-5.0.2~rc2/translations/source/th/scp2/source/accessories.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/th/scp2/source/accessories.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-02-24 01:06+0000\n" +"PO-Revision-Date: 2015-09-30 04:18+0000\n" "Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" "Language: th\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1424739961.000000\n" +"X-POOTLE-MTIME: 1443586692.000000\n" #: module_accessories.ulf msgctxt "" @@ -2883,7 +2883,7 @@ "STR_DESC_MODULE_LANGPACK_RO\n" "LngText.text" msgid "Installs Romanian support in %PRODUCTNAME %PRODUCTVERSION" -msgstr "เธญเธฑเธฅเธšเธฒเน€เธ™เธตเธขเธ™" +msgstr "เธ•เธดเธ”เธ•เธฑเน‰เธ‡เธเธฒเธฃเธชเธ™เธฑเธšเธชเธ™เธธเธ™เธ เธฒเธฉเธฒเน‚เธฃเธกเธฒเน€เธ™เธตเธขเนƒเธ™ %PRODUCTNAME %PRODUCTVERSION" #: module_templates_accessories.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/th/sd/source/ui/annotations.po libreoffice-l10n-5.0.3~rc2/translations/source/th/sd/source/ui/annotations.po --- libreoffice-l10n-5.0.2~rc2/translations/source/th/sd/source/ui/annotations.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/th/sd/source/ui/annotations.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2014-02-05 14:40+0000\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-30 04:23+0000\n" "Last-Translator: jteera \n" "Language-Team: LANGUAGE \n" "Language: th\n" @@ -12,9 +12,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1391611211.0\n" +"X-POOTLE-MTIME: 1443586986.000000\n" #: annotations.src msgctxt "" @@ -175,13 +175,12 @@ msgstr "%PRODUCTNAME Impress เธกเธฒเธ–เธถเธ‡เธ—เน‰เธฒเธขเธเธฒเธฃเธ™เธณเน€เธชเธ™เธญ เธ„เธธเธ“เธ•เน‰เธญเธ‡เธเธฒเธฃเธ—เธณเธ•เนˆเธญเธ—เธตเนˆเธˆเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธซเธฃเธทเธญเน„เธกเนˆ?" #: annotations.src -#, fuzzy msgctxt "" "annotations.src\n" "STR_ANNOTATION_WRAP_BACKWARD\n" "string.text" msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?" -msgstr "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?%PRODUCTNAME Impress เน„เธ”เน‰เธ„เน‰เธ™เธซเธฒเน„เธ›เธ—เธตเนˆเธˆเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ‚เธญเธ‡เธ‡เธฒเธ™เธ™เธณเน€เธชเธ™เธญ เธ„เธธเธ“เธ•เน‰เธญเธ‡เธเธฒเธฃเธ„เน‰เธ™เธซเธฒเน„เธ›เธˆเธ™เธ–เธถเธ‡เธˆเธธเธ”เธชเธดเน‰เธ™เธชเธธเธ”เธซเธฃเธทเธญเน„เธกเนˆ?" +msgstr "%PRODUCTNAME Impress เธกเธฒเธ–เธถเธ‡เธˆเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ‚เธญเธ‡เธ‡เธฒเธ™เธ™เธณเน€เธชเธ™เธญ เธ„เธธเธ“เธ•เน‰เธญเธ‡เธเธฒเธฃเธ—เธณเธ•เนˆเธญเธ—เธตเนˆเธˆเธธเธ”เธชเธธเธ”เธ—เน‰เธฒเธขเธซเธฃเธทเธญเน„เธกเนˆ?" #: annotations.src #, fuzzy diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/tn/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/tn/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/tn/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/tn/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/tn/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/tn/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/tn/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/tn/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/tn/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/tn/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/tn/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/tn/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/tn/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/tn/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/tn/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/tn/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/tr/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/tr/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/tr/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/tr/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ts/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/ts/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ts/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ts/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ts/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ts/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ts/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ts/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ug/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ug/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ug/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ug/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/ug/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/ug/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/ug/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/ug/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uk/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/uk/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uk/extensions/uiconfig/sabpilot/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uk/extensions/uiconfig/sabpilot/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:05+0200\n" -"PO-Revision-Date: 2015-08-22 19:44+0000\n" +"PO-Revision-Date: 2015-09-19 05:50+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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1440272697.000000\n" +"X-POOTLE-MTIME: 1442641821.000000\n" #: contentfieldpage.ui msgctxt "" @@ -121,14 +121,13 @@ msgstr "ะ’ะฑัƒะดัƒะฒะฐั‚ะธ ะฒ ะฟะพั‚ะพั‡ะฝะธะน ะดะพะบัƒะผะตะฝั‚ ะฒะธะทะฝะฐั‡ะตะฝะฝั ั†ั–ั”ั— ะฐะดั€ะตัะฝะพั— ะบะฝะธะณะธ." #: datasourcepage.ui -#, fuzzy msgctxt "" "datasourcepage.ui\n" "locationft\n" "label\n" "string.text" msgid "Location" -msgstr "ะ ะพะทั‚ะฐัˆัƒะฒะฐะฝะฝั" +msgstr "ะœั–ัั†ะต ั€ะพะทั‚ะฐัˆัƒะฒะฐะฝะฝั" #: datasourcepage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uk/extras/source/autocorr/emoji.po libreoffice-l10n-5.0.3~rc2/translations/source/uk/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uk/extras/source/autocorr/emoji.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uk/extras/source/autocorr/emoji.po 2015-10-24 15:21:48.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-09-02 14:42+0200\n" -"PO-Revision-Date: 2015-08-15 01:51+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-09-19 05:53+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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439603513.000000\n" +"X-POOTLE-MTIME: 1442641998.000000\n" #. ยข (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -104,7 +104,7 @@ "MIDDLE_DOT\n" "LngText.text" msgid "middle dot" -msgstr "" +msgstr "ะบั€ะฐะฟะบะฐ ะฟะพัะตั€ะตะดะธะฝั–" #. ร— (U+000D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -113,7 +113,7 @@ "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "" +msgstr "x" #. ฮ‘ (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -662,7 +662,7 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "ัˆั‚ั€ะธั…" #. โ€ณ (U+02033), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -878,7 +878,7 @@ "LEFTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "W2" -msgstr "" +msgstr "ะ—2" #. โ‡‘ (U+021D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -887,7 +887,7 @@ "UPWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "N2" -msgstr "" +msgstr "ะŸะฝ2" #. โ‡’ (U+021D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -896,7 +896,7 @@ "RIGHTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "E2" -msgstr "" +msgstr "ะกั…2" #. โ‡“ (U+021D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -905,7 +905,7 @@ "DOWNWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "S2" -msgstr "" +msgstr "ะŸะด2" #. โ‡” (U+021D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -914,7 +914,7 @@ "LEFT_RIGHT_DOUBLE_ARROW\n" "LngText.text" msgid "EW2" -msgstr "" +msgstr "ะกั…ะ—ั…2" #. โ‡• (U+021D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -923,7 +923,7 @@ "UP_DOWN_DOUBLE_ARROW\n" "LngText.text" msgid "NS2" -msgstr "" +msgstr "ะŸะฝะŸะด2" #. โ‡– (U+021D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -932,7 +932,7 @@ "NORTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "NW2" -msgstr "" +msgstr "ะŸะฝะ—ั…2" #. โ‡— (U+021D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -941,7 +941,7 @@ "NORTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "NE2" -msgstr "" +msgstr "ะŸะฝะกั…2" #. โ‡˜ (U+021D8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -950,7 +950,7 @@ "SOUTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "SE2" -msgstr "" +msgstr "ะŸะดะกั…2" #. โ‡™ (U+021D9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -959,7 +959,7 @@ "SOUTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "SW2" -msgstr "" +msgstr "ะŸะดะ—ั…2" #. โˆ€ (U+02200), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -968,7 +968,7 @@ "FOR_ALL\n" "LngText.text" msgid "for all" -msgstr "" +msgstr "ะดะปั ะฒัั–ั…" #. โˆ‚ (U+02202), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -977,7 +977,7 @@ "PARTIAL_DIFFERENTIAL\n" "LngText.text" msgid "partial" -msgstr "" +msgstr "ั‡ะฐัั‚ะบะพะฒะฐ ะฟะพั…ั–ะดะฝะฐ" #. โˆƒ (U+02203), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -986,7 +986,7 @@ "THERE_EXISTS\n" "LngText.text" msgid "exists" -msgstr "" +msgstr "ั–ัะฝัƒั”" #. โˆ„ (U+02204), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -995,7 +995,7 @@ "THERE_DOES_NOT_EXIST\n" "LngText.text" msgid "not exists" -msgstr "" +msgstr "ะฝะต ั–ัะฝัƒั”" #. โˆ… (U+02205), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1004,7 +1004,7 @@ "EMPTY_SET\n" "LngText.text" msgid "empty set" -msgstr "" +msgstr "ะฟะพั€ะพะถะฝั ะผะฝะพะถะธะฝะฐ" #. โˆˆ (U+02208), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1013,7 +1013,7 @@ "ELEMENT_OF\n" "LngText.text" msgid "in" -msgstr "" +msgstr "ะฝะฐะปะตะถะธั‚ัŒ" #. โˆ‰ (U+02209), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1022,7 +1022,7 @@ "NOT_AN_ELEMENT_OF\n" "LngText.text" msgid "not in" -msgstr "" +msgstr "ะฝะต ะฝะฐะปะตะถะธั‚ัŒ" #. โˆŠ (U+0220A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1031,7 +1031,7 @@ "SMALL_ELEMENT_OF\n" "LngText.text" msgid "small in" -msgstr "" +msgstr "ะผะฐะปะต ะฝะฐะปะตะถะธั‚ัŒ" #. โˆ‹ (U+0220B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1040,7 +1040,7 @@ "CONTAINS_AS_MEMBER\n" "LngText.text" msgid "ni" -msgstr "" +msgstr "ะผั–ัั‚ะธั‚ัŒ" #. โˆŒ (U+0220C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1049,7 +1049,7 @@ "DOES_NOT_CONTAIN_AS_MEMBER\n" "LngText.text" msgid "not ni" -msgstr "" +msgstr "ะฝะต ะผั–ัั‚ะธั‚ัŒ" #. โˆ (U+0220D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1058,7 +1058,7 @@ "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "" +msgstr "ะผะฐะปะต ะผั–ัั‚ะธั‚ัŒ" #. โˆŽ (U+0220E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1067,7 +1067,7 @@ "END_OF_PROOF\n" "LngText.text" msgid "end of proof" -msgstr "" +msgstr "ะบั–ะฝะตั†ัŒ ะดะพะฒะตะดะตะฝะฝั" #. โˆ (U+0220F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1076,7 +1076,7 @@ "N-ARY_PRODUCT\n" "LngText.text" msgid "product" -msgstr "" +msgstr "ะดะพะฑัƒั‚ะพะบ" #. โˆ‘ (U+02211), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1085,17 +1085,16 @@ "N-ARY_SUMMATION\n" "LngText.text" msgid "sum" -msgstr "" +msgstr "ััƒะผะฐ" #. โˆ’ (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "MINUS_SIGN\n" "LngText.text" msgid "-" -msgstr "-" +msgstr "- " #. โˆ“ (U+02213), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1104,7 +1103,7 @@ "MINUS-OR-PLUS_SIGN\n" "LngText.text" msgid "-+" -msgstr "" +msgstr "-+" #. โˆ• (U+02215), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.0.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2015-10-24 15:21:48.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-09-02 14:43+0200\n" -"PO-Revision-Date: 2015-08-15 02:14+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2015-10-21 05:23+0000\n" +"Last-Translator: ะะฝะดั€ั–ะน ะ‘ะฐะฝะดัƒั€ะฐ \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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1439604872.000000\n" +"X-POOTLE-MTIME: 1445405012.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -21825,7 +21825,7 @@ "Label\n" "value.text" msgid "~More Fields..." -msgstr "~ะ”ะพะดะฐั‚ะบะพะฒั– ะฟะพะปั..." +msgstr "~ะ†ะฝัˆั– ะฟะพะปั..." #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uk/sw/source/ui/utlui.po libreoffice-l10n-5.0.3~rc2/translations/source/uk/sw/source/ui/utlui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uk/sw/source/ui/utlui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uk/sw/source/ui/utlui.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-17 13:57+0200\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uk/sw/source/uibase/ribbar.po libreoffice-l10n-5.0.3~rc2/translations/source/uk/sw/source/uibase/ribbar.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uk/sw/source/uibase/ribbar.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uk/sw/source/uibase/ribbar.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:23+0100\n" -"PO-Revision-Date: 2014-12-15 07:51+0000\n" -"Last-Translator: Olexandr \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-10-21 05:23+0000\n" +"Last-Translator: ะะฝะดั€ั–ะน ะ‘ะฐะฝะดัƒั€ะฐ \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418629860.000000\n" +"X-POOTLE-MTIME: 1445405017.000000\n" #: inputwin.src msgctxt "" @@ -397,7 +397,7 @@ "FN_INSERT_FIELD\n" "menuitem.text" msgid "More Fields..." -msgstr "ะ”ะพะดะฐั‚ะบะพะฒั– ะฟะพะปั..." +msgstr "ะ†ะฝัˆั– ะฟะพะปั..." #: workctrl.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uk/wizards/source/formwizard.po libreoffice-l10n-5.0.3~rc2/translations/source/uk/wizards/source/formwizard.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uk/wizards/source/formwizard.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uk/wizards/source/formwizard.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-06 11:13+0000\n" -"Last-Translator: Olexandr \n" +"PO-Revision-Date: 2015-10-21 05:23+0000\n" +"Last-Translator: ะะฝะดั€ั–ะน ะ‘ะฐะฝะดัƒั€ะฐ \n" "Language-Team: LANGUAGE \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" +"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1430910824.000000\n" +"X-POOTLE-MTIME: 1445405025.000000\n" #: dbwizres.src msgctxt "" @@ -415,8 +415,8 @@ "Binary fields are always listed and selectable from the left list.\n" "If possible, they are interpreted as images." msgstr "" -"ะ”ะฒั–ะนะบะพะฒั– ะฟะพะปั ะทะฐะฒะถะดะธ ะฑัƒะดัƒั‚ัŒ ะฟะตั€ะตะปั–ั‡ะตะฝั– ั‚ะฐ ั—ั… ะผะพะถะฝะฐ ะฒะธะฑั€ะฐั‚ะธ ัƒ ัะฟะธัะบัƒ.\n" -"ะ’ะพะฝะธ ะฒะธะฒะพะดะธั‚ะธะผัƒั‚ัŒัั ัะบ ะทะพะฑั€ะฐะถะตะฝะฝั, ัะบั‰ะพ ั†ะต ะผะพะถะปะธะฒะพ. " +"ะ”ะฒั–ะนะบะพะฒั– ะฟะพะปั ะทะฐะฒะถะดะธ ะฑัƒะดัƒั‚ัŒ ะฟะตั€ะตะปั–ั‡ะตะฝั– ั‚ะฐ ั—ั… ะผะพะถะฝะฐ ะฒะธะฑั€ะฐั‚ะธ ัƒ ัะฟะธัะบัƒ ะปั–ะฒะพั€ัƒั‡.\n" +"ะ’ะพะฝะธ ะฒะธะฒะพะดะธั‚ะธะผัƒั‚ัŒัั ัะบ ะทะพะฑั€ะฐะถะตะฝะฝั, ัะบั‰ะพ ั†ะต ะผะพะถะปะธะฒะพ." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/uz/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/uz/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/uz/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/uz/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/vi/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/vi/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/vi/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/vi/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/vi/scaddins/source/analysis.po libreoffice-l10n-5.0.3~rc2/translations/source/vi/scaddins/source/analysis.po --- libreoffice-l10n-5.0.2~rc2/translations/source/vi/scaddins/source/analysis.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/vi/scaddins/source/analysis.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/vi/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/vi/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/vi/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/vi/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/xh/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/xh/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/xh/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/xh/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/cui/uiconfig/ui.po libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/cui/uiconfig/ui.po --- libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/cui/uiconfig/ui.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-06-24 17:06+0200\n" -"PO-Revision-Date: 2015-07-02 02:00+0000\n" +"PO-Revision-Date: 2015-10-20 04:02+0000\n" "Last-Translator: ็จ็‘ ้” \n" "Language-Team: none\n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1435802439.000000\n" +"X-POOTLE-MTIME: 1445313753.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -3787,7 +3787,7 @@ "label\n" "string.text" msgid "Keep _scale" -msgstr "ไฟๆŒๆฏ”ๅˆ—(_S)" +msgstr "ไฟๆŒๆฏ”ไพ‹(_S)" #: croppage.ui msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/dictionaries/en/dialog.po libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/dictionaries/en/dialog.po --- libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/dictionaries/en/dialog.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/dictionaries/en/dialog.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2014-11-18 11:22+0100\n" -"PO-Revision-Date: 2014-12-16 05:55+0000\n" -"Last-Translator: ็จ็‘ \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2015-09-21 00:17+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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1418709331.000000\n" +"X-POOTLE-MTIME: 1442794624.000000\n" #: en_en_US.properties msgctxt "" @@ -286,7 +286,7 @@ "hlp_numsep\n" "property.text" msgid "Common (1000000 โ†’ 1,000,000) or ISO (1000000 โ†’ 1 000 000)." -msgstr "้€šๅธธๅˆ†้š” (1000000 โ†’ 1,000,000) ๆˆ– ISO (1000000 โ†’ 1 000 000)ใ€‚" +msgstr "ๅธธ่ง„ๅˆ†้š” (1000000 โ†’ 1,000,000) ๆˆ– ISO (1000000 โ†’ 1 000 000)ใ€‚" #: en_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2015-10-24 15:21:48.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-09-07 02:53+0000\n" +"PO-Revision-Date: 2015-09-21 00:17+0000\n" "Last-Translator: ็จ็‘ ้” \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1441594392.000000\n" +"X-POOTLE-MTIME: 1442794665.000000\n" #: ActionTe.ulf msgctxt "" @@ -3982,7 +3982,7 @@ "OOO_RADIOBUTTON_4\n" "LngText.text" msgid "{&MSSansBold8}&Typical" -msgstr "้€šๅธธ(&T)" +msgstr "ๅธธ่ง„(&T)" #: RadioBut.ulf msgctxt "" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/scp2/source/activex.po libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/scp2/source/activex.po --- libreoffice-l10n-5.0.2~rc2/translations/source/zh-CN/scp2/source/activex.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/zh-CN/scp2/source/activex.po 2015-10-24 15:21:48.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-04-06 04:44+0200\n" -"Last-Translator: Dean \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2015-10-21 03:19+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-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" +"X-POOTLE-MTIME: 1445397556.000000\n" #: module_activex.ulf msgctxt "" @@ -21,7 +22,7 @@ "STR_NAME_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "ActiveX Control" -msgstr "ActiveX ๆŽงๅˆถ" +msgstr "ActiveX ๆŽงไปถ" #: module_activex.ulf msgctxt "" @@ -29,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "Component to enable Microsoft Internet Explorer to display %PRODUCTNAME documents." -msgstr "ๅฏ็”จ Microsoft Internet Explorer ไปฅๆ˜พ็คบ %PRODUCTNAME ๆ–‡ๆกฃ็š„็ป„ไปถใ€‚" +msgstr "ๅฎ‰่ฃ…่ฏฅ็ป„ไปถๅฏๅœจ Microsoft Internet Explorer ไธญๆ˜พ็คบ %PRODUCTNAME ๆ–‡ๆกฃใ€‚" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/zu/formula/source/core/resource.po libreoffice-l10n-5.0.3~rc2/translations/source/zu/formula/source/core/resource.po --- libreoffice-l10n-5.0.2~rc2/translations/source/zu/formula/source/core/resource.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/zu/formula/source/core/resource.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/translations/source/zu/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/zu/starmath/source.po --- libreoffice-l10n-5.0.2~rc2/translations/source/zu/starmath/source.po 2015-09-17 13:33:11.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/translations/source/zu/starmath/source.po 2015-10-24 15:21:48.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-09-03 21:41-0500\n" +"POT-Creation-Date: 2015-10-24 15:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/generic/glyphs/gcach_layout.cxx libreoffice-l10n-5.0.3~rc2/vcl/generic/glyphs/gcach_layout.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/generic/glyphs/gcach_layout.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/generic/glyphs/gcach_layout.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -402,6 +402,7 @@ // allocate temporary arrays, note: round to even int nGlyphCapacity = (3 * (rArgs.mnEndCharPos - rArgs.mnMinCharPos) | 15) + 1; + int32_t nVirtAdv = int32_t(aFtFace->size->metrics.height*rFont.GetStretch())>>6; rLayout.Reserve(nGlyphCapacity); @@ -563,6 +564,8 @@ int32_t nYOffset = pHbPositions[i].y_offset >> 6; int32_t nXAdvance = pHbPositions[i].x_advance >> 6; int32_t nYAdvance = pHbPositions[i].y_advance >> 6; + if ( nGlyphIndex & GF_ROTMASK ) + nXAdvance = nVirtAdv; Point aNewPos = Point(aCurrPos.X() + nXOffset, -(aCurrPos.Y() + nYOffset)); const GlyphItem aGI(nCharPos, nGlyphIndex, aNewPos, nGlyphFlags, nXAdvance, nXOffset, nYOffset); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/inc/generic/glyphcache.hxx libreoffice-l10n-5.0.3~rc2/vcl/inc/generic/glyphcache.hxx --- libreoffice-l10n-5.0.2~rc2/vcl/inc/generic/glyphcache.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/inc/generic/glyphcache.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -185,6 +185,7 @@ const unsigned char* GetTable( const char* pName, sal_uLong* pLength ); int GetEmUnits() const { return maFaceFT->units_per_EM;} const FT_Size_Metrics& GetMetricsFT() const { return maSizeFT->metrics; } + double GetStretch() { return mfStretch; } const FontCharMapPtr GetFontCharMap() const; bool GetFontCapabilities(vcl::FontCapabilities &) const; diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/inc/image.h libreoffice-l10n-5.0.3~rc2/vcl/inc/image.h --- libreoffice-l10n-5.0.2~rc2/vcl/inc/image.h 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/inc/image.h 2015-10-24 15:21:49.000000000 +0000 @@ -40,6 +40,8 @@ private: BitmapEx maBmpEx; + BitmapChecksum maBitmapChecksum; + BitmapEx maDisabledBmpEx; BitmapEx* mpDisplayBmp; Size maSize; diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/inc/opengl/salbmp.hxx libreoffice-l10n-5.0.3~rc2/vcl/inc/opengl/salbmp.hxx --- libreoffice-l10n-5.0.2~rc2/vcl/inc/opengl/salbmp.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/inc/opengl/salbmp.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -109,8 +109,6 @@ bool ImplScaleConvolution( const double& rScaleX, const double& rScaleY, const Kernel& aKernel ); bool ImplScaleArea( double rScaleX, double rScaleY ); - bool getFormatAndType(GLenum& nFormat, GLenum& nType); - public: bool ImplScale( const double& rScaleX, const double& rScaleY, BmpScaleFlag nScaleFlag ); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/opengl/FixedTextureAtlas.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/FixedTextureAtlas.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/opengl/FixedTextureAtlas.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/opengl/FixedTextureAtlas.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -36,15 +36,18 @@ { ImplOpenGLTexture* pTexture = nullptr; - for (size_t i = 0; i < mpTextures.size(); i++) + auto funFreeSlot = [] (std::unique_ptr& mpTexture) { - if (mpTextures[i]->mnFreeSlots > 0) - { - pTexture = mpTextures[i].get(); - } - } + return mpTexture->mnFreeSlots > 0; + }; + + auto aIterator = std::find_if(mpTextures.begin(), mpTextures.end(), funFreeSlot); - if (!pTexture) + if (aIterator != mpTextures.end()) + { + pTexture = (*aIterator).get(); + } + else { CreateNewTexture(); pTexture = mpTextures.back().get(); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/opengl/framebuffer.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/framebuffer.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/opengl/framebuffer.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/opengl/framebuffer.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -68,8 +68,11 @@ mnAttachedTexture = rTexture.Id(); mnWidth = rTexture.GetWidth(); mnHeight = rTexture.GetHeight(); - glFramebufferTexture2D( GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, - mnAttachedTexture, 0 ); + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, mnAttachedTexture, 0); + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) + { + SAL_WARN("vcl.opengl", "Framebuffer incomplete"); + } CHECK_GL_ERROR(); } diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/opengl/salbmp.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/salbmp.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/opengl/salbmp.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/opengl/salbmp.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -513,25 +513,31 @@ sal_uInt8* pCurrent = pBuffer; - for (size_t i = 0; i < aBuffer.size(); i += 3) + for (int y = 0; y < mnHeight; ++y) { - sal_uInt8 nR = *pCurrent++; - sal_uInt8 nG = *pCurrent++; - sal_uInt8 nB = *pCurrent++; - - if (nR > 0 && nG > 0 && nB > 0) - { - pData[nIndex] |= (1 << nShift); - } - nShift--; - if (nShift < 0) + for (int x = 0; x < mnWidth; ++x) { - nShift = 7; - nIndex++; - pData[nIndex] = 0; + if (nShift < 0) + { + nShift = 7; + nIndex++; + pData[nIndex] = 0; + } + + sal_uInt8 nR = *pCurrent++; + sal_uInt8 nG = *pCurrent++; + sal_uInt8 nB = *pCurrent++; + + if (nR > 0 && nG > 0 && nB > 0) + { + pData[nIndex] |= (1 << nShift); + } + nShift--; } + nShift = 7; + nIndex++; + pData[nIndex] = 0; } - mnBufWidth = mnWidth; mnBufHeight = mnHeight; return true; diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/opengl/scale.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/scale.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/opengl/scale.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/opengl/scale.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -44,31 +44,6 @@ void GetSize( Size& rSize ) const SAL_OVERRIDE; }; -bool OpenGLSalBitmap::getFormatAndType(GLenum& nFormat, GLenum& nType) -{ - switch(mnBits) - { - case 8: - nFormat = GL_LUMINANCE; - nType = GL_UNSIGNED_BYTE; - break; - case 16: - nFormat = GL_RGB; - nType = GL_UNSIGNED_SHORT_5_6_5; - break; - case 24: - nFormat = GL_RGB; - nType = GL_UNSIGNED_BYTE; - break; - case 32: - default: - nFormat = GL_RGBA; - nType = GL_UNSIGNED_BYTE; - break; - } - return true; -} - bool OpenGLSalBitmap::ImplScaleFilter( const double& rScaleX, const double& rScaleY, @@ -85,11 +60,7 @@ if( !pProgram ) return false; - GLenum nFormat; - GLenum nType; - getFormatAndType(nFormat, nType); - - OpenGLTexture aNewTex = OpenGLTexture(nNewWidth, nNewHeight, nFormat, nType, nullptr); + OpenGLTexture aNewTex(nNewWidth, nNewHeight); pFramebuffer = mpContext->AcquireFramebuffer( aNewTex ); pProgram->SetTexture( "sampler", maTexture ); @@ -168,14 +139,10 @@ if( pProgram == 0 ) return false; - GLenum nFormat; - GLenum nType; - getFormatAndType(nFormat, nType); - // horizontal scaling in scratch texture if( mnWidth != nNewWidth ) { - OpenGLTexture aScratchTex = OpenGLTexture(nNewWidth, mnHeight, nFormat, nType, nullptr); + OpenGLTexture aScratchTex(nNewWidth, nNewHeight); pFramebuffer = mpContext->AcquireFramebuffer( aScratchTex ); @@ -198,7 +165,7 @@ // vertical scaling in final texture if( mnHeight != nNewHeight ) { - OpenGLTexture aScratchTex = OpenGLTexture(nNewWidth, nNewHeight, nFormat, nType, nullptr); + OpenGLTexture aScratchTex(nNewWidth, nNewHeight); pFramebuffer = mpContext->AcquireFramebuffer( aScratchTex ); @@ -259,11 +226,7 @@ if( pProgram == 0 ) return false; - GLenum nFormat; - GLenum nType; - getFormatAndType(nFormat, nType); - - OpenGLTexture aScratchTex = OpenGLTexture(nNewWidth, nNewHeight, nFormat, nType, nullptr); + OpenGLTexture aScratchTex(nNewWidth, nNewHeight); OpenGLFramebuffer* pFramebuffer = mpContext->AcquireFramebuffer( aScratchTex ); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/opengl/win/WinDeviceInfo.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/win/WinDeviceInfo.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/opengl/win/WinDeviceInfo.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/opengl/win/WinDeviceInfo.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -727,6 +727,14 @@ return true; } + /* Anything that's exotic eg. VMWare / VirtualBox GL drivers + we're not interested in for now. */ + if (maAdapterVendorID != GetDeviceVendor(wgl::VendorAMD) && + maAdapterVendorID != GetDeviceVendor(wgl::VendorATI) && + maAdapterVendorID != GetDeviceVendor(wgl::VendorIntel) && + maAdapterVendorID != GetDeviceVendor(wgl::VendorNVIDIA)) + return true; + return FindBlocklistedDeviceInList(); } diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/qa/cppunit/app/test_IconThemeInfo.cxx libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/app/test_IconThemeInfo.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/qa/cppunit/app/test_IconThemeInfo.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/app/test_IconThemeInfo.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -36,12 +36,6 @@ ThemeIdIsDetectedFromFileNameWithUnderscore(); void - DisplayNameForHicontrastIsHighContrast(); - - void - DisplayNameForTango_testingIsTangoTesting(); - - void ExceptionIsThrownWhenIdCannotBeDetermined1(); void @@ -120,24 +114,6 @@ CPPUNIT_ASSERT_EQUAL_MESSAGE("Exception was thrown", true, thrown); } -void -IconThemeInfoTest::DisplayNameForHicontrastIsHighContrast() -{ - OUString id("hicontrast"); - OUString expected("High Contrast"); - OUString displayName = vcl::IconThemeInfo::ThemeIdToDisplayName(id); - CPPUNIT_ASSERT_EQUAL(expected, displayName); -} - -void -IconThemeInfoTest::DisplayNameForTango_testingIsTangoTesting() -{ - OUString id("tango_testing"); - OUString expected("Tango Testing"); - OUString displayName = vcl::IconThemeInfo::ThemeIdToDisplayName(id); - CPPUNIT_ASSERT_EQUAL(expected, displayName); -} - // Put the test suite in the registry CPPUNIT_TEST_SUITE_REGISTRATION(IconThemeInfoTest); Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/vcl/qa/cppunit/graphicfilter/data/jpg/fail/crash-1.jpg and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/graphicfilter/data/jpg/fail/crash-1.jpg differ Binary files /tmp/WyWz59FDmG/libreoffice-l10n-5.0.2~rc2/vcl/qa/cppunit/graphicfilter/data/wmf/fail/bitcount-1.wmf and /tmp/HKwuM0eRb3/libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/graphicfilter/data/wmf/fail/bitcount-1.wmf differ diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/qa/cppunit/lifecycle.cxx libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/lifecycle.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/qa/cppunit/lifecycle.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/lifecycle.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -220,7 +220,7 @@ LeakTestObject *pNew = new LeakTestObject(); pNew->mxRef = VclPtr< LeakTestClass< vcl_type > >::Create( pNew->mbDeleted, std::forward(arg)...); - pNew->mpRef = reinterpret_cast(static_cast(pNew->mxRef)); + pNew->mpRef = static_cast(static_cast(pNew->mxRef)); return pNew; } VclPtr getRef() { return mxRef; } @@ -233,7 +233,7 @@ if (!mbDeleted) { OUStringBuffer aMsg = "Type '"; - vcl::Window *pWin = reinterpret_cast(mpRef); + vcl::Window *pWin = static_cast(mpRef); aMsg.appendAscii(typeid(*pWin).name()); aMsg.append("' not freed after dispose"); CPPUNIT_FAIL(OUStringToOString(aMsg.makeStringAndClear(), diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/control/field2.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/control/field2.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/control/field2.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/control/field2.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -819,6 +819,12 @@ Reformat(); } +void PatternField::dispose() +{ + PatternFormatter::SetField( NULL ); + SpinField::dispose(); +} + bool PatternField::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) @@ -865,6 +871,12 @@ Reformat(); } +void PatternBox::dispose() +{ + PatternFormatter::SetField( NULL ); + ComboBox::dispose(); +} + bool PatternBox::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) @@ -1729,6 +1741,12 @@ ResetLastDate(); } +void DateField::dispose() +{ + DateFormatter::SetField( NULL ); + SpinField::dispose(); +} + bool DateField::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && IsStrictFormat() && @@ -1828,6 +1846,12 @@ Reformat(); } +void DateBox::dispose() +{ + DateFormatter::SetField( NULL ); + ComboBox::dispose(); +} + bool DateBox::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && IsStrictFormat() && @@ -2515,6 +2539,12 @@ Reformat(); } +void TimeField::dispose() +{ + TimeFormatter::SetField( NULL ); + SpinField::dispose(); +} + bool TimeField::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) @@ -2652,6 +2682,12 @@ Reformat(); } +void TimeBox::dispose() +{ + TimeFormatter::SetField( NULL ); + ComboBox::dispose(); +} + bool TimeBox::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/control/field.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/control/field.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/control/field.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/control/field.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -812,6 +812,12 @@ Show(); } +void NumericField::dispose() +{ + NumericFormatter::SetField( NULL ); + SpinField::dispose(); +} + bool NumericField::set_property(const OString &rKey, const OString &rValue) { if (rKey == "digits") @@ -961,6 +967,12 @@ Show(); } +void NumericBox::dispose() +{ + NumericFormatter::SetField( NULL ); + ComboBox::dispose(); +} + Size NumericBox::CalcMinimumSize() const { Size aRet(calcMinimumSize(*this, *this)); @@ -1636,6 +1648,12 @@ Show(); } +void MetricField::dispose() +{ + MetricFormatter::SetField( NULL ); + SpinField::dispose(); +} + Size MetricField::CalcMinimumSize() const { return calcMinimumSize(*this, *this); @@ -1800,6 +1818,12 @@ Reformat(); } +void MetricBox::dispose() +{ + MetricFormatter::SetField(NULL); + ComboBox::dispose(); +} + Size MetricBox::CalcMinimumSize() const { Size aRet(calcMinimumSize(*this, *this)); @@ -2040,6 +2064,12 @@ Reformat(); } +void CurrencyField::dispose() +{ + CurrencyFormatter::SetField( NULL ); + SpinField::dispose(); +} + bool CurrencyField::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) @@ -2118,6 +2148,12 @@ Reformat(); } +void CurrencyBox::dispose() +{ + CurrencyFormatter::SetField( NULL ); + ComboBox::dispose(); +} + bool CurrencyBox::PreNotify( NotifyEvent& rNEvt ) { if ( (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/control/lstbox.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/control/lstbox.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/control/lstbox.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/control/lstbox.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -982,6 +982,8 @@ void ListBox::Clear() { + if (!mpImplLB) + return; mpImplLB->Clear(); if( IsDropDownBox() ) { @@ -1037,13 +1039,15 @@ Image ListBox::GetEntryImage( sal_Int32 nPos ) const { - if ( mpImplLB->GetEntryList()->HasEntryImage( nPos ) ) + if ( mpImplLB && mpImplLB->GetEntryList()->HasEntryImage( nPos ) ) return mpImplLB->GetEntryList()->GetEntryImage( nPos ); return Image(); } sal_Int32 ListBox::GetEntryPos( const OUString& rStr ) const { + if (!mpImplLB) + return LISTBOX_ENTRY_NOTFOUND; sal_Int32 nPos = mpImplLB->GetEntryList()->FindEntry( rStr ); if ( nPos != LISTBOX_ENTRY_NOTFOUND ) nPos = nPos - mpImplLB->GetEntryList()->GetMRUCount(); @@ -1052,6 +1056,8 @@ sal_Int32 ListBox::GetEntryPos( const void* pData ) const { + if (!mpImplLB) + return LISTBOX_ENTRY_NOTFOUND; sal_Int32 nPos = mpImplLB->GetEntryList()->FindEntry( pData ); if ( nPos != LISTBOX_ENTRY_NOTFOUND ) nPos = nPos - mpImplLB->GetEntryList()->GetMRUCount(); @@ -1060,11 +1066,15 @@ OUString ListBox::GetEntry( sal_Int32 nPos ) const { + if (!mpImplLB) + return OUString(); return mpImplLB->GetEntryList()->GetEntryText( nPos + mpImplLB->GetEntryList()->GetMRUCount() ); } sal_Int32 ListBox::GetEntryCount() const { + if (!mpImplLB) + return 0; return mpImplLB->GetEntryList()->GetEntryCount() - mpImplLB->GetEntryList()->GetMRUCount(); } @@ -1075,11 +1085,16 @@ sal_Int32 ListBox::GetSelectEntryCount() const { + if (!mpImplLB) + return 0; return mpImplLB->GetEntryList()->GetSelectEntryCount(); } sal_Int32 ListBox::GetSelectEntryPos( sal_Int32 nIndex ) const { + if (!mpImplLB || !mpImplLB->GetEntryList()) + return LISTBOX_ENTRY_NOTFOUND; + sal_Int32 nPos = mpImplLB->GetEntryList()->GetSelectEntryPos( nIndex ); if ( nPos != LISTBOX_ENTRY_NOTFOUND ) { @@ -1107,6 +1122,9 @@ void ListBox::SelectEntryPos( sal_Int32 nPos, bool bSelect ) { + if (!mpImplLB) + return; + if ( 0 <= nPos && nPos < mpImplLB->GetEntryList()->GetEntryCount() ) { sal_Int32 oldSelectCount = GetSelectEntryCount(), newSelectCount = 0, nCurrentPos = mpImplLB->GetCurrentPos(); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/filter/jpeg/jpegc.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/filter/jpeg/jpegc.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/filter/jpeg/jpegc.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/filter/jpeg/jpegc.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -103,7 +103,13 @@ else if ( cinfo.jpeg_color_space == JCS_YCCK ) cinfo.out_color_space = JCS_CMYK; - OSL_ASSERT(cinfo.out_color_space == JCS_CMYK || cinfo.out_color_space == JCS_GRAYSCALE || cinfo.out_color_space == JCS_RGB); + if (cinfo.out_color_space != JCS_CMYK && + cinfo.out_color_space != JCS_GRAYSCALE && + cinfo.out_color_space != JCS_RGB) + { + SAL_WARN("vcl.filter", "jpg with unknown out color space, forcing to rgb"); + cinfo.out_color_space = JCS_RGB; + } /* change scale for preview import */ long nPreviewWidth = previewSize.Width(); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/dibtools.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/dibtools.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/dibtools.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/dibtools.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -267,7 +267,19 @@ rHeader.nSizeImage = 0; } - return( ( rHeader.nPlanes == 1 ) && ( rIStm.GetError() == 0UL ) ); + + if (rHeader.nPlanes != 1) + return false; + + if (rHeader.nBitCount != 0 && rHeader.nBitCount != 1 && + rHeader.nBitCount != 4 && rHeader.nBitCount != 8 && + rHeader.nBitCount != 16 && rHeader.nBitCount != 24 && + rHeader.nBitCount != 32) + { + return false; + } + + return rIStm.good(); } bool ImplReadDIBPalette( SvStream& rIStm, BitmapWriteAccess& rAcc, bool bQuad ) diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/impimage.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/impimage.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/impimage.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/impimage.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -29,6 +29,10 @@ #include #include +#if defined WNT +#include +#endif + #define IMPSYSIMAGEITEM_MASK ( 0x01 ) #define IMPSYSIMAGEITEM_ALPHA ( 0x02 ) @@ -182,7 +186,12 @@ if( nStyle & DrawImageFlags::Disable ) { - ImplUpdateDisabledBmpEx( nPos); + BitmapChecksum aChecksum = maBmpEx.GetChecksum(); + if (maBitmapChecksum != aChecksum) + { + maBitmapChecksum = aChecksum; + ImplUpdateDisabledBmpEx(nPos); + } pOutDev->DrawBitmapEx( rPos, aOutSize, aSrcPos, maSize, maDisabledBmpEx ); } else @@ -331,7 +340,7 @@ if( !mpDisplayBmp && !maBmpEx.IsEmpty() ) { #if defined WNT - if( !maBmpEx.IsAlpha() ) + if( !maBmpEx.IsAlpha() && !OpenGLHelper::isVCLOpenGLEnabled()) { // FIXME: this looks like rather an obsolete code-path to me. const Bitmap aBmp( maBmpEx.GetBitmap().CreateDisplayBitmap( pOutDev ) ); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/sallayout.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/sallayout.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/sallayout.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/sallayout.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -200,7 +200,7 @@ are GF_NONE also, but already handled in the outer if condition */ if((nChar >= 0x3008 && nChar <= 0x301C && nChar != 0x3012) - || (nChar == 0xFF3B || nChar == 0xFF3D) + || (nChar == 0xFF3B || nChar == 0xFF3D || nChar==0xFF08 || nChar==0xFF09) || (nChar >= 0xFF5B && nChar <= 0xFF9F) // halfwidth forms || (nChar == 0xFFE3) ) return GF_NONE; // not rotated diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/virdev.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/virdev.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/gdi/virdev.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/virdev.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -129,6 +129,8 @@ { SAL_INFO( "vcl.virdev", "ImplInitVirDev(" << nDX << "," << nDY << "," << nBitCount << ")" ); + bool bErase = nDX > 0 && nDY > 0; + if ( nDX < 1 ) nDX = 1; @@ -191,7 +193,7 @@ SetBackground( Wallpaper( Color( COL_WHITE ) ) ); // #i59283# don't erase user-provided surface - if( !pData ) + if( !pData && bErase) Erase(); // register VirDev in the list @@ -212,7 +214,7 @@ "VirtualDevice::VirtualDevice(): Only 0, 1 or 8 allowed for BitCount, not " << nBitCount ); SAL_INFO( "vcl.gdi", "VirtualDevice::VirtualDevice( " << nBitCount << " )" ); - ImplInitVirDev( Application::GetDefaultDevice(), 1, 1, nBitCount ); + ImplInitVirDev( Application::GetDefaultDevice(), 0, 0, nBitCount ); } VirtualDevice::VirtualDevice( const OutputDevice& rCompDev, sal_uInt16 nBitCount ) @@ -223,7 +225,7 @@ "VirtualDevice::VirtualDevice(): Only 0, 1 or 8 allowed for BitCount, not " << nBitCount ); SAL_INFO( "vcl.gdi", "VirtualDevice::VirtualDevice( " << nBitCount << " )" ); - ImplInitVirDev( &rCompDev, 1, 1, nBitCount ); + ImplInitVirDev( &rCompDev, 0, 0, nBitCount ); } VirtualDevice::VirtualDevice( const OutputDevice& rCompDev, sal_uInt16 nBitCount, sal_uInt16 nAlphaBitCount ) @@ -235,7 +237,7 @@ SAL_INFO( "vcl.gdi", "VirtualDevice::VirtualDevice( " << nBitCount << ", " << nAlphaBitCount << " )" ); - ImplInitVirDev( &rCompDev, 1, 1, nBitCount ); + ImplInitVirDev( &rCompDev, 0, 0, nBitCount ); // Enable alpha channel mnAlphaDepth = sal::static_int_cast(nAlphaBitCount); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/opengl/OpenGLContext.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/opengl/OpenGLContext.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/opengl/OpenGLContext.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/opengl/OpenGLContext.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -960,14 +960,22 @@ } if (!InitGLEW()) + { + wglMakeCurrent(NULL, NULL); + wglDeleteContext(hTempRC); return false; + } HGLRC hSharedCtx = 0; if (!g_vShareList.empty()) hSharedCtx = g_vShareList.front(); if (!wglCreateContextAttribsARB) + { + wglMakeCurrent(NULL, NULL); + wglDeleteContext(hTempRC); return false; + } // now setup the shared context; this needs a temporary context already // set up in order to work @@ -983,6 +991,8 @@ { ImplWriteLastError(GetLastError(), "wglCreateContextAttribsARB in OpenGLContext::ImplInit"); SAL_WARN("vcl.opengl", "wglCreateContextAttribsARB failed"); + wglMakeCurrent(NULL, NULL); + wglDeleteContext(hTempRC); return false; } diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/opengl/OpenGLHelper.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/opengl/OpenGLHelper.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/opengl/OpenGLHelper.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/opengl/OpenGLHelper.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -66,6 +66,7 @@ { OUString aFileURL = getShaderFolder() + rFilename +".glsl"; osl::File aFile(aFileURL); + SAL_INFO("vcl.opengl", "Reading " << aFileURL); if(aFile.open(osl_File_OpenFlag_Read) == osl::FileBase::E_None) { sal_uInt64 nSize = 0; @@ -85,6 +86,18 @@ return OString(); } +OString& getShaderSource(const OUString& rFilename) +{ + static std::unordered_map aMap; + + if (aMap.find(rFilename) == aMap.end()) + { + aMap[rFilename] = loadShader(rFilename); + } + + return aMap[rFilename]; +} + } namespace { @@ -189,8 +202,8 @@ const OString& rPreamble ) { // read shaders source - OString aVertexShaderSource = loadShader( rVertexShaderName ); - OString aFragmentShaderSource = loadShader( rFragmentShaderName ); + OString aVertexShaderSource = getShaderSource( rVertexShaderName ); + OString aFragmentShaderSource = getShaderSource( rFragmentShaderName ); // get info about the graphic device #if defined( SAL_UNX ) && !defined( MACOSX ) && !defined( IOS )&& !defined( ANDROID ) @@ -374,8 +387,8 @@ GLint ProgramID = glCreateProgram(); // read shaders from file - OString aVertexShaderSource = loadShader(rVertexShaderName); - OString aFragmentShaderSource = loadShader(rFragmentShaderName); + OString aVertexShaderSource = getShaderSource(rVertexShaderName); + OString aFragmentShaderSource = getShaderSource(rFragmentShaderName); GLint bBinaryResult = GL_FALSE; diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/outdev/font.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/outdev/font.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/outdev/font.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/outdev/font.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -1258,7 +1258,6 @@ ImplFontEntry* ImplFontCache::GetFontEntry( PhysicalFontCollection* pFontList, FontSelectPattern& aFontSelData ) { - const FontSelectPattern aFontSelDataOrig(aFontSelData); // check if a directly matching logical font instance is already cached, // the most recently used font usually has a hit rate of >50% ImplFontEntry *pEntry = NULL; @@ -1345,9 +1344,8 @@ } #endif - // Add the new entry to the cache with the original FontSelectPattern, - // so that we can find it next time as a direct cache hit. - maFontInstanceList[ aFontSelDataOrig ] = pEntry; + // add the new entry to the cache + maFontInstanceList[ aFontSelData ] = pEntry; } mpFirstEntry = pEntry; diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/source/outdev/transparent.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/outdev/transparent.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/source/outdev/transparent.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/source/outdev/transparent.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -751,7 +751,7 @@ const AlphaMask aAlpha(xVDev->GetBitmap(aPoint, xVDev->GetOutputSizePixel())); - xVDev.reset(); + xVDev.disposeAndClear(); // draw masked content to target and restore MapMode DrawBitmapEx(aDstRect.TopLeft(), BitmapEx(aPaint, aAlpha)); @@ -799,7 +799,7 @@ aAlpha = xVDev->GetBitmap( Point(), xVDev->GetOutputSizePixel() ); - xVDev.reset(); + xVDev.disposeAndClear(); EnableMapMode( false ); DrawBitmapEx( aDstRect.TopLeft(), BitmapEx( aPaint, aAlpha ) ); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/unx/generic/app/saldisp.cxx libreoffice-l10n-5.0.3~rc2/vcl/unx/generic/app/saldisp.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/unx/generic/app/saldisp.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/unx/generic/app/saldisp.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -741,11 +741,16 @@ if( aRet.isEmpty() ) { const char *pString = XKeysymToString( nKeySym ); - int n = strlen( pString ); - if( n > 2 && pString[n-2] == '_' ) - aRet = OUString( pString, n-2, RTL_TEXTENCODING_ISO_8859_1 ); + if (pString) + { + int n = strlen( pString ); + if( n > 2 && pString[n-2] == '_' ) + aRet = OUString( pString, n-2, RTL_TEXTENCODING_ISO_8859_1 ); + else + aRet = OUString( pString, n, RTL_TEXTENCODING_ISO_8859_1 ); + } else - aRet = OUString( pString, n, RTL_TEXTENCODING_ISO_8859_1 ); + aRet = "???"; } } } diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/unx/generic/gdi/cairotextrender.cxx libreoffice-l10n-5.0.3~rc2/vcl/unx/generic/gdi/cairotextrender.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/unx/generic/gdi/cairotextrender.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/unx/generic/gdi/cairotextrender.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -248,7 +248,7 @@ { int nGlyphRotation = *aI; - std::vector::const_iterator aNext = std::find_if(aI+1, aEnd, hasRotation); + std::vector::const_iterator aNext = nGlyphRotation?(aI+1):std::find_if(aI+1, aEnd, hasRotation); size_t nStartIndex = std::distance(aStart, aI); size_t nLen = std::distance(aI, aNext); diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/unx/gtk3/app/gtk3gtkinst.cxx libreoffice-l10n-5.0.3~rc2/vcl/unx/gtk3/app/gtk3gtkinst.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/unx/gtk3/app/gtk3gtkinst.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/unx/gtk3/app/gtk3gtkinst.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -372,8 +372,11 @@ Reference< css::datatransfer::XTransferable > VclGtkClipboard::getContents() throw( RuntimeException, std::exception ) { - if (!m_aContents.is()) + if (G_OBJECT(m_pOwner) != gtk_clipboard_get_owner(gtk_clipboard_get(m_nSelection)) && + !m_aContents.is()) { + //tdf#93887 This is the system clipboard/selection. We fetch it when we are not + //the owner of the clipboard and have not already fetched it. m_aContents = new GtkTransferable(m_nSelection); } return m_aContents; @@ -382,6 +385,8 @@ void VclGtkClipboard::ClipboardGet(GtkClipboard* /*clipboard*/, GtkSelectionData *selection_data, guint info) { + if (!m_aContents.is()) + return; GdkAtom type(gdk_atom_intern(OUStringToOString(m_aInfoToFlavor[info].MimeType, RTL_TEXTENCODING_UTF8).getStr(), diff -Nru libreoffice-l10n-5.0.2~rc2/vcl/win/source/gdi/winlayout.cxx libreoffice-l10n-5.0.3~rc2/vcl/win/source/gdi/winlayout.cxx --- libreoffice-l10n-5.0.2~rc2/vcl/win/source/gdi/winlayout.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/vcl/win/source/gdi/winlayout.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -2501,7 +2501,7 @@ const ImplWinFontData& rFontFace = *mpWinFontData[ nFallbackLevel ]; ImplWinFontEntry& rFontInstance = *mpWinFontEntry[ nFallbackLevel ]; - bool bUseOpenGL = OpenGLHelper::isVCLOpenGLEnabled(); + bool bUseOpenGL = OpenGLHelper::isVCLOpenGLEnabled() && !mbPrinter; if (!bUspInited) InitUSP(); diff -Nru libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.py libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.py --- libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.py 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.py 2015-10-24 15:21:49.000000000 +0000 @@ -284,11 +284,11 @@ self.btnUp = self.insertButton("btnUp", AgendaWizardDialogConst.BTNUP_ACTION_PERFORMED, self.PROPS_BUTTON, (14, AgendaWizardDialogConst.BTNUP_HID, - self.resources.resButtonUp, 202, 136, 5, 582, 50), self) + self.resources.resButtonUp, 180, 136, 5, 582, 60), self) self.btnDown = self.insertButton("btnDown", AgendaWizardDialogConst.BTNDOWN_ACTION_PERFORMED, self.PROPS_BUTTON, (14, AgendaWizardDialogConst.BTNDOWN_HID, - self.resources.resButtonDown, 254, 136, 5, 583, 50), self) + self.resources.resButtonDown, 244, 136, 5, 583, 60), self) def buildStep6(self): self.insertLabel("lblTitle6", self.PROPS_LABEL_B, diff -Nru libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/FTPDialog.py libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/FTPDialog.py --- libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/FTPDialog.py 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/FTPDialog.py 2015-10-24 15:21:49.000000000 +0000 @@ -19,7 +19,7 @@ from .WWHID import * from .FTPDialogResources import FTPDialogResources -from ..ui.UnoDialog2 import UnoDialog2 +from ..ui.WizardDialog import WizardDialog from ..ui.UIConsts import UIConsts from ..ui.event.DataAware import DataAware from ..ui.event.UnoDataAware import UnoDataAware @@ -36,11 +36,6 @@ from com.sun.star.ucb import OpenCommandArgument2 from com.sun.star.ucb.OpenMode import FOLDERS -#PushButtonType_OK_value = uno.getConstantByName( "com.sun.star.awt.PushButtonType.OK" ) -#PushButtonType_CANCEL_value = uno.getConstantByName( "com.sun.star.awt.PushButtonType.CANCEL" ) -#PushButtonType_HELP_value = uno.getConstantByName( "com.sun.star.awt.PushButtonType.HELP" ) - - # This is the FTP Dialog.
# The Dialog enables the user: # (*) entering FTP server and user information. @@ -55,7 +50,10 @@ # I use here the DataAware concept to automatically update # the members ip, username, and password (via the methods setXXX(...)) # for details see the ui.events.DataAware classes.
-class FTPDialog(UnoDialog2, UIConsts): +class FTPDialog(WizardDialog): + RES_OK = 2 + RES_CANCEL = 3 + RES_HELP = 4 # A Constant used for the setLabel(int) method to change the # status-display. "unknown" is the status when the user first @@ -97,7 +95,7 @@ # @throws Exception def __init__(self, xmsf, p, oWizardResource): - super(FTPDialog, self).__init__(xmsf) + super(FTPDialog, self).__init__(xmsf, HID_FTP) self.publish = p templateDir = p.root.soTemplateDir @@ -113,8 +111,8 @@ self.ucb = UCB(xmsf) # set dialog properties... - self.setDialogProperties( True, 160, HelpIds.getHelpIdString(HID_FTP), - True, "FTPDialog", 167, 82, self.resources.resFTPDialog_title, 222) + self.setDialogProperties(True, 210, True, 104, 52, 1, 1, + self.resources.resFTPDialog_title, 310) # add controls to dialog self.build() @@ -174,13 +172,13 @@ (14, HelpIds.getHelpIdString(HID_FTP_BTN_PATH), self.resources.resbtnDir_value, "btnDir", 199, 112, 12, 16), self) self.btnOK = self.insertButton("btnOK", None, PROPNAMES_BUTTON2, - (14, HelpIds.getHelpIdString(HID_FTP_OK), self.resources.resbtnOK_value, "btnOK", 165, 142, PushButtonType_OK_value, 13, 50), self) + (14, HelpIds.getHelpIdString(HID_FTP_OK), self.resources.resbtnOK_value, "btnOK", 165, 142, self.RES_OK, 13, 50), self) self.btnCancel = self.insertButton("btnCancel", None, PROPNAMES_BUTTON2, - (14, HelpIds.getHelpIdString(HID_FTP_CANCEL), self.resources.resbtnCancel_value, "btnCancel", 113, 142, PushButtonType_CANCEL_value, 14, 50), self) + (14, HelpIds.getHelpIdString(HID_FTP_CANCEL), self.resources.resbtnCancel_value, "btnCancel", 113, 142, self.RES_CANCEL, 14, 50), self) self.btnHelp = self.insertButton("btnHelp", None, PROPNAMES_BUTTON2, - (14, "", self.resources.resbtnHelp_value, "btnHelp", 57, 142, PushButtonType_HELP_value, 15, 50), self) + (14, "", self.resources.resbtnHelp_value, "btnHelp", 57, 142, self.RES_HELP, 15, 50), self) # Make hostname, username and password text fields data aware. diff -Nru libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/FTPDialogResources.py libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/FTPDialogResources.py --- libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/FTPDialogResources.py 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/FTPDialogResources.py 2015-10-24 15:21:49.000000000 +0000 @@ -21,8 +21,6 @@ RID_COMMON_START = 500 def __init__(self, oWizardResource): - super(FTPDialogResources, self).__init__(xmsf, self.MODULE_NAME) - self.resFTPDialog_title = oWizardResource.getResText( self.RID_FTPDIALOG_START + 0) self.reslblUsername_value = oWizardResource.getResText( diff -Nru libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/WebWizardDialog.py libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/WebWizardDialog.py --- libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/WebWizardDialog.py 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/WebWizardDialog.py 2015-10-24 15:21:49.000000000 +0000 @@ -525,7 +525,7 @@ PropertyNames.PROPERTY_TABINDEX, PropertyNames.PROPERTY_WIDTH), (True, 12, HelpIds.getHelpIdString(HID6_DATE_SITE_CREATED), - "dateSiteCreated", 179, 124, 6, tabIndex + 1, 49), self) + "dateSiteCreated", 179, 124, 6, tabIndex + 1, 60), self) self.insertLabel("lblSiteUpdated", WebWizardDialog.PROPNAMES_LBL, (8, self.resources.reslblSiteUpdated_value, "lblSiteUpdated", 103, 144, 6, tabIndex + 1, 80)) @@ -540,7 +540,7 @@ PropertyNames.PROPERTY_TABINDEX, PropertyNames.PROPERTY_WIDTH), (True, 12, HelpIds.getHelpIdString(HID6_DATE_SITE_UPDATED), - "dateSiteUpdate", 179, 142, 6, tabIndex + 1, 49), self) + "dateSiteUpdate", 179, 142, 6, tabIndex + 1, 60), self) def buildStep7(self, disableFTP, exclamationURL): tabIndex = 700 diff -Nru libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/WWD_Events.py libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/WWD_Events.py --- libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/WWD_Events.py 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/WWD_Events.py 2015-10-24 15:21:49.000000000 +0000 @@ -459,7 +459,7 @@ zipFile = sd.callStoreDialog( self.settings.cp_DefaultSession.cp_OutDirectory, self.resources.resDefaultArchiveFilename) - self.setPublishUrl(ZIP_PUBLISHER, zipFile, 4) + self.setPublishUrl(ZIP_PUBLISHER, zipFile, 2) self.getPublisher(ZIP_PUBLISHER).overwriteApproved = True ''' diff -Nru libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/WWD_Startup.py libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/WWD_Startup.py --- libreoffice-l10n-5.0.2~rc2/wizards/com/sun/star/wizards/web/WWD_Startup.py 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/wizards/com/sun/star/wizards/web/WWD_Startup.py 2015-10-24 15:21:49.000000000 +0000 @@ -494,8 +494,8 @@ self.mountList(session.cp_GeneralInfo, self.genAware) task.advance(True) self.mountDataAware(session.cp_Publishing.getElement(LOCAL_PUBLISHER), 0) - self.mountDataAware(session.cp_Publishing.getElement(FTP_PUBLISHER), 1) - self.mountDataAware(session.cp_Publishing.getElement(ZIP_PUBLISHER), 2) + self.mountDataAware(session.cp_Publishing.getElement(ZIP_PUBLISHER), 1) + self.mountDataAware(session.cp_Publishing.getElement(FTP_PUBLISHER), 2) task.advance(True) self.sessionNameDA.setDataObject(session, True) self.chkSaveSettings.Model.State = 1 diff -Nru libreoffice-l10n-5.0.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-l10n-5.0.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-l10n-5.0.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -482,6 +482,11 @@ sal_Int32 nValue = ConversionHelper::convertTwipToMM100( nIntValue ); m_pImpl->GetTopContext()->Insert( PROP_PARA_FIRST_LINE_INDENT, uno::makeAny( - nValue )); + + // See above, need to inherit left margin from list style when first is set. + sal_Int32 nParaLeftMargin = m_pImpl->getCurrentNumberingProperty("IndentAt"); + if (nParaLeftMargin != 0) + m_pImpl->GetTopContext()->Insert(PROP_PARA_LEFT_MARGIN, uno::makeAny(nParaLeftMargin), /*bOverwrite=*/false); } break; case NS_ooxml::LN_CT_Ind_firstLine: @@ -2034,6 +2039,13 @@ rContext->Insert(PROP_PARA_RIGHT_MARGIN, uno::makeAny(nParaRightMargin)); } + + // Indent properties from the paragraph style have priority + // over the ones from the numbering styles in Word, not in + // Writer. + boost::optional oProperty; + if (pStyleSheetProperties && (oProperty = pStyleSheetProperties->getProperty(PROP_PARA_FIRST_LINE_INDENT))) + rContext->Insert(PROP_PARA_FIRST_LINE_INDENT, oProperty->second); } if( pStyleSheetProperties && pStyleSheetProperties->GetListLevel() >= 0 ) diff -Nru libreoffice-l10n-5.0.2~rc2/writerfilter/source/dmapper/NumberingManager.cxx libreoffice-l10n-5.0.3~rc2/writerfilter/source/dmapper/NumberingManager.cxx --- libreoffice-l10n-5.0.2~rc2/writerfilter/source/dmapper/NumberingManager.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/writerfilter/source/dmapper/NumberingManager.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -632,7 +632,18 @@ if (aMap.find("NumberingType") != aMap.end()) { sal_Int16 nNumberFormat = aMap["NumberingType"].get(); - if (nNumberFormat == style::NumberingType::NUMBER_NONE) + + // No need for a zero width space without a real LabelFollowedBy. + bool bLabelFollowedBy = true; + auto it = std::find_if(aLvlProps.begin(), aLvlProps.end(), [](const beans::PropertyValue& rValue) { return rValue.Name == "LabelFollowedBy"; }); + if (it != aLvlProps.end()) + { + sal_Int16 nValue; + if (it->Value >>= nValue) + bLabelFollowedBy = nValue != SvxNumberFormat::NOTHING; + } + + if (bLabelFollowedBy && nNumberFormat == style::NumberingType::NUMBER_NONE) rSuffix = OUString(static_cast(0x200B)); } } diff -Nru libreoffice-l10n-5.0.2~rc2/xmloff/inc/XMLBackgroundImageContext.hxx libreoffice-l10n-5.0.3~rc2/xmloff/inc/XMLBackgroundImageContext.hxx --- libreoffice-l10n-5.0.2~rc2/xmloff/inc/XMLBackgroundImageContext.hxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/xmloff/inc/XMLBackgroundImageContext.hxx 2015-10-24 15:21:49.000000000 +0000 @@ -30,6 +30,7 @@ class XMLBackgroundImageContext : public XMLElementPropertyContext { XMLPropertyState aPosProp; + sal_Int32 m_nBitmapModeIdx; XMLPropertyState aFilterProp; XMLPropertyState aTransparencyProp; @@ -58,6 +59,7 @@ sal_Int32 nPosIdx, sal_Int32 nFilterIdx, sal_Int32 nTransparencyIdx, + sal_Int32 nBitmapModeIdx, ::std::vector< XMLPropertyState > &rProps ); virtual ~XMLBackgroundImageContext(); diff -Nru libreoffice-l10n-5.0.2~rc2/xmloff/source/style/PageMasterStyleMap.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/style/PageMasterStyleMap.cxx --- libreoffice-l10n-5.0.2~rc2/xmloff/source/style/PageMasterStyleMap.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/xmloff/source/style/PageMasterStyleMap.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -140,7 +140,7 @@ PLMAP( "FillBitmapLogicalSize", XML_NAMESPACE_DRAW, XML_FILL_IMAGE_WIDTH, XML_SW_TYPE_LOGICAL_SIZE|MID_FLAG_MULTI_PROPERTY, 0 ), PLMAP( "FillBitmapSizeY", XML_NAMESPACE_DRAW, XML_FILL_IMAGE_HEIGHT, XML_SW_TYPE_FILLBITMAPSIZE|MID_FLAG_MULTI_PROPERTY, 0 ), PLMAP( "FillBitmapLogicalSize", XML_NAMESPACE_DRAW, XML_FILL_IMAGE_HEIGHT, XML_SW_TYPE_LOGICAL_SIZE|MID_FLAG_MULTI_PROPERTY, 0 ), - PLMAP( "FillBitmapMode", XML_NAMESPACE_STYLE, XML_REPEAT, XML_SW_TYPE_BITMAP_MODE|MID_FLAG_MULTI_PROPERTY, 0 ), + PLMAP( "FillBitmapMode", XML_NAMESPACE_STYLE, XML_REPEAT, XML_SW_TYPE_BITMAP_MODE|MID_FLAG_MULTI_PROPERTY, CTF_PM_FILLBITMAPMODE ), PLMAP( "FillBitmapPositionOffsetX", XML_NAMESPACE_DRAW, XML_FILL_IMAGE_REF_POINT_X, XML_TYPE_PERCENT, 0 ), PLMAP( "FillBitmapPositionOffsetY", XML_NAMESPACE_DRAW, XML_FILL_IMAGE_REF_POINT_Y, XML_TYPE_PERCENT, 0 ), PLMAP( "FillBitmapRectanglePoint", XML_NAMESPACE_DRAW, XML_FILL_IMAGE_REF_POINT, XML_SW_TYPE_BITMAP_REFPOINT, 0 ), diff -Nru libreoffice-l10n-5.0.2~rc2/xmloff/source/style/PagePropertySetContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/style/PagePropertySetContext.cxx --- libreoffice-l10n-5.0.2~rc2/xmloff/source/style/PagePropertySetContext.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/xmloff/source/style/PagePropertySetContext.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -96,6 +96,7 @@ rProp.mnIndex-2, rProp.mnIndex-1, -1, + mxMapper->getPropertySetMapper()->FindEntryIndex(CTF_PM_FILLBITMAPMODE), rProperties ); break; diff -Nru libreoffice-l10n-5.0.2~rc2/xmloff/source/style/XMLBackgroundImageContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/style/XMLBackgroundImageContext.cxx --- libreoffice-l10n-5.0.2~rc2/xmloff/source/style/XMLBackgroundImageContext.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/xmloff/source/style/XMLBackgroundImageContext.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -19,6 +19,7 @@ #include +#include #include @@ -332,9 +333,11 @@ sal_Int32 nPosIdx, sal_Int32 nFilterIdx, sal_Int32 nTransparencyIdx, + sal_Int32 nBitmapModeIdx, ::std::vector< XMLPropertyState > &rProps ) : XMLElementPropertyContext( rImport, nPrfx, rLName, rProp, rProps ), aPosProp( nPosIdx ), + m_nBitmapModeIdx(nBitmapModeIdx), aFilterProp( nFilterIdx ), aTransparencyProp( nTransparencyIdx ), nTransparency( 0 ) @@ -399,7 +402,40 @@ XMLElementPropertyContext::EndElement(); if( -1 != aPosProp.mnIndex ) - rProperties.push_back( aPosProp ); + { + // See if a FillBitmapMode property is already set, in that case + // BackGraphicLocation will be ignored. + bool bFound = false; + if (m_nBitmapModeIdx != -1) + { + for (XMLPropertyState& rProperty : rProperties) + { + if (rProperty.mnIndex == m_nBitmapModeIdx) + { + bFound = true; + + // Found, so map the old property to the new one. + switch (ePos) + { + case GraphicLocation_TILED: + rProperty.maValue <<= drawing::BitmapMode_REPEAT; + break; + case GraphicLocation_AREA: + rProperty.maValue <<= drawing::BitmapMode_STRETCH; + break; + case GraphicLocation_MIDDLE_MIDDLE: + rProperty.maValue <<= drawing::BitmapMode_NO_REPEAT; + break; + default: + break; + } + break; + } + } + } + if (!bFound) + rProperties.push_back( aPosProp ); + } if( -1 != aFilterProp.mnIndex ) rProperties.push_back( aFilterProp ); if( -1 != aTransparencyProp.mnIndex ) diff -Nru libreoffice-l10n-5.0.2~rc2/xmloff/source/text/XMLTextPropertySetContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/text/XMLTextPropertySetContext.cxx --- libreoffice-l10n-5.0.2~rc2/xmloff/source/text/XMLTextPropertySetContext.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/xmloff/source/text/XMLTextPropertySetContext.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -114,6 +114,7 @@ rProp.mnIndex-2, rProp.mnIndex-1, nTranspIndex, + -1, rProperties ); } break; diff -Nru libreoffice-l10n-5.0.2~rc2/xmloff/source/text/XMLTextShapeStyleContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/text/XMLTextShapeStyleContext.cxx --- libreoffice-l10n-5.0.2~rc2/xmloff/source/text/XMLTextShapeStyleContext.cxx 2015-09-17 13:33:12.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/xmloff/source/text/XMLTextShapeStyleContext.cxx 2015-10-24 15:21:49.000000000 +0000 @@ -111,6 +111,7 @@ rProp.mnIndex-2, rProp.mnIndex-1, rProp.mnIndex-3, + -1, rProperties ); break; }