diff -Nru libreoffice-l10n-5.0.2/basic/source/classes/sbxmod.cxx libreoffice-l10n-5.0.3~rc2/basic/source/classes/sbxmod.cxx --- libreoffice-l10n-5.0.2/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/basic/source/inc/filefmt.hxx libreoffice-l10n-5.0.3~rc2/basic/source/inc/filefmt.hxx --- libreoffice-l10n-5.0.2/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/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/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/configure.ac libreoffice-l10n-5.0.3~rc2/configure.ac --- libreoffice-l10n-5.0.2/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/connectivity/source/commontools/FValue.cxx libreoffice-l10n-5.0.3~rc2/connectivity/source/commontools/FValue.cxx --- libreoffice-l10n-5.0.2/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/connectivity/source/drivers/mork/MConnection.cxx libreoffice-l10n-5.0.3~rc2/connectivity/source/drivers/mork/MConnection.cxx --- libreoffice-l10n-5.0.2/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/dbaccess/source/ui/querydesign/TableWindowTitle.cxx libreoffice-l10n-5.0.3~rc2/dbaccess/source/ui/querydesign/TableWindowTitle.cxx --- libreoffice-l10n-5.0.2/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/debian/changelog libreoffice-l10n-5.0.3~rc2/debian/changelog --- libreoffice-l10n-5.0.2/debian/changelog 2015-10-01 13:55:55.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/changelog 2015-10-28 22:22:11.000000000 +0000 @@ -1,3 +1,30 @@ +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 diff -Nru libreoffice-l10n-5.0.2/debian/config libreoffice-l10n-5.0.3~rc2/debian/config --- libreoffice-l10n-5.0.2/debian/config 2015-10-01 13:55:55.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) , 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' --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= +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/debian/control libreoffice-l10n-5.0.3~rc2/debian/control --- libreoffice-l10n-5.0.2/debian/control 2015-10-01 13:55:59.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) , 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: 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/debian/patches/integraltrans.diff libreoffice-l10n-5.0.3~rc2/debian/patches/integraltrans.diff --- libreoffice-l10n-5.0.2/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/debian/patches/quicklistfix.diff libreoffice-l10n-5.0.3~rc2/debian/patches/quicklistfix.diff --- libreoffice-l10n-5.0.2/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/debian/patches/series libreoffice-l10n-5.0.3~rc2/debian/patches/series --- libreoffice-l10n-5.0.2/debian/patches/series 2015-10-01 13:25:13.000000000 +0000 +++ libreoffice-l10n-5.0.3~rc2/debian/patches/series 2015-10-28 21:05:18.000000000 +0000 @@ -28,5 +28,8 @@ rsc-no-error-about-unknown-switch.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/debian/patches/unity-default-human.diff libreoffice-l10n-5.0.3~rc2/debian/patches/unity-default-human.diff --- libreoffice-l10n-5.0.2/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/download.lst libreoffice-l10n-5.0.3~rc2/download.lst --- libreoffice-l10n-5.0.2/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/editeng/source/editeng/edtspell.cxx libreoffice-l10n-5.0.3~rc2/editeng/source/editeng/edtspell.cxx --- libreoffice-l10n-5.0.2/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/editeng/source/editeng/eerdll.cxx libreoffice-l10n-5.0.3~rc2/editeng/source/editeng/eerdll.cxx --- libreoffice-l10n-5.0.2/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/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/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/external/boost/UnpackedTarball_boost.mk libreoffice-l10n-5.0.3~rc2/external/boost/UnpackedTarball_boost.mk --- libreoffice-l10n-5.0.2/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/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/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/external/firebird/firebird-macosx.patch.1 libreoffice-l10n-5.0.3~rc2/external/firebird/firebird-macosx.patch.1 --- libreoffice-l10n-5.0.2/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/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/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/external/hunspell/UnpackedTarball_hunspell.mk libreoffice-l10n-5.0.3~rc2/external/hunspell/UnpackedTarball_hunspell.mk --- libreoffice-l10n-5.0.2/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/external/libebook/ExternalProject_libebook.mk libreoffice-l10n-5.0.3~rc2/external/libebook/ExternalProject_libebook.mk --- libreoffice-l10n-5.0.2/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/external/libmspub/ExternalProject_libmspub.mk libreoffice-l10n-5.0.3~rc2/external/libmspub/ExternalProject_libmspub.mk --- libreoffice-l10n-5.0.2/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/external/liborcus/ExternalProject_liborcus.mk libreoffice-l10n-5.0.3~rc2/external/liborcus/ExternalProject_liborcus.mk --- libreoffice-l10n-5.0.2/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/external/libpagemaker/ExternalProject_libpagemaker.mk libreoffice-l10n-5.0.3~rc2/external/libpagemaker/ExternalProject_libpagemaker.mk --- libreoffice-l10n-5.0.2/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/external/librevenge/ExternalProject_librevenge.mk libreoffice-l10n-5.0.3~rc2/external/librevenge/ExternalProject_librevenge.mk --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/extras/source/truetype/symbol/opens___.ttf and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/extras/source/truetype/symbol/opens___.ttf differ diff -Nru libreoffice-l10n-5.0.2/extras/source/truetype/symbol/OpenSymbol.sfd libreoffice-l10n-5.0.3~rc2/extras/source/truetype/symbol/OpenSymbol.sfd --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/filter/qa/cppunit/data/psd/pass/hang-1.psd and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/filter/qa/cppunit/data/psd/pass/hang-1.psd differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/filter/qa/cppunit/data/ras/fail/hang-1.ras and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/filter/qa/cppunit/data/ras/fail/hang-1.ras differ diff -Nru libreoffice-l10n-5.0.2/filter/source/graphic/GraphicExportFilter.cxx libreoffice-l10n-5.0.3~rc2/filter/source/graphic/GraphicExportFilter.cxx --- libreoffice-l10n-5.0.2/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/filter/source/graphicfilter/ipsd/ipsd.cxx libreoffice-l10n-5.0.3~rc2/filter/source/graphicfilter/ipsd/ipsd.cxx --- libreoffice-l10n-5.0.2/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/filter/source/graphicfilter/iras/iras.cxx libreoffice-l10n-5.0.3~rc2/filter/source/graphicfilter/iras/iras.cxx --- libreoffice-l10n-5.0.2/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/fpicker/source/office/iodlg.cxx libreoffice-l10n-5.0.3~rc2/fpicker/source/office/iodlg.cxx --- libreoffice-l10n-5.0.2/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/fpicker/source/office/PlacesListBox.cxx libreoffice-l10n-5.0.3~rc2/fpicker/source/office/PlacesListBox.cxx --- libreoffice-l10n-5.0.2/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/fpicker/source/office/PlacesListBox.hxx libreoffice-l10n-5.0.3~rc2/fpicker/source/office/PlacesListBox.hxx --- libreoffice-l10n-5.0.2/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/fpicker/source/win32/filepicker/VistaFilePicker.cxx libreoffice-l10n-5.0.3~rc2/fpicker/source/win32/filepicker/VistaFilePicker.cxx --- libreoffice-l10n-5.0.2/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/fpicker/uiconfig/ui/explorerfiledialog.ui libreoffice-l10n-5.0.3~rc2/fpicker/uiconfig/ui/explorerfiledialog.ui --- libreoffice-l10n-5.0.2/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/framework/source/uielement/generictoolbarcontroller.cxx libreoffice-l10n-5.0.3~rc2/framework/source/uielement/generictoolbarcontroller.cxx --- libreoffice-l10n-5.0.2/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/framework/source/uielement/menubarmanager.cxx libreoffice-l10n-5.0.3~rc2/framework/source/uielement/menubarmanager.cxx --- libreoffice-l10n-5.0.2/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/.gitreview libreoffice-l10n-5.0.3~rc2/.gitreview --- libreoffice-l10n-5.0.2/.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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/areas3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areas3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/areas_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areas_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/areasfull3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areasfull3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/areasfull_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areasfull_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/areaspiled3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areaspiled3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/areaspiled_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/areaspiled_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/bar3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bar3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/bar3ddeep_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bar3ddeep_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/bar_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bar_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/barpercent3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barpercent3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/barpercent_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barpercent_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/barstack3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barstack3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/barstack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/barstack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/bubble_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/bubble_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columnline_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnline_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columnpercent3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnpercent3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columnpercent_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnpercent_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columns3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columns3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columns3ddeep_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columns3ddeep_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columns_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columns_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columnstack3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnstack3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columnstack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnstack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/columnstackline_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/columnstackline_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/conedeep_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conedeep_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/conehorideep_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conehorideep_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/conehoripercent_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conehoripercent_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/conehoristack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conehoristack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/conepercent_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conepercent_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/conestack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/conestack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinder_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinder_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderdeep_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderdeep_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderhori_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhori_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderhorideep_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhorideep_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderhoriprocent_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhoriprocent_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderhoristack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderhoristack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderpercent_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderpercent_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/cylinderstack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/cylinderstack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/donut3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donut3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/donut3dexploded_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donut3dexploded_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/donut_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donut_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/donutexploded_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/donutexploded_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/net_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/net_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netfill_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netfill_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netlinepoint_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netlinepoint_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netlinepointstack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netlinepointstack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netpoint_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netpoint_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netpointstack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netpointstack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netstack_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netstack_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/netstackfill_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/netstackfill_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostackdirect3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirect3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostackdirectboth_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirectboth_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostackdirectlines_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirectlines_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostackdirectpoints_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackdirectpoints_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostackstepped3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostackstepped3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostacksteppedboth_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostacksteppedboth_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/nostacksteppedlines_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/nostacksteppedlines_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/pie3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pie3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/pie3dexploded_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pie3dexploded_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/pie_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pie_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/pieexploded_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/pieexploded_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/typebar_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/typebar_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/typecolumn_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/typecolumn_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/valueaxisdirect3d_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirect3d_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/valueaxisdirectboth_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirectboth_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/valueaxisdirectlines_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirectlines_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/chart2/res/valueaxisdirectpoints_52x60.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/chart2/res/valueaxisdirectpoints_52x60.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_addprintarea.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_addprintarea.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_addtable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_addtable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_bezierinsert.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_bezierinsert.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_borderdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_borderdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_changecasetolower.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_changecasetolower.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_changecasetoupper.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_changecasetoupper.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_combobox.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_combobox.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_config.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_config.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_contourdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_contourdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_datadatapilotrun.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_datadatapilotrun.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dataranges.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dataranges.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dbdtableedit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbdtableedit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dbnewform.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewform.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dbnewquery.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewquery.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dbnewreport.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewreport.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dbnewtable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbnewtable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_dbtableedit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_dbtableedit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_deletetable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_deletetable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_designerdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_designerdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramarea.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramarea.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramaxisx.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisx.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramaxisxyz.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisxyz.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramaxisy.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisy.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramaxisz.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramaxisz.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramdata.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramdata.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_diagramwall.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_diagramwall.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_drawchart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_drawchart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_draw.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_draw.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_drawtext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_drawtext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_edithyperlink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_edithyperlink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_editstyle.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_editstyle.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_fontdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_fontdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_fontheight.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_fontheight.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_fontworkgalleryfloater.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_fontworkgalleryfloater.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_formatselection.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_formatselection.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_formdesigntools.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_formdesigntools.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_freezepanes.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_freezepanes.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_goalseekdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_goalseekdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_grow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_grow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_hideslide.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_hideslide.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_hyperlinkdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_hyperlinkdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_iconsetformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_iconsetformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_importdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_importdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_importfromfile.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_importfromfile.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_inscellsctrl.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_inscellsctrl.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertbookmark.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertbookmark.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertcolumnsafter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertcolumnsafter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertcolumns.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertcolumns.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertctrl.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertctrl.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertdraw.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertdraw.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertendnote.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertendnote.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertformcombo.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertformcombo.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertgraphic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertgraphic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_inserthyperlink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_inserthyperlink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertmath.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertmath.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertmenutitles.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertmenutitles.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertobjectchart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertobjectchart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertobjectdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertobjectdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertobject.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertobject.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertpage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertpage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertrowsafter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertrowsafter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_insertsymbol.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_insertsymbol.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_inserttable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_inserttable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_legend.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_legend.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_modifypage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_modifypage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_moduledialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_moduledialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_morecontrols.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_morecontrols.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_movepagedown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepagedown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_movepagefirst.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepagefirst.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_movepagelast.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepagelast.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_movepageup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_movepageup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_newdoc.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_newdoc.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_numberformatpercent.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_numberformatpercent.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_objectcatalog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_objectcatalog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_ordercrit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_ordercrit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_outlinedown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlinedown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_outlineformat.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineformat.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_outlineleft.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineleft.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_outlineright.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineright.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_outlineup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_outlineup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_overline.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_overline.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_paragraphdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_paragraphdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_presentationcurrentslide.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_presentationcurrentslide.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_printdefault.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_printdefault.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_printersetup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_printersetup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_print.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_print.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_protect.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_protect.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_removehyperlink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_removehyperlink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_scaletext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_scaletext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_shadowed.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_shadowed.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_shrink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_shrink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_sortascending.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_sortascending.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_sortdescending.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_sortdescending.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_spacepara15.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_spacepara15.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_spacepara1.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_spacepara1.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_spacepara2.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_spacepara2.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_starchartdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_starchartdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_starshapes.signet.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_starshapes.signet.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_stylenewbyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_stylenewbyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_styleupdatebyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_styleupdatebyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_subscript.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_subscript.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_symbolcatalogue.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_symbolcatalogue.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_tabdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_tabdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_text.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_text.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_texttoolbox.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_texttoolbox.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_thesaurusdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_thesaurusdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_togglelegend.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_togglelegend.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_transformdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_transformdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_unsetcellsreadonly.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_unsetcellsreadonly.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_verticaltext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_verticaltext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/lc_wraptext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/lc_wraptext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_borderdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_borderdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_changecasetolower.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_changecasetolower.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_config.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_config.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_contourdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_contourdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_datadatapilotrun.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_datadatapilotrun.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dataranges.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dataranges.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbdtableedit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbdtableedit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbformopen.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbformopen.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbnewform.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbnewform.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbnewquery.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbnewquery.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbnewreport.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbnewreport.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbqueryedit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbqueryedit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbqueryopen.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbqueryopen.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbquerypropertiesdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbquerypropertiesdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbreportopen.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbreportopen.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbtableedit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbtableedit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_dbtableopen.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_dbtableopen.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_designerdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_designerdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_diagramarea.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramarea.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_diagramaxisxyz.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramaxisxyz.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_diagramaxisz.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramaxisz.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_diagramwall.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_diagramwall.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_doubleclicktextedit.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_doubleclicktextedit.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_drawchart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_drawchart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_draw.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_draw.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_drawtext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_drawtext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_editstyled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_editstyled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_exportdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_exportdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_fontheight.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_fontheight.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_formatselection.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_formatselection.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_formdesigntools.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_formdesigntools.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_framedialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_framedialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_goalseekdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_goalseekdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_hideslide.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_hideslide.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_imagemapdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_imagemapdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_importdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_importdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertcolumnsafter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertcolumnsafter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertcolumnsbefore.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertcolumnsbefore.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertcolumns.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertcolumns.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertendnote.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertendnote.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertmenutitles.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertmenutitles.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertobjectchart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertobjectchart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertobjectdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertobjectdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertobject.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertobject.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertpage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertpage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_insertrowsafter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_insertrowsafter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_legend.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_legend.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_modifypage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_modifypage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_moduledialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_moduledialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_morecontrols.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_morecontrols.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_movepagedown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepagedown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_movepagefirst.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepagefirst.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_movepagelast.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepagelast.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_movepageup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_movepageup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_newdoc.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_newdoc.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_objectcatalog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_objectcatalog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_outlineleft.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_outlineleft.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_outlineright.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_outlineright.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_overline.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_overline.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_pagedialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_pagedialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_paragraphdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_paragraphdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_printdefault.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_printdefault.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_printersetup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_printersetup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_print.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_print.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_removehyperlink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_removehyperlink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_scaletext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_scaletext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_shadowed.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_shadowed.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_spacepara15.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_spacepara15.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_spacepara1.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_spacepara1.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_spacepara2.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_spacepara2.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_starchartdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_starchartdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_starshapes.signet.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_starshapes.signet.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_styleupdatebyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_styleupdatebyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_tabledialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_tabledialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_text.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_text.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_texttoolbox.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_texttoolbox.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_thesaurusdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_thesaurusdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_togglelegend.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_togglelegend.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_underlinedouble.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_underlinedouble.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_unsetcellsreadonly.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_unsetcellsreadonly.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/cmd/sc_wraptext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/cmd/sc_wraptext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/dbaccess/res/db.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/dbaccess/res/db.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/fpicker/res/fp014.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/fpicker/res/fp014.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/framework/res/folder_32.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/folder_32.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/framework/res/info_26.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/info_26.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/framework/res/recent-documents.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/recent-documents.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/framework/res/remote-documents.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/framework/res/remote-documents.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/helping/note.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/helping/note.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/helping/tip.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/helping/tip.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/helping/warning.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/helping/warning.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/im30827.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/im30827.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/lx03250.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/lx03250.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/lx03251.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/lx03251.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/odb_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odb_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/odf_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odf_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/odg_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odg_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/odp_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odp_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/odt_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/odt_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/otp_48_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/otp_48_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/recentdoc_remove_highlighted.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/recentdoc_remove_highlighted.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/res/recentdoc_remove.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/res/recentdoc_remove.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/imglst/nc05.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/imglst/nc05.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/res/date.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/date.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/res/dropcopy.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/dropcopy.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/res/droplink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/droplink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/res/dropurl.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/dropurl.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/res/file.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/file.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sc/res/fx.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sc/res/fx.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/click_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/click_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/effect_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effect_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/effectfade_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectfade_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/effectole_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectole_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/effectpath_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectpath_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/effectshape_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/effectshape_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/fade_effect_indicator.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/fade_effect_indicator.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/foilh03.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foilh03.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/foilh06.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foilh06.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/foilh09.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foilh09.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/foiln01.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/foiln01.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/getallob.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/getallob.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/hlplhorz.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/hlplhorz.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/hlppoint.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/hlppoint.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/layout_head03.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_head03.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/layout_head04.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_head04.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/layout_head06.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_head06.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/layout_vertical01.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_vertical01.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/layout_vertical02.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/layout_vertical02.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/ole.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/ole.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sd/res/page.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sd/res/page.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-large.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-large.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-small.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sfx2/res/symphony/sidebar-style-small.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/svx/res/markers.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/svx/res/markers.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/svx/res/ole.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/svx/res/ole.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sw/imglst/nc20004.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sw/imglst/nc20004.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/sw/imglst/sr20010.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/sw/imglst/sr20010.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/breeze/vcl/res/index.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/breeze/vcl/res/index.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/crystal/cmd/lc_autosum.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/lc_autosum.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/crystal/cmd/lc_grid.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/lc_grid.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/crystal/cmd/lc_styleapply.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/lc_styleapply.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/crystal/cmd/sc_animationmode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/sc_animationmode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/crystal/cmd/sc_switchxformsdesignmode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/cmd/sc_switchxformsdesignmode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/crystal/sc/imglst/lc26048.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/crystal/sc/imglst/lc26048.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/galaxy/cmd/sc_freezepanes.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/cmd/sc_freezepanes.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/galaxy/res/helpimg/rechenlt.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/res/helpimg/rechenlt.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/galaxy/res/recentdoc_remove_highlighted.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/res/recentdoc_remove_highlighted.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/galaxy/res/recentdoc_remove.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/res/recentdoc_remove.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/galaxy/sfx2/res/logo.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/sfx2/res/logo.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/galaxy/sfx2/res/startcenter-logo.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/galaxy/sfx2/res/startcenter-logo.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/lc_moveupsubitems.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_moveupsubitems.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/lc_starshapes.star4.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_starshapes.star4.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/lc_symbolshapes.forbidden.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_symbolshapes.forbidden.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/lc_symbolshapes.moon.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_symbolshapes.moon.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/lc_symbolshapes.sun.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/lc_symbolshapes.sun.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_arrowshapes.circular-arrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_browsebackward.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_browsebackward.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_downsearch.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_downsearch.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_incrementlevel.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_incrementlevel.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_movedown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_movedown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_navigateback.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_navigateback.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_outlinedown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_outlinedown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_outlineleft.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_outlineleft.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_setdocumentproperties.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_setdocumentproperties.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_starshapes.star6.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_starshapes.star6.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_symbolshapes.lightning.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_symbolshapes.lightning.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/cmd/sc_symbolshapes.moon.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/cmd/sc_symbolshapes.moon.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/reportdesign/res/sc30769.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/reportdesign/res/sc30769.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/res/sc06301.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/res/sc06301.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/res/sx10715.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/res/sx10715.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/starmath/res/al21811.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/starmath/res/al21811.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/svtools/res/back_small.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/svtools/res/back_small.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/svx/res/fontworkalignjustified_26.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/svx/res/fontworkalignjustified_26.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/human/sw/res/one_left.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/human/sw/res/one_left.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_fontworkshapetype.fontwork-arch-right-curve.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/lc_starshapes.star4.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_starshapes.star4.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/lc_symbolshapes.forbidden.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_symbolshapes.forbidden.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/lc_symbolshapes.moon.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_symbolshapes.moon.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/lc_symbolshapes.sun.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/lc_symbolshapes.sun.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/sc_arrowshapes.circular-arrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/sc_starshapes.star6.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_starshapes.star6.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/sc_symbolshapes.lightning.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_symbolshapes.lightning.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/industrial/cmd/sc_symbolshapes.moon.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/industrial/cmd/sc_symbolshapes.moon.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/avmedia/res/av02050.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/avmedia/res/av02050.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/avmedia/res/av02051.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/avmedia/res/av02051.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/bg/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/bg/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/bg/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/bg/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/ca/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ca/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/ca/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ca/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/de/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/de/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/de/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/de/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/es/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/es/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/es/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/es/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/fr/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/fr/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/hu/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/hu/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/hu/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/hu/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/it/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/it/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/it/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/it/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/km/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/km/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/km/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/km/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/ko/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ko/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/ko/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ko/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/lc_autosum.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_autosum.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/lc_grid.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_grid.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/lc_inserttimefield.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_inserttimefield.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/lc_styleapply.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_styleapply.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/lc_timefield.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/lc_timefield.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/nl/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/nl/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/nl/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/nl/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/pl/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pl/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/pl/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pl/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/pt/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pt/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/pt-BR/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/pt-BR/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/ru/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ru/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/ru/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/ru/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sc_animationmode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sc_animationmode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sc_switchxformsdesignmode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sc_switchxformsdesignmode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sl/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sl/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sl/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sl/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sv/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sv/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/sv/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/sv/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/tr/lc_bold.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/tr/lc_bold.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/cmd/tr/sc_italic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/cmd/tr/sc_italic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/res/sx10715.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/res/sx10715.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/res/sx10769.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/res/sx10769.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/sc/imglst/lc26048.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/sc/imglst/lc26048.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/sd/res/breakplayingblue_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/sd/res/breakplayingblue_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/sd/res/stopplayingblue_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/sd/res/stopplayingblue_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/starmath/res/al21811.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/starmath/res/al21811.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/oxygen/svx/res/fontworkalignjustified_26.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/oxygen/svx/res/fontworkalignjustified_26.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_arc.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_arc.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_arrowshapes.quad-arrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_autopilotmenu.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_autopilotmenu.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.cloud-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.cloud-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-1.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-1.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-2.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-2.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-3.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.line-callout-3.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.rectangular-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.rectangular-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.round-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.round-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_calloutshapes.round-rectangular-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_calloutshapes.round-rectangular-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_circlearc.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlearc.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_circlecut.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlecut.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_circlecut_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlecut_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_circlepie.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlepie.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_circlepie_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circlepie_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_circle_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_circle_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_colorscaleformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_colorscaleformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_conditionalformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_conditionalformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_conditionalformatmenu.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_conditionalformatmenu.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_crop.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_crop.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_currencyfield.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_currencyfield.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_databarformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_databarformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_deletepage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_deletepage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_drawchart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_drawchart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_duplicatepage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_duplicatepage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_ellipsecut.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_ellipsecut.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_ellipse_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_ellipse_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_euroconverter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_euroconverter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_exportto.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_exportto.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_fillcolor.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_fillcolor.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_fliphorizontal.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_fliphorizontal.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_flipvertical.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_flipvertical.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_freeline.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_freeline.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_freeline_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_freeline_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_iconsetformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_iconsetformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_importfromfile.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_importfromfile.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_insertbookmark.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertbookmark.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_insertendnote.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertendnote.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_insertfootnote.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertfootnote.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_inserthyperlink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_inserthyperlink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_insertpage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_insertpage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linearrowcircle.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowcircle.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linearrowend.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowend.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linearrows.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrows.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linearrowsquare.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowsquare.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linearrowstart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linearrowstart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linecirclearrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linecirclearrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_line_diagonal.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_line_diagonal.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_line.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_line.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_linesquarearrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_linesquarearrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_measureline.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_measureline.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_numberformatdecimal.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_numberformatdecimal.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_numberformatpercent.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_numberformatpercent.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_pagesetup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_pagesetup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_pie.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_pie.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_pie_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_pie_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_presentationcurrentslide.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_presentationcurrentslide.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_presentation.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_presentation.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_resetattributes.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_resetattributes.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_searchdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_searchdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_showbookview.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_showbookview.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_showmultiplepages.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_showmultiplepages.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_showtwopages.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_showtwopages.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_slidemasterpage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_slidemasterpage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_stylenewbyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_stylenewbyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_styleupdatebyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_styleupdatebyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_trackchanges.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_trackchanges.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_wraptext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_wraptext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/lc_zoommode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/lc_zoommode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_arc.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_arc.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_assignlayout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_assignlayout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_autopilotmenu.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_autopilotmenu.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_circlearc.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlearc.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_circlecut.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlecut.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_circlecut_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlecut_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_circlepie.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlepie.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_circlepie_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circlepie_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_circle_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_circle_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_colorscaleformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_colorscaleformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_conditionalformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_conditionalformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_conditionalformatmenu.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_conditionalformatmenu.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_crop.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_crop.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_currencyfield.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_currencyfield.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_databarformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_databarformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_deletepage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_deletepage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_drawchart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_drawchart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_duplicatepage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_duplicatepage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_ellipsecut.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_ellipsecut.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_ellipsecut_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_ellipsecut_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_ellipse_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_ellipse_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_euroconverter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_euroconverter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_exportto.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_exportto.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_fillcolor.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_fillcolor.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_fliphorizontal.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_fliphorizontal.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_iconsetformatdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_iconsetformatdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_importfromfile.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_importfromfile.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_insertbookmark.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertbookmark.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_insertendnote.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertendnote.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_insertfootnote.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertfootnote.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_insertgraphic.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertgraphic.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_inserthyperlink.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_inserthyperlink.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_insertpage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_insertpage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_linearrowcircle.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrowcircle.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_linearrows.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrows.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_linearrowsquare.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrowsquare.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_linearrowstart.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linearrowstart.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_linecirclearrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_linecirclearrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_line_diagonal.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_line_diagonal.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_line.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_line.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_measureline.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_measureline.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_numberformatdecimal.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_numberformatdecimal.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_numberformatpercent.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_numberformatpercent.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_pagesetup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_pagesetup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_pie.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_pie.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_pie_unfilled.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_pie_unfilled.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_presentationcurrentslide.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_presentationcurrentslide.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_presentationlayout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_presentationlayout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_presentation.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_presentation.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_resetattributes.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_resetattributes.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_searchdialog.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_searchdialog.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_showbookview.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_showbookview.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_showmultiplepages.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_showmultiplepages.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_showtwopages.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_showtwopages.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_slidemasterpage.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_slidemasterpage.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_stylenewbyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_stylenewbyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_styleupdatebyexample.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_styleupdatebyexample.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_wraptext.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_wraptext.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/cmd/sc_zoommode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/cmd/sc_zoommode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/framework/res/folder_32.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/framework/res/folder_32.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/framework/res/recent-documents.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/framework/res/recent-documents.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/framework/res/templates_32.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/framework/res/templates_32.png differ diff -Nru libreoffice-l10n-5.0.2/icon-themes/sifr/links.txt libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/links.txt --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/lx03253.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/lx03253.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/lx03254.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/lx03254.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/lx03255.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/lx03255.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/odb_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odb_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/odf_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odf_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/odg_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odg_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/odm_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odm_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/odp_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odp_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/ods_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/ods_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/odt_32_8.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/odt_32_8.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/sx03253.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/sx03253.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/sx03254.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/sx03254.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/res/sx03255.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/res/sx03255.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/svx/res/doc_modified_feedback.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/svx/res/doc_modified_feedback.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/svx/res/selection_10x22.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/svx/res/selection_10x22.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/imglst/sf03.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/imglst/sf03.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/doublepage_10x22.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/doublepage_10x22.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/emptypage_10x14.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/emptypage_10x14.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA3_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA4_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeA5_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB4_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeB5_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizeC5_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsizecopy_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A3_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A4_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_A5_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B4_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_B5_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_C5_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/documentsize_L_copy_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_mirror_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_narrow_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_nomal_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/format_L_wide_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatmirror_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatmirror_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnarrow_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnormal_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatnormal_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatwide_24x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/sidebar/pageproppanel/formatwide_24x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/sifr/sw/res/twopages_10x24.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/sifr/sw/res/twopages_10x24.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/chart2/res/typearea_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typearea_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/chart2/res/typebubble_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typebubble_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/chart2/res/typenet_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typenet_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/chart2/res/typepointline_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typepointline_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/chart2/res/typestock_16.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/chart2/res/typestock_16.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_aligncenter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_aligncenter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_aligndown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_aligndown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_alignmiddle.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_alignmiddle.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_aligntop.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_aligntop.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_alignup.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_alignup.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_alignverticalcenter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_alignverticalcenter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_bezierdelete.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_bezierdelete.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_crop.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_crop.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_datadatapilotrun.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_datadatapilotrun.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_deletetable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_deletetable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_entirecolumn.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_entirecolumn.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_entirerow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_entirerow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_flipvertical.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_flipvertical.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_insertcellsdown.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_insertcellsdown.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_insertcellsright.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_insertcellsright.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_inserttable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_inserttable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_mergecells.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_mergecells.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_objectalignleft.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_objectalignleft.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_objectalign.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_objectalign.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_objectalignright.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_objectalignright.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_optimizetable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_optimizetable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_selecttable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_selecttable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_textdirectionlefttoright.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_textdirectionlefttoright.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_togglemergecells.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_togglemergecells.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_toggleobjectrotatemode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_toggleobjectrotatemode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/lc_togglesheetgrid.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/lc_togglesheetgrid.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_arrowshapes.circular-arrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_arrowshapes.quad-arrow-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_arrowshapes.quad-arrow-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_arrowshapes.right-arrow-callout.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_arrowshapes.right-arrow-callout.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_crop.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_crop.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_datafilterstandardfilter.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_datafilterstandardfilter.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_flipvertical.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_flipvertical.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_freezepanes.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_freezepanes.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_inserttable.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_inserttable.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_linewidth.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_linewidth.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_objectalignleft.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_objectalignleft.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_objectalign.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_objectalign.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_objectalignright.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_objectalignright.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_outlinefont.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_outlinefont.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/cmd/sc_toggleobjectrotatemode.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/cmd/sc_toggleobjectrotatemode.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/res/helpimg/note.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/res/helpimg/note.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/res/helpimg/tip.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/res/helpimg/tip.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/res/helpimg/warning.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/res/helpimg/warning.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/sd/res/layout_vertical01.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sd/res/layout_vertical01.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/sd/res/layout_vertical02.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sd/res/layout_vertical02.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/sfx2/res/minus.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sfx2/res/minus.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango/sfx2/res/plus.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango/sfx2/res/plus.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango_testing/cmd/sc_arrowshapes.circular-arrow.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango_testing/cmd/sc_arrowshapes.circular-arrow.png differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/icon-themes/tango_testing/cmd/sc_basicshapes.cross.png and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/icon-themes/tango_testing/cmd/sc_basicshapes.cross.png differ diff -Nru libreoffice-l10n-5.0.2/include/oox/export/drawingml.hxx libreoffice-l10n-5.0.3~rc2/include/oox/export/drawingml.hxx --- libreoffice-l10n-5.0.2/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/include/oox/export/vmlexport.hxx libreoffice-l10n-5.0.3~rc2/include/oox/export/vmlexport.hxx --- libreoffice-l10n-5.0.2/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/include/svl/style.hxx libreoffice-l10n-5.0.3~rc2/include/svl/style.hxx --- libreoffice-l10n-5.0.2/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/include/svtools/DocumentToGraphicRenderer.hxx libreoffice-l10n-5.0.3~rc2/include/svtools/DocumentToGraphicRenderer.hxx --- libreoffice-l10n-5.0.2/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/include/svx/CommonStylePreviewRenderer.hxx libreoffice-l10n-5.0.3~rc2/include/svx/CommonStylePreviewRenderer.hxx --- libreoffice-l10n-5.0.2/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/include/svx/dialogs.hrc libreoffice-l10n-5.0.3~rc2/include/svx/dialogs.hrc --- libreoffice-l10n-5.0.2/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/include/vcl/field.hxx libreoffice-l10n-5.0.3~rc2/include/vcl/field.hxx --- libreoffice-l10n-5.0.2/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/include/vcl/opengl/OpenGLContext.hxx libreoffice-l10n-5.0.3~rc2/include/vcl/opengl/OpenGLContext.hxx --- libreoffice-l10n-5.0.2/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/include/xmloff/PageMasterStyleMap.hxx libreoffice-l10n-5.0.3~rc2/include/xmloff/PageMasterStyleMap.hxx --- libreoffice-l10n-5.0.2/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/instsetoo_native/CustomTarget_setup.mk libreoffice-l10n-5.0.3~rc2/instsetoo_native/CustomTarget_setup.mk --- libreoffice-l10n-5.0.2/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/instsetoo_native/util/openoffice.lst.in libreoffice-l10n-5.0.3~rc2/instsetoo_native/util/openoffice.lst.in --- libreoffice-l10n-5.0.2/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/l10ntools/source/xmlparse.cxx libreoffice-l10n-5.0.3~rc2/l10ntools/source/xmlparse.cxx --- libreoffice-l10n-5.0.2/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/oox/source/docprop/ooxmldocpropimport.cxx libreoffice-l10n-5.0.3~rc2/oox/source/docprop/ooxmldocpropimport.cxx --- libreoffice-l10n-5.0.2/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/oox/source/export/drawingml.cxx libreoffice-l10n-5.0.3~rc2/oox/source/export/drawingml.cxx --- libreoffice-l10n-5.0.2/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/oox/source/export/vmlexport.cxx libreoffice-l10n-5.0.3~rc2/oox/source/export/vmlexport.cxx --- libreoffice-l10n-5.0.2/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/package/inc/ZipOutputEntry.hxx libreoffice-l10n-5.0.3~rc2/package/inc/ZipOutputEntry.hxx --- libreoffice-l10n-5.0.2/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/package/source/zipapi/ZipOutputEntry.cxx libreoffice-l10n-5.0.3~rc2/package/source/zipapi/ZipOutputEntry.cxx --- libreoffice-l10n-5.0.2/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/package/source/zipapi/ZipOutputStream.cxx libreoffice-l10n-5.0.3~rc2/package/source/zipapi/ZipOutputStream.cxx --- libreoffice-l10n-5.0.2/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/package/source/zippackage/ZipPackageStream.cxx libreoffice-l10n-5.0.3~rc2/package/source/zippackage/ZipPackageStream.cxx --- libreoffice-l10n-5.0.2/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/readlicense_oo/license/CREDITS.fodt libreoffice-l10n-5.0.3~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-l10n-5.0.2/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) - (2849) + (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/sal/osl/unx/file_misc.cxx libreoffice-l10n-5.0.3~rc2/sal/osl/unx/file_misc.cxx --- libreoffice-l10n-5.0.2/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/sc/inc/autoform.hxx libreoffice-l10n-5.0.3~rc2/sc/inc/autoform.hxx --- libreoffice-l10n-5.0.2/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/sc/inc/externalrefmgr.hxx libreoffice-l10n-5.0.3~rc2/sc/inc/externalrefmgr.hxx --- libreoffice-l10n-5.0.2/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/sc/qa/extras/macros-test.cxx libreoffice-l10n-5.0.3~rc2/sc/qa/extras/macros-test.cxx --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/extras/testdocuments/testTypePassword.ods and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/extras/testdocuments/testTypePassword.ods differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-1.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-1.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-2.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-2.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-3.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-3.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-4.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-4.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-5.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-5.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-6.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-6.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/pass/crash-7.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/pass/crash-7.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xls/systematic.xls and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xls/systematic.xls differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sc/qa/unit/data/xlsx/matrix-multiplication.xlsx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sc/qa/unit/data/xlsx/matrix-multiplication.xlsx differ diff -Nru libreoffice-l10n-5.0.2/sc/qa/unit/opencl-test.cxx libreoffice-l10n-5.0.3~rc2/sc/qa/unit/opencl-test.cxx --- libreoffice-l10n-5.0.2/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/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/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/sc/source/core/data/document.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/data/document.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/data/formulacell.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/data/formulacell.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/data/postit.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/data/postit.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/inc/interpre.hxx libreoffice-l10n-5.0.3~rc2/sc/source/core/inc/interpre.hxx --- libreoffice-l10n-5.0.2/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/sc/source/core/opencl/formulagroupcl.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/opencl/formulagroupcl.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/address.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/address.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/autoform.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/autoform.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/compiler.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/compiler.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/interpr1.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr1.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/interpr2.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr2.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/interpr3.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr3.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/interpr5.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr5.cxx --- libreoffice-l10n-5.0.2/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/sc/source/core/tool/interpr6.cxx libreoffice-l10n-5.0.3~rc2/sc/source/core/tool/interpr6.cxx --- libreoffice-l10n-5.0.2/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/sc/source/filter/excel/impop.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/impop.cxx --- libreoffice-l10n-5.0.2/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/sc/source/filter/excel/xetable.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xetable.cxx --- libreoffice-l10n-5.0.2/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/sc/source/filter/excel/xicontent.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xicontent.cxx --- libreoffice-l10n-5.0.2/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/sc/source/filter/excel/xilink.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xilink.cxx --- libreoffice-l10n-5.0.2/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/sc/source/filter/excel/xipivot.cxx libreoffice-l10n-5.0.3~rc2/sc/source/filter/excel/xipivot.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/condformat/colorformat.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/condformat/colorformat.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/docshell/externalrefmgr.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/docshell/externalrefmgr.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/inc/colorformat.hxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/inc/colorformat.hxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/optdlg/calcoptionsdlg.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/optdlg/calcoptionsdlg.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/optdlg/calcoptionsdlg.hxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/optdlg/calcoptionsdlg.hxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/vba/vbaeventshelper.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/vba/vbaeventshelper.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/view/cellsh2.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/cellsh2.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/view/output2.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/output2.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/view/tabcont.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/tabcont.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/view/tabview3.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/tabview3.cxx --- libreoffice-l10n-5.0.2/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/sc/source/ui/view/viewfun4.cxx libreoffice-l10n-5.0.3~rc2/sc/source/ui/view/viewfun4.cxx --- libreoffice-l10n-5.0.2/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/sc/uiconfig/scalc/ui/databaroptions.ui libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/databaroptions.ui --- libreoffice-l10n-5.0.2/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/sc/uiconfig/scalc/ui/optcalculatepage.ui libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/optcalculatepage.ui --- libreoffice-l10n-5.0.2/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/sc/uiconfig/scalc/ui/protectsheetdlg.ui libreoffice-l10n-5.0.3~rc2/sc/uiconfig/scalc/ui/protectsheetdlg.ui --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sd/qa/unit/data/odp/bulletCharAndFont.odp and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/odp/bulletCharAndFont.odp differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sd/qa/unit/data/ppt/pass/hang-22.ppt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/ppt/pass/hang-22.ppt differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sd/qa/unit/data/pptx/hyperlinktest.pptx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/pptx/hyperlinktest.pptx differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sd/qa/unit/data/pptx/tdf93097.pptx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sd/qa/unit/data/pptx/tdf93097.pptx differ diff -Nru libreoffice-l10n-5.0.2/sd/qa/unit/export-tests.cxx libreoffice-l10n-5.0.3~rc2/sd/qa/unit/export-tests.cxx --- libreoffice-l10n-5.0.2/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/sd/qa/unit/import-tests.cxx libreoffice-l10n-5.0.3~rc2/sd/qa/unit/import-tests.cxx --- libreoffice-l10n-5.0.2/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/sd/source/core/stlsheet.cxx libreoffice-l10n-5.0.3~rc2/sd/source/core/stlsheet.cxx --- libreoffice-l10n-5.0.2/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/sd/source/filter/ppt/pptin.cxx libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/pptin.cxx --- libreoffice-l10n-5.0.2/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/sd/source/filter/ppt/propread.cxx libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/propread.cxx --- libreoffice-l10n-5.0.2/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/sd/source/filter/ppt/propread.hxx libreoffice-l10n-5.0.3~rc2/sd/source/filter/ppt/propread.hxx --- libreoffice-l10n-5.0.2/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/sd/source/ui/func/fusldlg.cxx libreoffice-l10n-5.0.3~rc2/sd/source/ui/func/fusldlg.cxx --- libreoffice-l10n-5.0.2/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/sfx2/uiconfig/ui/newstyle.ui libreoffice-l10n-5.0.3~rc2/sfx2/uiconfig/ui/newstyle.ui --- libreoffice-l10n-5.0.2/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/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/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/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/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/src/451ccf439a36a568653b024534669971-ConvertTextToNumber-1.3.2.oxt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/src/451ccf439a36a568653b024534669971-ConvertTextToNumber-1.3.2.oxt differ diff -Nru libreoffice-l10n-5.0.2/src/fetch.log libreoffice-l10n-5.0.3~rc2/src/fetch.log --- libreoffice-l10n-5.0.2/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/svl/source/items/style.cxx libreoffice-l10n-5.0.3~rc2/svl/source/items/style.cxx --- libreoffice-l10n-5.0.2/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/svl/source/numbers/zformat.cxx libreoffice-l10n-5.0.3~rc2/svl/source/numbers/zformat.cxx --- libreoffice-l10n-5.0.2/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/svtools/source/filter/DocumentToGraphicRenderer.cxx libreoffice-l10n-5.0.3~rc2/svtools/source/filter/DocumentToGraphicRenderer.cxx --- libreoffice-l10n-5.0.2/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/svx/source/fmcomp/gridcell.cxx libreoffice-l10n-5.0.3~rc2/svx/source/fmcomp/gridcell.cxx --- libreoffice-l10n-5.0.2/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/svx/source/stbctrls/stbctrls.src libreoffice-l10n-5.0.3~rc2/svx/source/stbctrls/stbctrls.src --- libreoffice-l10n-5.0.2/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/svx/source/stbctrls/zoomsliderctrl.cxx libreoffice-l10n-5.0.3~rc2/svx/source/stbctrls/zoomsliderctrl.cxx --- libreoffice-l10n-5.0.2/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/svx/source/styles/CommonStylePreviewRenderer.cxx libreoffice-l10n-5.0.3~rc2/svx/source/styles/CommonStylePreviewRenderer.cxx --- libreoffice-l10n-5.0.2/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/svx/source/tbxctrls/itemwin.cxx libreoffice-l10n-5.0.3~rc2/svx/source/tbxctrls/itemwin.cxx --- libreoffice-l10n-5.0.2/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/svx/source/tbxctrls/tbcontrl.cxx libreoffice-l10n-5.0.3~rc2/svx/source/tbxctrls/tbcontrl.cxx --- libreoffice-l10n-5.0.2/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/sw/inc/docstyle.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/docstyle.hxx --- libreoffice-l10n-5.0.2/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/sw/inc/IDocumentContentOperations.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/IDocumentContentOperations.hxx --- libreoffice-l10n-5.0.2/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/sw/inc/IDocumentStatistics.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/IDocumentStatistics.hxx --- libreoffice-l10n-5.0.2/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/sw/inc/ndtxt.hxx libreoffice-l10n-5.0.3~rc2/sw/inc/ndtxt.hxx --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/core/data/ww8/pass/hang-9.doc and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/core/data/ww8/pass/hang-9.doc differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/htmlexport/data/tdf90905.odt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/htmlexport/data/tdf90905.odt differ diff -Nru libreoffice-l10n-5.0.2/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-l10n-5.0.2/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/sw/qa/extras/odfexport/odfexport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/odfimport/data/tdf92586.odt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfimport/data/tdf92586.odt differ diff -Nru libreoffice-l10n-5.0.2/sw/qa/extras/odfimport/odfimport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/odfimport/odfimport.cxx --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlexport/data/tdf83227.docx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/data/tdf83227.docx differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlexport/data/tdf92521.odt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/data/tdf92521.odt differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlexport/data/tdf93676-1.odt and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/data/tdf93676-1.odt differ diff -Nru libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx --- libreoffice-l10n-5.0.2/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/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx --- libreoffice-l10n-5.0.2/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlimport/data/tdf92124.docx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/data/tdf92124.docx differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlimport/data/tdf92454.docx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/data/tdf92454.docx differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlimport/data/tdf93919.docx and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/data/tdf93919.docx differ diff -Nru libreoffice-l10n-5.0.2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx --- libreoffice-l10n-5.0.2/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/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/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/sw/qa/extras/uiwriter/uiwriter.cxx libreoffice-l10n-5.0.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/crsr/crossrefbookmark.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/crsr/crossrefbookmark.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/docbm.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/docbm.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/doc.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/doc.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/docnew.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/docnew.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/DocumentContentOperationsManager.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/DocumentContentOperationsManager.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/DocumentStatisticsManager.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/DocumentStatisticsManager.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/extinput.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/extinput.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/doc/tblrwcl.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/doc/tblrwcl.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/inc/DocumentContentOperationsManager.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/DocumentContentOperationsManager.hxx --- libreoffice-l10n-5.0.2/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/sw/source/core/inc/DocumentStatisticsManager.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/DocumentStatisticsManager.hxx --- libreoffice-l10n-5.0.2/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/sw/source/core/inc/MarkManager.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/MarkManager.hxx --- libreoffice-l10n-5.0.2/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/sw/source/core/inc/wrong.hxx libreoffice-l10n-5.0.3~rc2/sw/source/core/inc/wrong.hxx --- libreoffice-l10n-5.0.2/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/sw/source/core/layout/layact.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/layout/layact.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/layout/trvlfrm.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/layout/trvlfrm.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/text/frmform.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/frmform.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/text/itrcrsr.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/itrcrsr.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/text/itrpaint.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/itrpaint.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/text/txtfrm.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/txtfrm.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/text/wrong.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/text/wrong.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/txtnode/ndtxt.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/txtnode/ndtxt.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/txtnode/txtedt.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/txtnode/txtedt.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/unocore/unoflatpara.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/unocore/unoflatpara.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/unocore/unoobj.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/unocore/unoobj.cxx --- libreoffice-l10n-5.0.2/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/sw/source/core/view/viewsh.cxx libreoffice-l10n-5.0.3~rc2/sw/source/core/view/viewsh.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/html/htmlplug.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/html/htmlplug.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/html/wrthtml.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/html/wrthtml.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/attributeoutputbase.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/attributeoutputbase.hxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/docxattributeoutput.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxattributeoutput.hxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/docxexport.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxexport.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/docxsdrexport.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/docxsdrexport.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/rtfattributeoutput.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/rtfattributeoutput.cxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/rtfattributeoutput.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/rtfattributeoutput.hxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/ww8attributeoutput.hxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/ww8attributeoutput.hxx --- libreoffice-l10n-5.0.2/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/sw/source/filter/ww8/ww8scan.cxx libreoffice-l10n-5.0.3~rc2/sw/source/filter/ww8/ww8scan.cxx --- libreoffice-l10n-5.0.2/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/sw/source/ui/frmdlg/cption.cxx libreoffice-l10n-5.0.3~rc2/sw/source/ui/frmdlg/cption.cxx --- libreoffice-l10n-5.0.2/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/sw/source/ui/index/swuiidxmrk.cxx libreoffice-l10n-5.0.3~rc2/sw/source/ui/index/swuiidxmrk.cxx --- libreoffice-l10n-5.0.2/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/sw/source/uibase/app/docsh2.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/app/docsh2.cxx --- libreoffice-l10n-5.0.2/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/sw/source/uibase/app/docstyle.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/app/docstyle.cxx --- libreoffice-l10n-5.0.2/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/sw/source/uibase/dbui/dbmgr.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/dbui/dbmgr.cxx --- libreoffice-l10n-5.0.2/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/sw/source/uibase/inc/FrameControl.hxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/inc/FrameControl.hxx --- libreoffice-l10n-5.0.2/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/sw/source/uibase/utlui/navipi.cxx libreoffice-l10n-5.0.3~rc2/sw/source/uibase/utlui/navipi.cxx --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/as/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/as/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/br/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/br/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/translations/source/brx/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/brx/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/dgo/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/dgo/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/eu/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/eu/starmath/source.po --- libreoffice-l10n-5.0.2/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/translations/source/fa/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/fa/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/gu/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/gu/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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" #. fi (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" #. fl (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" #. ffi (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" #. ffl (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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/gug/uui/source.po libreoffice-l10n-5.0.3~rc2/translations/source/gug/uui/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/hi/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/hi/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/translations/source/id/svx/inc.po libreoffice-l10n-5.0.3~rc2/translations/source/id/svx/inc.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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" #. ff (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" #. fi (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" #. fl (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" #. ffi (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" #. ffl (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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/is/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/is/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/ka/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ka/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/kok/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/kok/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/translations/source/ks/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ks/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/translations/source/lo/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/lo/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/translations/source/mai/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/mai/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/translations/source/ml/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ml/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/translations/source/mn/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/mn/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/translations/source/mni/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/mni/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/nb/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/translations/source/nb/svx/inc.po libreoffice-l10n-5.0.3~rc2/translations/source/nb/svx/inc.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/ne/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ne/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/nr/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/nr/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/translations/source/nso/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/nso/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/oc/uui/source.po libreoffice-l10n-5.0.3~rc2/translations/source/oc/uui/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/translations/source/or/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/or/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/ro/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ro/starmath/source.po --- libreoffice-l10n-5.0.2/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/translations/source/rw/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/rw/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/translations/source/sat/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/sat/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/translations/source/sd/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/sd/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/translations/source/si/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/si/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/ss/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ss/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/translations/source/st/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/st/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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" #. ff (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" #. fi (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" #. fl (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" #. ffi (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" #. ffl (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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/ta/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ta/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/translations/source/te/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/te/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/tn/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/tn/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/translations/source/ts/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ts/starmath/source.po --- libreoffice-l10n-5.0.2/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/translations/source/ug/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/ug/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/translations/source/uz/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/uz/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/translations/source/vi/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/vi/starmath/source.po --- libreoffice-l10n-5.0.2/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/translations/source/xh/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/xh/starmath/source.po --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/translations/source/zu/starmath/source.po libreoffice-l10n-5.0.3~rc2/translations/source/zu/starmath/source.po --- libreoffice-l10n-5.0.2/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/vcl/generic/glyphs/gcach_layout.cxx libreoffice-l10n-5.0.3~rc2/vcl/generic/glyphs/gcach_layout.cxx --- libreoffice-l10n-5.0.2/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/vcl/inc/generic/glyphcache.hxx libreoffice-l10n-5.0.3~rc2/vcl/inc/generic/glyphcache.hxx --- libreoffice-l10n-5.0.2/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/vcl/inc/image.h libreoffice-l10n-5.0.3~rc2/vcl/inc/image.h --- libreoffice-l10n-5.0.2/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/vcl/inc/opengl/salbmp.hxx libreoffice-l10n-5.0.3~rc2/vcl/inc/opengl/salbmp.hxx --- libreoffice-l10n-5.0.2/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/vcl/opengl/FixedTextureAtlas.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/FixedTextureAtlas.cxx --- libreoffice-l10n-5.0.2/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/vcl/opengl/framebuffer.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/framebuffer.cxx --- libreoffice-l10n-5.0.2/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/vcl/opengl/salbmp.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/salbmp.cxx --- libreoffice-l10n-5.0.2/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/vcl/opengl/scale.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/scale.cxx --- libreoffice-l10n-5.0.2/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/vcl/opengl/win/WinDeviceInfo.cxx libreoffice-l10n-5.0.3~rc2/vcl/opengl/win/WinDeviceInfo.cxx --- libreoffice-l10n-5.0.2/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/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/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/eVwIrpjZ_5/libreoffice-l10n-5.0.2/vcl/qa/cppunit/graphicfilter/data/jpg/fail/crash-1.jpg and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/graphicfilter/data/jpg/fail/crash-1.jpg differ Binary files /tmp/eVwIrpjZ_5/libreoffice-l10n-5.0.2/vcl/qa/cppunit/graphicfilter/data/wmf/fail/bitcount-1.wmf and /tmp/PDwqTHuAfy/libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/graphicfilter/data/wmf/fail/bitcount-1.wmf differ diff -Nru libreoffice-l10n-5.0.2/vcl/qa/cppunit/lifecycle.cxx libreoffice-l10n-5.0.3~rc2/vcl/qa/cppunit/lifecycle.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/control/field2.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/control/field2.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/control/field.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/control/field.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/control/lstbox.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/control/lstbox.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/filter/jpeg/jpegc.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/filter/jpeg/jpegc.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/gdi/dibtools.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/dibtools.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/gdi/impimage.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/impimage.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/gdi/sallayout.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/sallayout.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/gdi/virdev.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/gdi/virdev.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/opengl/OpenGLContext.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/opengl/OpenGLContext.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/opengl/OpenGLHelper.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/opengl/OpenGLHelper.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/outdev/font.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/outdev/font.cxx --- libreoffice-l10n-5.0.2/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/vcl/source/outdev/transparent.cxx libreoffice-l10n-5.0.3~rc2/vcl/source/outdev/transparent.cxx --- libreoffice-l10n-5.0.2/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/vcl/unx/generic/app/saldisp.cxx libreoffice-l10n-5.0.3~rc2/vcl/unx/generic/app/saldisp.cxx --- libreoffice-l10n-5.0.2/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/vcl/unx/generic/gdi/cairotextrender.cxx libreoffice-l10n-5.0.3~rc2/vcl/unx/generic/gdi/cairotextrender.cxx --- libreoffice-l10n-5.0.2/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/vcl/unx/gtk3/app/gtk3gtkinst.cxx libreoffice-l10n-5.0.3~rc2/vcl/unx/gtk3/app/gtk3gtkinst.cxx --- libreoffice-l10n-5.0.2/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/vcl/win/source/gdi/winlayout.cxx libreoffice-l10n-5.0.3~rc2/vcl/win/source/gdi/winlayout.cxx --- libreoffice-l10n-5.0.2/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/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/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/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/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/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/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/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/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/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/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/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/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/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-l10n-5.0.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-l10n-5.0.2/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/writerfilter/source/dmapper/NumberingManager.cxx libreoffice-l10n-5.0.3~rc2/writerfilter/source/dmapper/NumberingManager.cxx --- libreoffice-l10n-5.0.2/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/xmloff/inc/XMLBackgroundImageContext.hxx libreoffice-l10n-5.0.3~rc2/xmloff/inc/XMLBackgroundImageContext.hxx --- libreoffice-l10n-5.0.2/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/xmloff/source/style/PageMasterStyleMap.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/style/PageMasterStyleMap.cxx --- libreoffice-l10n-5.0.2/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/xmloff/source/style/PagePropertySetContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/style/PagePropertySetContext.cxx --- libreoffice-l10n-5.0.2/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/xmloff/source/style/XMLBackgroundImageContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/style/XMLBackgroundImageContext.cxx --- libreoffice-l10n-5.0.2/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/xmloff/source/text/XMLTextPropertySetContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/text/XMLTextPropertySetContext.cxx --- libreoffice-l10n-5.0.2/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/xmloff/source/text/XMLTextShapeStyleContext.cxx libreoffice-l10n-5.0.3~rc2/xmloff/source/text/XMLTextShapeStyleContext.cxx --- libreoffice-l10n-5.0.2/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; }